diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0e8c3eb --- /dev/null +++ b/.gitignore @@ -0,0 +1,60 @@ +*.xlsx +.idea/ +**/.idea/ +# === Python 缓存 === +__pycache__/ +*.py[cod] +*$py.class + +# === 环境变量文件 === +.env +.env.* + +# === 虚拟环境目录 === +venv/ +.venv/ +env/ +ENV/ +env.bak/ +venv.bak/ + +# === 安装构建缓存 === +*.egg +*.egg-info/ +.eggs/ +dist/ +build/ +pip-log.txt + +# === 测试相关缓存文件 === +.coverage +.tox/ +nosetests.xml +coverage.xml +*.cover +*.py,cover + +# === 数据库相关 === +*.sqlite3 +db.sqlite3 + +# === 日志文件 === +*.log +logs/ +**/logs/ + +# === 静态与媒体文件(Django) === +media/ +static/ +staticfiles/ + +# === IDE 配置 === +.idea/* # PyCharm +*.iml +*.ipr +*.iws +.vscode/ # VS Code + +# === 系统自动生成文件 === +.DS_Store # macOS +Thumbs.db # Windows diff --git a/APP/AdditionalResources/frida-16.2.3-cp37-abi3-freebsd_13_2_release_amd64.whl b/APP/AdditionalResources/frida-16.2.3-cp37-abi3-freebsd_13_2_release_amd64.whl new file mode 100644 index 0000000..67ba273 Binary files /dev/null and b/APP/AdditionalResources/frida-16.2.3-cp37-abi3-freebsd_13_2_release_amd64.whl differ diff --git a/APP/frida_attach.py b/APP/frida_attach.py new file mode 100644 index 0000000..44c4dd5 --- /dev/null +++ b/APP/frida_attach.py @@ -0,0 +1,37 @@ +# frida_attach.py +import frida + +APP_PACKAGE_NAME = "com.huoketuoke.www" + +# 连接设备 +device = frida.get_usb_device() + +# 查找 PID +pid = None +for app in device.enumerate_processes(): + if app.name == APP_PACKAGE_NAME: + pid = app.pid + break + +if pid is None: + raise RuntimeError(f"[-] 找不到运行中的 {APP_PACKAGE_NAME}") + +print(f"[+] 找到进程 {APP_PACKAGE_NAME},PID: {pid}") + +# 附加进程 +session = device.attach(pid) + +# 注入 JS 脚本 +script = session.create_script(""" +console.log("Frida 注入成功 - attach 模式"); +""") + +# 可选:处理 JS 消息 +def on_message(message, data): + print("[*] JS 消息:", message) + +script.on("message", on_message) +script.load() + +input("[*] 按 Enter 键退出...") +session.detach() diff --git a/APP/frida_spawn.py b/APP/frida_spawn.py new file mode 100644 index 0000000..5928973 --- /dev/null +++ b/APP/frida_spawn.py @@ -0,0 +1,31 @@ +import frida + +APP_PACKAGE_NAME = "com.huoketuoke.www" + +device = frida.get_usb_device() + +# 冷启动 app,处于挂起状态 +pid = device.spawn([APP_PACKAGE_NAME]) +print(f"[+] Spawned {APP_PACKAGE_NAME} with PID {pid}") + +# 附加到挂起进程 +session = device.attach(pid) + +# JS 脚本内容,可替换为从文件读取 +script = session.create_script(""" +console.log("Frida 注入成功 - spawn 模式"); +""") + +# 可选:监听 JS 中的 send 消息 +def on_message(message, data): + print("[*] JS 消息:", message) + +script.on("message", on_message) +script.load() + +# 恢复 app 执行 +device.resume(pid) +print("[+] App resumed. You can now interact with it.") + +input("[*] 按 Enter 键退出...") +session.detach() diff --git a/APP/hookjs/dexclass.js b/APP/hookjs/dexclass.js new file mode 100644 index 0000000..5a4f482 --- /dev/null +++ b/APP/hookjs/dexclass.js @@ -0,0 +1,15 @@ +Java.perform(function() { + console.log("[*] 正在hook DexClassLoader"); + + var DexClassLoader = Java.use("dalvik.system.DexClassLoader"); + DexClassLoader.loadClass.overload('java.lang.String').implementation = function(name) { + console.log("[+] DexClassLoader.loadClass: " + name); + return this.loadClass(name); + }; + + var PathClassLoader = Java.use("dalvik.system.PathClassLoader"); + PathClassLoader.loadClass.overload('java.lang.String', 'boolean').implementation = function(name, resolve) { + console.log("[+] PathClassLoader.loadClass: " + name); + return this.loadClass(name, resolve); + }; +}); diff --git a/APP/hookjs/ssl_hook.js b/APP/hookjs/ssl_hook.js new file mode 100644 index 0000000..7001dc8 --- /dev/null +++ b/APP/hookjs/ssl_hook.js @@ -0,0 +1,46 @@ +// Java层 SSL Pinning绕过 +Java.perform(function () { + console.log("[+] Start SSL Pinning Bypass (Java layer)"); + + var TrustManagerImpl = Java.use("com.android.org.conscrypt.TrustManagerImpl"); + TrustManagerImpl.verifyChain.implementation = function (chain, authType, host, clientAuth, ocspData, tlsSctData) { + console.log("[+] TrustManagerImpl.verifyChain bypassed for host: " + host); + return chain; + }; + + try { + var CertificatePinner = Java.use("okhttp3.CertificatePinner"); + CertificatePinner.check.overload("java.lang.String", "java.util.List").implementation = function (str, list) { + console.log("[+] OkHttp3 CertificatePinner.check() bypassed for: " + str); + return; + }; + } catch (e) { + console.log("[-] OkHttp3 not found."); + } +}); + +// Native层 libssl.so绕过 +setImmediate(function() { + var libssl = Process.findModuleByName("libssl.so"); + if (libssl) { + console.log("[*] libssl.so base address: " + libssl.base); + + var SSL_get_verify_result = libssl.findExportByName("SSL_get_verify_result"); + if (SSL_get_verify_result) { + Interceptor.replace(SSL_get_verify_result, new NativeCallback(function (ssl) { + console.log("[+] SSL_get_verify_result() bypassed"); + return 0; + }, 'int', ['pointer'])); + } + + var SSL_CTX_set_custom_verify = libssl.findExportByName("SSL_CTX_set_custom_verify"); + if (SSL_CTX_set_custom_verify) { + Interceptor.attach(SSL_CTX_set_custom_verify, { + onEnter: function (args) { + console.log("[+] SSL_CTX_set_custom_verify() called - force mode to 0"); + args[1] = ptr('0'); + } + }); + } + } +}); diff --git a/APP/main.py b/APP/main.py new file mode 100644 index 0000000..048f724 --- /dev/null +++ b/APP/main.py @@ -0,0 +1,63 @@ +import frida +import time +import sys + +# 保证输出UTF-8编码 +sys.stdout.reconfigure(encoding='utf-8') +sys.stderr.reconfigure(encoding='utf-8') + +APP_PACKAGE_NAME = "com.lmhl.yituoke" +SCRIPT_FILE = "./hookjs/dexclass.js" + +def on_message(message, data): + if message['type'] == 'send': + print(f"[消息] {message['payload']}") + elif message['type'] == 'error': + print(f"[错误] {message['stack']}") + +def main(): + try: + # 连接设备 + device = frida.get_usb_device(timeout=5) + print(f"[连接成功] 已连接到设备:{device.name}") + + # 启动应用(spawn) + print(f"[启动应用] 准备启动应用:{APP_PACKAGE_NAME}") + pid = device.spawn([APP_PACKAGE_NAME]) + + # 附加到新进程 + session = device.attach(pid) + print(f"[附加成功] 已附加到应用,PID: {pid}") + + # 加载脚本 + with open(SCRIPT_FILE, encoding="utf-8") as f: # 保证读取脚本不会出编码问题 + script = session.create_script(f.read()) + + script.on('message', on_message) + script.load() + print(f"[脚本加载成功] {SCRIPT_FILE} 脚本已成功加载!") + + # 恢复应用运行 + device.resume(pid) + print(f"[应用恢复] 应用已恢复运行,可以开始操作了。") + + # 保持运行状态 + print("[保持运行] 按 Ctrl+C 退出...") + while True: + time.sleep(1) + + except KeyboardInterrupt: + print("\n[退出] 正在断开连接...") + try: + session.detach() + except: + pass + sys.exit(0) + + except Exception as e: + import traceback + print(f"[出现异常] {e}") + traceback.print_exc() + +if __name__ == '__main__': + main() diff --git a/MiniApp/鲜平鲜食/main.py b/MiniApp/鲜平鲜食/main.py new file mode 100644 index 0000000..d6b4d04 --- /dev/null +++ b/MiniApp/鲜平鲜食/main.py @@ -0,0 +1,25 @@ +import requests + + +headers = { + "Host": "www.parfresh.com", + "authToken": "", + "Accept": "application/json", + "xweb_xhr": "1", + "uuid": "b303ba60-6323-4a65-9e12-f067ba723dea", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36 MicroMessenger/7.0.20.1781(0x6700143B) NetType/WIFI MiniProgramEnv/Windows WindowsWechat/WMPF WindowsWechat(0x63090c11)XWEB/11275", + "Content-Type": "application/json", + "Sec-Fetch-Site": "cross-site", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Dest": "empty", + "Referer": "https://servicewechat.com/wx2b90b97b6821b332/19/page-frame.html", + "Accept-Language": "zh-CN,zh;q=0.9" +} +url = "https://www.parfresh.com/api/goods/goodsInfo" +params = { + "goods_id": "5774" +} +response = requests.get(url, headers=headers, params=params) + +print(response.text) +print(response) \ No newline at end of file diff --git a/PDF/main.py b/PDF/main.py new file mode 100644 index 0000000..cd1a506 --- /dev/null +++ b/PDF/main.py @@ -0,0 +1,26 @@ +import os +from PyPDF2 import PdfReader, PdfWriter + +# 指定 PDF 文件路径 +input_pdf_path = r"C:\Users\Franklin_Kali\Desktop\保险保单.pdf" +output_pdf_path = r"C:\Users\Franklin_Kali\Desktop\四平保单_无签名.pdf" + +# 确保文件存在 +if not os.path.exists(input_pdf_path): + raise FileNotFoundError(f"文件未找到: {input_pdf_path}") + +# 读取 PDF 文件 +reader = PdfReader(input_pdf_path) +writer = PdfWriter() + +# 遍历所有页面并移除签名注释 +for page in reader.pages: + if "/Annots" in page: # 如果页面有注释 + del page["/Annots"] # 移除所有注释(包括电子签名) + writer.add_page(page) + +# 写入新的 PDF 文件 +with open(output_pdf_path, "wb") as output_pdf: + writer.write(output_pdf) + +print(f"处理完成,新文件已保存: {output_pdf_path}") \ No newline at end of file diff --git a/web/96rz_com/96rz_com.zip b/web/96rz_com/96rz_com.zip new file mode 100644 index 0000000..f75b394 Binary files /dev/null and b/web/96rz_com/96rz_com.zip differ diff --git a/web/96rz_com/Requests_Except.py b/web/96rz_com/Requests_Except.py new file mode 100644 index 0000000..5f55db8 --- /dev/null +++ b/web/96rz_com/Requests_Except.py @@ -0,0 +1,208 @@ +import json +import re +import requests +import logging +import time +from lxml import etree +from types import SimpleNamespace +from http.cookies import SimpleCookie + +logging.basicConfig(level=logging.DEBUG, format='%(asctime)s - %(levelname)s - %(message)s') + + +class ExtendedResponse(requests.Response): + def xpath(self): + try: + tree = etree.HTML(self.text) + return tree + except Exception as e: + raise ValueError("XPath解析错误: " + str(e)) + + def to_Dict(self): + try: + data = self.json() + return self.dict_to_obj(data) + except Exception as e: + raise ValueError("JSON转换错误: " + str(e)) + + def to_Re_findall(self, regex): + try: + data = self.text + return re.findall(regex, data) + except Exception as e: + raise ValueError("Re搜索错误: " + str(e)) + + def cookies_dict(self): + try: + # 获取原有的 cookies 字典 + cookie_dict = self.cookies.get_dict() + # 如果响应头中有 Set-Cookie,则解析并补充 cookies + if 'Set-Cookie' in self.headers: + from http.cookies import SimpleCookie + sc = SimpleCookie() + sc.load(self.headers['Set-Cookie']) + for key, morsel in sc.items(): + cookie_dict[key] = morsel.value + return cookie_dict + except Exception as e: + raise ValueError("Cookies转换错误: " + str(e)) + + def save_cookies(self, filepath, format='json'): + """ + 将当前响应中的cookie信息保存到指定文件中。 + + 参数: + filepath (str): 保存文件的路径 + format (str): 保存格式,支持 'json'、'pickle' 和 'txt' 三种格式,默认为 'json' + """ + try: + cookie_dict = self.cookies_dict() + if format.lower() == 'json': + with open(filepath, 'w', encoding='utf-8') as f: + json.dump(cookie_dict, f, ensure_ascii=False, indent=4) + elif format.lower() == 'pickle': + import pickle + with open(filepath, 'wb') as f: + pickle.dump(cookie_dict, f) + elif format.lower() == 'txt': + with open(filepath, 'w', encoding='utf-8') as f: + for key, value in cookie_dict.items(): + f.write(f"{key}: {value}\n") + else: + raise ValueError("不支持的格式,请选择 'json'、'pickle' 或 'txt'") + except Exception as e: + raise ValueError("保存cookies出错: " + str(e)) + + @staticmethod + def dict_to_obj(d): + if isinstance(d, dict): + return SimpleNamespace(**{k: ExtendedResponse.dict_to_obj(v) for k, v in d.items()}) + elif isinstance(d, list): + return [ExtendedResponse.dict_to_obj(item) for item in d] + else: + return d + + +class MyRequests: + def __init__(self, base_url, protocol='http', retries=3, proxy_options=True, default_timeout=10, + default_cookies=None): + """ + 初始化 MyRequests 对象,自动加载本地 cookies 文件(根据 base_url 生成文件名,如 "www_zhrczp_com_cookies.json")中的 cookies, + 如果文件存在,则将其加载到 session 中;否则使用 default_cookies(如果提供)更新 session。 + + 参数: + base_url (str): 基础 URL + protocol (str): 协议(默认为 'http') + retries (int): 请求重试次数 + proxy_options (bool): 是否使用代理 + default_timeout (int): 默认超时时间 + default_cookies (dict): 默认的 cookies 字典 + """ + self.base_url = base_url.rstrip('/') + self.protocol = protocol + self.retries = retries + self.default_timeout = default_timeout + self.session = requests.Session() + + if proxy_options: + self.session.proxies = {"http": "http://127.0.0.1:7890", "https": "http://127.0.0.1:7890"} + + # 优先使用传入的 default_cookies 更新 session + if default_cookies: + self.session.cookies.update(default_cookies) + + # 根据 base_url 生成 cookies 文件名,将 '.' 替换为 '_' + self.cookie_file = f"{self.base_url.replace('.', '_')}_cookies.json" + # 尝试加载本地已保存的 cookies 文件 + try: + with open(self.cookie_file, 'r', encoding='utf-8') as f: + loaded_cookies = json.load(f) + self.session.cookies.update(loaded_cookies) + logging.info("成功加载本地 cookies") + except FileNotFoundError: + logging.info("本地 cookies 文件不存在,将在请求后自动保存") + except Exception as e: + logging.error("加载本地 cookies 失败:" + str(e)) + + def _save_cookies(self): + """ + 将当前 session 中的 cookies 保存到本地文件(基于 base_url 的文件名),以 JSON 格式存储。 + """ + try: + with open(self.cookie_file, 'w', encoding='utf-8') as f: + json.dump(self.session.cookies.get_dict(), f, ensure_ascii=False, indent=4) + logging.info("cookies 已保存到本地文件:" + self.cookie_file) + except Exception as e: + logging.error("保存 cookies 文件失败:" + str(e)) + + def _build_url(self, url): + if url.startswith("http://") or url.startswith("https://"): + return url + return f"{self.protocol}://{self.base_url}/{url.lstrip('/')}" + + def set_default_headers(self, headers): + self.session.headers.update(headers) + + def set_default_cookies(self, cookies): + self.session.cookies.update(cookies) + self._save_cookies() + + def get(self, url, params=None, headers=None, cookies=None, **kwargs): + full_url = self._build_url(url) + return self._request("GET", full_url, params=params, headers=headers, cookies=cookies, **kwargs) + + def post(self, url, data=None, json=None, headers=None, cookies=None, **kwargs): + full_url = self._build_url(url) + return self._request("POST", full_url, data=data, json=json, headers=headers, cookies=cookies, **kwargs) + + def update(self, url, data=None, json=None, headers=None, cookies=None, **kwargs): + full_url = self._build_url(url) + return self._request("PUT", full_url, data=data, json=json, headers=headers, cookies=cookies, **kwargs) + + def delete(self, url, params=None, headers=None, cookies=None, **kwargs): + full_url = self._build_url(url) + return self._request("DELETE", full_url, params=params, headers=headers, cookies=cookies, **kwargs) + + def _request(self, method, url, retries=None, autosave=False, **kwargs): + if retries is None: + retries = self.retries + if 'timeout' not in kwargs: + kwargs['timeout'] = self.default_timeout + + try: + response = self.session.request(method, url, **kwargs) + response.raise_for_status() + self.session.cookies.update(response.cookies) + + if 'Set-Cookie' in response.headers: + from http.cookies import SimpleCookie + sc = SimpleCookie() + sc.load(response.headers['Set-Cookie']) + for key, morsel in sc.items(): + if morsel.value.lower() != 'deleted': + self.session.cookies.set(key, morsel.value) + + if autosave: + self._save_cookies() + + response.__class__ = ExtendedResponse + return response + + except Exception as e: + if retries > 0: + logging.warning(f"请求 {method} {url} 失败,剩余重试次数 {retries},错误: {e}") + time.sleep(2 ** (self.retries - retries)) + return self._request(method, url, retries=retries - 1, autosave=autosave, **kwargs) + else: + logging.error(f"请求 {method} {url} 重试次数用尽") + raise e + + def get_cookies(self): + try: + return self.session.cookies.get_dict() + except Exception as e: + raise ValueError("获取 cookies 失败:" + str(e)) + + +class MR(MyRequests): + pass diff --git a/web/96rz_com/main.py b/web/96rz_com/main.py new file mode 100644 index 0000000..754e0be --- /dev/null +++ b/web/96rz_com/main.py @@ -0,0 +1,140 @@ +import datetime + +from Requests_Except import * +import pandas as pd + +base_url = 'www.96rz.com' +protocol = 'https' +headers = { + "accept": "application/json, text/plain, */*", + "accept-language": "zh-CN,zh;q=0.9,en;q=0.8", + "authorization": "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MTI4MTMwLCJ1c2VybmFtZSI6IueUhOePjV8xNTgyMzMiLCJwd2QiOiJiNGUzZDQyODUwMTA3YzRkMzBlNmRkYjU4N2IzZTM3ZCIsImlhdCI6MTc1MTI2NzY5MiwiZXhwIjoxNzgyODAzNjkyfQ.Q_u73JFMxjZESQC9yUAwb7V7La5bM9OT37iGl3UO_cY", + "cache-control": "no-cache", + "pragma": "no-cache", + "priority": "u=1, i", + "referer": "https://www.96rz.com/uc/enterprise/resume-library?tab=resume&keyword=%E6%9C%8D%E5%8A%A1%E5%91%98&t=1751267805224", + "sec-ch-ua": "\"Google Chrome\";v=\"137\", \"Chromium\";v=\"137\", \"Not/A)Brand\";v=\"24\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "sec-fetch-dest": "empty", + "sec-fetch-mode": "cors", + "sec-fetch-site": "same-origin", + "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36", + "x-platform": "1", + "x-site-id": "undefined" +} +cookies = { + "Hm_lvt_0fcb5413ca26ff9fe1a29c6f98b5e6d0": "1751267674", + "HMACCOUNT": "52014CC932A93E9B", + "Hm_lpvt_0fcb5413ca26ff9fe1a29c6f98b5e6d0": "1751267677", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MTI4MTMwLCJ1c2VybmFtZSI6IueUhOePjV8xNTgyMzMiLCJwd2QiOiJiNGUzZDQyODUwMTA3YzRkMzBlNmRkYjU4N2IzZTM3ZCIsImlhdCI6MTc1MTI2NzY5MiwiZXhwIjoxNzgyODAzNjkyfQ.Q_u73JFMxjZESQC9yUAwb7V7La5bM9OT37iGl3UO_cY", + "token.sig": "LdkOB3mNW_a59rzyTefnRuTybegvcDHEUd4hRXc-lO8", + "x-trace-id": "9587d2f9a1e84ae783cb2a5f055a7a51" +} +Requests = MR(base_url, protocol, headers) +Requests.set_default_cookies(cookies=cookies) +_keyword = "" +pd_data = { + 'resume_id': [], + '姓名': [], + '年龄': [], + '生日': [], + '工作经验': [], + '最高学历': [], + '婚姻状态': [], + '电话': [], + '意向岗位': [], + '期望薪资': [], + '工作性质': [], + '求职状态': [], + '工作地点': [], + '工作经历1': [], + '工作经历2': [], + '工作经历3': [], + '工作经历4': [], +} + + +def login(): + url = '/account/login' + params = { + 'ref': '/?from=h5', + } + data = { + '_type': '1', + '_from': 'quick', + 'account': '18244681207', + 'password': 'zhenxian8888', + } + response = Requests.post(url, params=params, data=data, autosave=True) + response.cookies_dict() + + +def get_page_for_keyword(keyword): + global _keyword + _keyword = keyword + url = '/api/v1/resumes' + params = { + '_': str(int(time.time() * 1000 - 10000)), + 'tab': 'resume', + 'keyword': keyword, + 't': str(int(time.time() * 1000)), + 'pageSize': '100', + 'pageIndex': '1', + 'showStatus': 'true', + } + response = Requests.get(url, params=params) + return response.to_Dict() + + +def get_resumes_info(resumes_id): + # print(resumes_id) + url = '/api/v1/resume/{}'.format(resumes_id) + params = { + '_': str(int(time.time() * 1000)), + 'view_type': 'resumeLibrary', + 'privacy_description': '1', + } + response = Requests.get(url, params=params) + info = response.to_Dict().data + data = { + 'resume_id': resumes_id, + '姓名': info.name, + '年龄': info.age, + '生日': info.birthday, + '工作经验': info.work_exp_value, + '最高学历': info.edu_value, + '婚姻状态': info.marriage_value, + '电话': info.phone, + '意向岗位': ','.join([item.name for item in info.infoCateforyArrObj]), + '期望薪资': info.salaryDesc, + '工作性质': info.work_type_value, + '求职状态': info.job_instant_value, + '工作地点': info.job_region_value, + } + for i in range(4): # 0, 1, 2, 3 + if i < len(info.works): + work = info.works[i] + data[f'工作经历{i + 1}'] = f"{work.company}:{work.content}" + else: + data[f'工作经历{i + 1}'] = '' + + return data + + +def integration(keyword): + global _keyword + _keyword = keyword + page = get_page_for_keyword(_keyword) + for item in page.data.items: + resumes_info = get_resumes_info(item.id) + for key, value in resumes_info.items(): + pd_data[key].append(value) + + df = pd.DataFrame(pd_data) + df.to_excel(f'{datetime.datetime.now().strftime("%Y%m%d")}_滦南_{_keyword}.xlsx', index=False) + + +if __name__ == '__main__': + integration("维修工") + # get_resumes_info('36859') diff --git a/web/96rz_com/www_96rz_com_cookies.json b/web/96rz_com/www_96rz_com_cookies.json new file mode 100644 index 0000000..e697472 --- /dev/null +++ b/web/96rz_com/www_96rz_com_cookies.json @@ -0,0 +1,8 @@ +{ + "HMACCOUNT": "52014CC932A93E9B", + "Hm_lpvt_0fcb5413ca26ff9fe1a29c6f98b5e6d0": "1751267677", + "Hm_lvt_0fcb5413ca26ff9fe1a29c6f98b5e6d0": "1751267674", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MTI4MTMwLCJ1c2VybmFtZSI6IueUhOePjV8xNTgyMzMiLCJwd2QiOiJiNGUzZDQyODUwMTA3YzRkMzBlNmRkYjU4N2IzZTM3ZCIsImlhdCI6MTc1MTI2NzY5MiwiZXhwIjoxNzgyODAzNjkyfQ.Q_u73JFMxjZESQC9yUAwb7V7La5bM9OT37iGl3UO_cY", + "token.sig": "LdkOB3mNW_a59rzyTefnRuTybegvcDHEUd4hRXc-lO8", + "x-trace-id": "9587d2f9a1e84ae783cb2a5f055a7a51" +} \ No newline at end of file diff --git a/web/DailyMotion b/web/DailyMotion new file mode 160000 index 0000000..ecfd2d2 --- /dev/null +++ b/web/DailyMotion @@ -0,0 +1 @@ +Subproject commit ecfd2d227af68e5c223782e8d3538f8c1f80dbb1 diff --git a/web/Requests_Except.py b/web/Requests_Except.py new file mode 100644 index 0000000..5f55db8 --- /dev/null +++ b/web/Requests_Except.py @@ -0,0 +1,208 @@ +import json +import re +import requests +import logging +import time +from lxml import etree +from types import SimpleNamespace +from http.cookies import SimpleCookie + +logging.basicConfig(level=logging.DEBUG, format='%(asctime)s - %(levelname)s - %(message)s') + + +class ExtendedResponse(requests.Response): + def xpath(self): + try: + tree = etree.HTML(self.text) + return tree + except Exception as e: + raise ValueError("XPath解析错误: " + str(e)) + + def to_Dict(self): + try: + data = self.json() + return self.dict_to_obj(data) + except Exception as e: + raise ValueError("JSON转换错误: " + str(e)) + + def to_Re_findall(self, regex): + try: + data = self.text + return re.findall(regex, data) + except Exception as e: + raise ValueError("Re搜索错误: " + str(e)) + + def cookies_dict(self): + try: + # 获取原有的 cookies 字典 + cookie_dict = self.cookies.get_dict() + # 如果响应头中有 Set-Cookie,则解析并补充 cookies + if 'Set-Cookie' in self.headers: + from http.cookies import SimpleCookie + sc = SimpleCookie() + sc.load(self.headers['Set-Cookie']) + for key, morsel in sc.items(): + cookie_dict[key] = morsel.value + return cookie_dict + except Exception as e: + raise ValueError("Cookies转换错误: " + str(e)) + + def save_cookies(self, filepath, format='json'): + """ + 将当前响应中的cookie信息保存到指定文件中。 + + 参数: + filepath (str): 保存文件的路径 + format (str): 保存格式,支持 'json'、'pickle' 和 'txt' 三种格式,默认为 'json' + """ + try: + cookie_dict = self.cookies_dict() + if format.lower() == 'json': + with open(filepath, 'w', encoding='utf-8') as f: + json.dump(cookie_dict, f, ensure_ascii=False, indent=4) + elif format.lower() == 'pickle': + import pickle + with open(filepath, 'wb') as f: + pickle.dump(cookie_dict, f) + elif format.lower() == 'txt': + with open(filepath, 'w', encoding='utf-8') as f: + for key, value in cookie_dict.items(): + f.write(f"{key}: {value}\n") + else: + raise ValueError("不支持的格式,请选择 'json'、'pickle' 或 'txt'") + except Exception as e: + raise ValueError("保存cookies出错: " + str(e)) + + @staticmethod + def dict_to_obj(d): + if isinstance(d, dict): + return SimpleNamespace(**{k: ExtendedResponse.dict_to_obj(v) for k, v in d.items()}) + elif isinstance(d, list): + return [ExtendedResponse.dict_to_obj(item) for item in d] + else: + return d + + +class MyRequests: + def __init__(self, base_url, protocol='http', retries=3, proxy_options=True, default_timeout=10, + default_cookies=None): + """ + 初始化 MyRequests 对象,自动加载本地 cookies 文件(根据 base_url 生成文件名,如 "www_zhrczp_com_cookies.json")中的 cookies, + 如果文件存在,则将其加载到 session 中;否则使用 default_cookies(如果提供)更新 session。 + + 参数: + base_url (str): 基础 URL + protocol (str): 协议(默认为 'http') + retries (int): 请求重试次数 + proxy_options (bool): 是否使用代理 + default_timeout (int): 默认超时时间 + default_cookies (dict): 默认的 cookies 字典 + """ + self.base_url = base_url.rstrip('/') + self.protocol = protocol + self.retries = retries + self.default_timeout = default_timeout + self.session = requests.Session() + + if proxy_options: + self.session.proxies = {"http": "http://127.0.0.1:7890", "https": "http://127.0.0.1:7890"} + + # 优先使用传入的 default_cookies 更新 session + if default_cookies: + self.session.cookies.update(default_cookies) + + # 根据 base_url 生成 cookies 文件名,将 '.' 替换为 '_' + self.cookie_file = f"{self.base_url.replace('.', '_')}_cookies.json" + # 尝试加载本地已保存的 cookies 文件 + try: + with open(self.cookie_file, 'r', encoding='utf-8') as f: + loaded_cookies = json.load(f) + self.session.cookies.update(loaded_cookies) + logging.info("成功加载本地 cookies") + except FileNotFoundError: + logging.info("本地 cookies 文件不存在,将在请求后自动保存") + except Exception as e: + logging.error("加载本地 cookies 失败:" + str(e)) + + def _save_cookies(self): + """ + 将当前 session 中的 cookies 保存到本地文件(基于 base_url 的文件名),以 JSON 格式存储。 + """ + try: + with open(self.cookie_file, 'w', encoding='utf-8') as f: + json.dump(self.session.cookies.get_dict(), f, ensure_ascii=False, indent=4) + logging.info("cookies 已保存到本地文件:" + self.cookie_file) + except Exception as e: + logging.error("保存 cookies 文件失败:" + str(e)) + + def _build_url(self, url): + if url.startswith("http://") or url.startswith("https://"): + return url + return f"{self.protocol}://{self.base_url}/{url.lstrip('/')}" + + def set_default_headers(self, headers): + self.session.headers.update(headers) + + def set_default_cookies(self, cookies): + self.session.cookies.update(cookies) + self._save_cookies() + + def get(self, url, params=None, headers=None, cookies=None, **kwargs): + full_url = self._build_url(url) + return self._request("GET", full_url, params=params, headers=headers, cookies=cookies, **kwargs) + + def post(self, url, data=None, json=None, headers=None, cookies=None, **kwargs): + full_url = self._build_url(url) + return self._request("POST", full_url, data=data, json=json, headers=headers, cookies=cookies, **kwargs) + + def update(self, url, data=None, json=None, headers=None, cookies=None, **kwargs): + full_url = self._build_url(url) + return self._request("PUT", full_url, data=data, json=json, headers=headers, cookies=cookies, **kwargs) + + def delete(self, url, params=None, headers=None, cookies=None, **kwargs): + full_url = self._build_url(url) + return self._request("DELETE", full_url, params=params, headers=headers, cookies=cookies, **kwargs) + + def _request(self, method, url, retries=None, autosave=False, **kwargs): + if retries is None: + retries = self.retries + if 'timeout' not in kwargs: + kwargs['timeout'] = self.default_timeout + + try: + response = self.session.request(method, url, **kwargs) + response.raise_for_status() + self.session.cookies.update(response.cookies) + + if 'Set-Cookie' in response.headers: + from http.cookies import SimpleCookie + sc = SimpleCookie() + sc.load(response.headers['Set-Cookie']) + for key, morsel in sc.items(): + if morsel.value.lower() != 'deleted': + self.session.cookies.set(key, morsel.value) + + if autosave: + self._save_cookies() + + response.__class__ = ExtendedResponse + return response + + except Exception as e: + if retries > 0: + logging.warning(f"请求 {method} {url} 失败,剩余重试次数 {retries},错误: {e}") + time.sleep(2 ** (self.retries - retries)) + return self._request(method, url, retries=retries - 1, autosave=autosave, **kwargs) + else: + logging.error(f"请求 {method} {url} 重试次数用尽") + raise e + + def get_cookies(self): + try: + return self.session.cookies.get_dict() + except Exception as e: + raise ValueError("获取 cookies 失败:" + str(e)) + + +class MR(MyRequests): + pass diff --git a/web/TS_resume_spider b/web/TS_resume_spider new file mode 160000 index 0000000..f41404e --- /dev/null +++ b/web/TS_resume_spider @@ -0,0 +1 @@ +Subproject commit f41404e1fdc6e2018245ecdea85148a3c9e99069 diff --git a/web/__init__.py b/web/__init__.py new file mode 100644 index 0000000..f8a141b --- /dev/null +++ b/web/__init__.py @@ -0,0 +1 @@ +from web import Requests_Except \ No newline at end of file diff --git a/web/cfdzp/cfd_zp.py b/web/cfdzp/cfd_zp.py new file mode 100644 index 0000000..c8b3715 --- /dev/null +++ b/web/cfdzp/cfd_zp.py @@ -0,0 +1,137 @@ +import requests +import pandas as pd +from datetime import datetime +import time +import random +import urllib3 +from concurrent.futures import ThreadPoolExecutor, as_completed +# 禁用 SSL 警告 +urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) + +class ResumeAPI: + def __init__(self): + self.base_url = 'https://www.qj050.com/api/v1' + self.headers = { + 'Accept': '*/*', + 'Accept-Encoding': 'gzip, deflate, br', + 'Accept-Language': 'zh-CN,zh;q=0.9', + 'Authorization': 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6NDgxNTMsInVzZXJuYW1lIjoi55yf6LSkODg4OCIsInB3ZCI6IjFiYmJjNzc5OGRkMTFiNTI2YWQ4ZTVmYTYyNWY5MjVkIiwiaWF0IjoxNzQyODgzNzU3LCJleHAiOjE3NzQ0MTk3NTd9.sLsOLcTnxoB0iWbks7_9IVp9OmDPlo0cKOwL6qHcID8', + 'Connection': 'keep-alive', + 'Cookie': 'token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6NDgxNTMsInVzZXJuYW1lIjoi55yf6LSkODg4OCIsInB3ZCI6IjFiYmJjNzc5OGRkMTFiNTI2YWQ4ZTVmYTYyNWY5MjVkIiwiaWF0IjoxNzQyODgzNzU3LCJleHAiOjE3NzQ0MTk3NTd9.sLsOLcTnxoB0iWbks7_9IVp9OmDPlo0cKOwL6qHcID8;token.sig=SiletSGnwThzp8gd2-IEaawgh0aMNhG8ZduDjcH5syA;x-trace-id=5cbbd6e2d49347e2893925bbf110eb37', + 'Host': 'www.qj050.com', + 'User-Agent': 'PostmanRuntime-ApipostRuntime/1.1.0', + 'x-platform': '1' + } + self.max_retries = 3 + self.retry_delay = 2 + + def _make_request(self, url, params=None, method='get'): + for attempt in range(self.max_retries): + try: + # 添加随机延迟,避免频繁请求 + time.sleep(random.uniform(1, 3)) + + # 禁用 SSL 验证 + response = requests.get(url, headers=self.headers, params=params, verify=False) if method == 'get' else \ + requests.post(url, headers=self.headers, json=params, verify=False) + response.raise_for_status() + return response.json() + except requests.exceptions.RequestException as e: + if attempt == self.max_retries - 1: + print(f"请求失败 ({url}): {str(e)}") + raise + print(f"重试请求 {attempt + 1}/{self.max_retries}") + time.sleep(self.retry_delay * (attempt + 1)) + + def get_name(self, resume_id, blurred_name): + url = f'{self.base_url}/resume/{resume_id}' + params = {'_': int(time.time() * 1000)} + try: + data = self._make_request(url, params) # 后续详细信息可以从这获取 + return data.get('data', {}).get('name', '') + except: + return blurred_name + + def get_contact_info(self, resume_id): + url = f'{self.base_url}/resume/{resume_id}/contact' + params = {'_': int(time.time() * 1000)} + try: + data = self._make_request(url, params) + return { + 'phone': data.get('data', {}).get('phone', ''), + 'real_name': data.get('data', {}).get('real_name', '') + } + except: + return {'phone': '', 'real_name': ''} + + def fetch_resumes(self, keyword='护工', page_size=10, page_index=1, save_csv=True): + url = f'{self.base_url}/resumes' + params = { + '_': int(time.time() * 1000), + 'tab': 'resume', + 'keyword': keyword, + 't': int(time.time() * 1000), + 'info_subarea': '', + 'info_category': '', + 'pageSize': page_size, + 'pageIndex': page_index, + 'showStatus': 'true' + } + + try: + data = self._make_request(url, params) + + items = data.get('data', {}).get('items', []) + if not items: + return [] + + def process_resume(item): + try: + resume_id = item.get('id') + blurred_name = item.get('name_value', '') + contact_info = self.get_contact_info(resume_id) + name_value = self.get_name(resume_id, blurred_name) + + category_names = [c.get('name', '') for c in item.get('infoCateforyArrObj', [])] + categories_str = ','.join(category_names) + + return { + 'name_value': blurred_name, + 'age': item.get('age', ''), + 'edu_value': item.get('edu_value', ''), + 'job_instant_value': item.get('job_instant_value', ''), + 'job_salary_from': item.get('job_salary_from', ''), + 'job_salary_to': item.get('job_salary_to', ''), + 'categories': categories_str, + 'phone': contact_info['phone'], + 'real_name': name_value + } + except Exception as e: + print(f"处理简历失败: {str(e)}") + return None + + resumes = [] + with ThreadPoolExecutor(max_workers=10) as executor: + future_to_resume = {executor.submit(process_resume, item): item for item in items} + for idx, future in enumerate(as_completed(future_to_resume), 1): + result = future.result() + print(f"已处理: {idx}/{len(items)}") + if result: + resumes.append(result) + + # 保存 CSV(可选) + if resumes and save_csv: + df = pd.DataFrame(resumes) + filename = f'resumes_{datetime.now().strftime("%Y%m%d_%H%M%S")}.csv' + df.to_csv(filename, index=False, encoding='utf-8-sig') + print(f'数据已保存到 {filename}') + + return resumes + + except Exception as e: + print(f"获取简历数据失败: {str(e)}") + return [] + +if __name__ == '__main__': + api = ResumeAPI() + api.fetch_resumes() \ No newline at end of file diff --git a/web/cfdzp/main.py b/web/cfdzp/main.py new file mode 100644 index 0000000..2bcc1aa --- /dev/null +++ b/web/cfdzp/main.py @@ -0,0 +1,43 @@ +from cfd_zp import ResumeAPI +import pandas as pd +from datetime import datetime + +def fetch_multiple_pages(keyword, total_pages=10, page_size=10): + api = ResumeAPI() + all_resumes = [] + + # 创建唯一的CSV文件名 + filename = f'resumes_{keyword}_{datetime.now().strftime("%Y%m%d_%H%M%S")}.csv' + print(f"开始采集关键词 '{keyword}' 的数据,将保存到文件: {filename}") + + for page in range(1, total_pages + 1): + print(f"\n正在采集第 {page}/{total_pages} 页") + resumes = api.fetch_resumes( + keyword=keyword, + page_size=page_size, + page_index=page, + save_csv=False # 不在每页都保存CSV + ) + if resumes: + all_resumes.extend(resumes) + # 将当前所有数据保存到CSV + df = pd.DataFrame(all_resumes) + df.to_csv(filename, index=False, encoding='utf-8-sig') + print(f"已保存 {len(all_resumes)} 条数据到 {filename}") + else: + print(f"第 {page} 页数据获取失败或为空") + + print(f"\n采集完成,共获取 {len(all_resumes)} 条数据") + return all_resumes + +def main(): + # 设置关键词和采集页数 + keyword = '护工' + total_pages = 10 + page_size = 10 + + # 开始批量采集 + fetch_multiple_pages(keyword, total_pages, page_size) + +if __name__ == '__main__': + main() \ No newline at end of file diff --git a/web/cfdzp/resumes_20250327_185144.csv b/web/cfdzp/resumes_20250327_185144.csv new file mode 100644 index 0000000..81a89ef --- /dev/null +++ b/web/cfdzp/resumes_20250327_185144.csv @@ -0,0 +1,11 @@ +name_value,age,edu_value,job_instant_value,job_salary_from,job_salary_to,categories,phone,real_name +李政伟,36,本科,"我目前已离职, 可快速到岗",10000.0,15000.0,"招聘经理/主任,测试工程师,经理助理,项目经理,储备干部",17600364716, +李先生,39,大专,"我目前已离职, 可快速到岗",6000.0,8000.0,"物业管理,项目经理,招投标",18033572860, +刘先生,34,大专,"我目前已离职, 可快速到岗",0.0,0.0,部门主管,16643562515, +孙晓磊,36,本科,我目前正在职,考虑换个环境,4000.0,8000.0,工业工厂其他相关职位,18332778778, +于萍,23,大专,我目前正在职,考虑换个环境,0.0,0.0,"人事文员,行政文员,前台接待,文员,文职文员其他相关职位",15132578638, +王德梅,58,高中,"我目前已离职, 可快速到岗",,,其它相关职位,17736517991, +李女士,35,大专,"我目前已离职, 可快速到岗",4000.0,7000.0,"保安,文员,招投标",18203357869, +嘉嘉,24,高中,"我目前已离职, 可快速到岗",0.0,0.0,销售助理,18134247015, +王女士_324932,46,不限,"我目前已离职, 可快速到岗",,,护士/护理,15830585203, +张伟,31,大专,我目前正在职,考虑换个环境,5000.0,8000.0,"电工/锅炉工,设备修理",15075586374, diff --git a/web/cfdzp/resumes_护工_20250327_180952.csv b/web/cfdzp/resumes_护工_20250327_180952.csv new file mode 100644 index 0000000..fc60cf4 --- /dev/null +++ b/web/cfdzp/resumes_护工_20250327_180952.csv @@ -0,0 +1,101 @@ +name_value,age,edu_value,job_instant_value,job_salary_from,job_salary_to,categories,phone,real_name +李先生,36,本科,"我目前已离职, 可快速到岗",10000.0,15000.0,"招聘经理/主任,测试工程师,经理助理,项目经理,储备干部",17600364716, +李先生,39,大专,"我目前已离职, 可快速到岗",6000.0,8000.0,"物业管理,项目经理,招投标",18033572860, +刘先生,34,大专,"我目前已离职, 可快速到岗",0.0,0.0,部门主管,16643562515, +孙先生,36,本科,我目前正在职,考虑换个环境,4000.0,8000.0,工业工厂其他相关职位,18332778778, +于女士,23,大专,我目前正在职,考虑换个环境,0.0,0.0,"人事文员,行政文员,前台接待,文员,文职文员其他相关职位",15132578638, +王女士,58,高中,"我目前已离职, 可快速到岗",,,其它相关职位,17736517991, +李女士,35,大专,"我目前已离职, 可快速到岗",4000.0,7000.0,"保安,文员,招投标",18203357869, +嘉女士,24,高中,"我目前已离职, 可快速到岗",0.0,0.0,销售助理,18134247015, +王女士,46,不限,"我目前已离职, 可快速到岗",,,护士/护理,15830585203, +张先生,31,大专,我目前正在职,考虑换个环境,5000.0,8000.0,"电工/锅炉工,设备修理",15075586374, +杨女士,33,大专,我目前正在职,考虑换个环境,2000.0,4000.0,文员,17796957849, +张女士,34,大专,"我目前已离职, 可快速到岗",0.0,0.0,"档案管理,物业管理,人事文员,行政文员",13472959755, +卫先生,32,中专/技校,"我目前已离职, 可快速到岗",5000.0,6000.0,司机,15127515220, +韩先生,34,本科,我目前正在职,考虑换个环境,7000.0,12000.0,电工/锅炉工,18903152186, +陈先生,33,大专,我目前正在职,考虑换个环境,5000.0,6000.0,操作工/普工,15032902921, +董先生,36,本科,"我目前已离职, 可快速到岗",7000.0,8000.0,"行政经理,行政助理,行政外联专员",15833464006, +高女士,24,本科,我目前正在职,考虑换个环境,4000.0,7000.0,"行政文员,市场销售其他相关职位,应届毕业生,教务/教务管理,文体培训其他相关职位",19930024957, +李先生,34,本科,"我目前已离职, 可快速到岗",5000.0,8000.0,"产品工艺/制程工程师,工业工厂其他相关职位",15632548320, +刘先生,24,大专,我目前正在职,考虑换个环境,4000.0,5000.0,"电气工程师,电工/锅炉工,电器工程师,电气维修,自动控制",13230526763, +成先生,34,本科,"我目前已离职, 可快速到岗",4000.0,6000.0,会计,16631565969, +李女士,39,高中以下,"我目前已离职, 可快速到岗",,,"物流主管,推(营、促)销员,市场销售其他相关",15732594271, +艾先生,31,大专,我目前正在职,考虑换个环境,6000.0,8000.0,"操作工/普工,组长/拉长,计划员/调度员",15931517465, +夏先生,25,大专,我目前正在职,考虑换个环境,6000.0,9000.0,电工/锅炉工,18132674564, +王先生,38,大专,"我目前已离职, 可快速到岗",8000.0,12000.0,生产经理,15832531755, +郑女士,49,高中以下,"我目前已离职, 可快速到岗",1000.0,2000.0,餐饮休闲其他相关职位,13131592702, +王先生,27,本科,"我目前已离职, 可快速到岗",8000.0,10000.0,"工艺工程师,无机化工,有机化工,精细化工",18713472122, +刘先生,30,大专,我目前正在职,考虑换个环境,5000.0,6000.0,"文员,硬件工程师,网络硬件其他相关职位",18631558615, +姚先生,23,大专,"我目前已离职, 可快速到岗",5000.0,6000.0,"操作工/普工,应届毕业生,普工技工其他相关职位",18633325443, +高先生,41,本科,"我目前已离职, 可快速到岗",9000.0,10000.0,"机电一体化,工程经理/主管,工程设备工程师,设备经理/主管,工业工厂其他相关职位",13933476359, +张先生,29,不限,我目前正在职,考虑换个环境,0.0,0.0,电工/锅炉工,18714117412, +高先生,25,大专,"我目前已离职, 可快速到岗",0.0,0.0,档案管理,15373158665, +孙女士,29,本科,"我目前已离职, 可快速到岗",0.0,0.0,"会计助理,文员,出纳",15633977516, +高女士,32,本科,我目前正在职,考虑换个环境,5000.0,8000.0,"人事经理,行政经理,行政人事其他相关职位",18532503671, +女女士,47,高中以下,"我目前已离职, 可快速到岗",4000.0,9000.0,工业工厂其他相关职位,15001005401, +毕先生,28,大专,"我目前已离职, 可快速到岗",0.0,0.0,"人事助理,物业管理,仓库管理员",17736578597, +李先生,22,本科,"我目前已离职, 可快速到岗",8000.0,10000.0,电气工程师,18134151697, +王先生,28,大专,"我目前已离职, 可快速到岗",8000.0,12000.0,"销售经理,销售主管",15100595409, +郑先生,16,大专,"我目前已离职, 可快速到岗",4000.0,5000.0,"电工/锅炉工,文员,管道(水、电),机电一体化,安全员",13273553623, +邢先生,28,中专/技校,"我目前已离职, 可快速到岗",5000.0,8000.0,操作工/普工,17332835118, +赵女士,26,大专,"我目前已离职, 可快速到岗",3000.0,5000.0,"人事文员,行政文员,文员",13303349597, +李先生,33,本科,"我目前已离职, 可快速到岗",10000.0,15000.0,能源环保其他相关职位,18232580171, +宋女士,30,本科,"我目前已离职, 可快速到岗",3000.0,5000.0,"人事助理,行政助理,人事文员,行政文员,行政人事其他相关职位",17736543160, +刘先生,36,大专,我目前正在职,考虑换个环境,5000.0,8000.0,"电气工程师,电工/锅炉工",19930055542, +李女士,24,大专,"我目前已离职, 可快速到岗",4000.0,5000.0,"营业员/店员,置业顾问,物业管理,服务员/收银员/迎宾,仓库管理员",13031553751, +乐先生,23,大专,"我目前已离职, 可快速到岗",0.0,0.0,"电气工程师,电工/锅炉工,工业工厂其他相关职位",15511951165, +杨先生,36,大专,"我目前已离职, 可快速到岗",8000.0,12000.0,"电工/锅炉工,操作工/普工",15033463533, +王先生,37,大专,"我目前已离职, 可快速到岗",0.0,0.0,"行政经理,厂长/副厂长,生产经理",13832558785, +孙先生,32,中专/技校,"我目前已离职, 可快速到岗",5000.0,7000.0,司机后勤其他相关职位,15102556611, +金先生,30,大专,我目前正在职,考虑换个环境,5000.0,8000.0,"生管主管/督导,计划员/调度员,安全主任,安全员,工业工厂其他相关职位",18532521663, +孙先生,45,大专,我目前正在职,考虑换个环境,5000.0,8000.0,"电工/锅炉工,操作工/普工,普工技工其他相关职位",13103258527, +江先生,33,本科,"我目前已离职, 可快速到岗",0.0,0.0,"水利、水电,核电、火电,电厂、电力,能源环保其他相关职位",13722578791, +赵女士,32,大专,我目前正在职,考虑换个环境,3000.0,5000.0,"行政助理,行政文员,客户服务",15033383977, +任先生,53,中专/技校,我目前正在职,考虑换个环境,0.0,0.0,普工技工其他相关职位,18032511802, +先先生,62,不限,"我目前已离职, 可快速到岗",0.0,0.0,"保安,人事文员,行政文员,安全员",13582958606, +郭女士,25,大专,"我目前已离职, 可快速到岗",,,其它相关职位,13231577871, +邢女士,23,大专,"我目前已离职, 可快速到岗",0.0,0.0,人事文员,17331579095, +曹先生,33,本科,"我目前已离职, 可快速到岗",0.0,0.0,"档案管理,电脑操作员/打字员,文员,文职文员其他相关职位,测试工程师",13121174103, +聂先生,31,本科,"我目前已离职, 可快速到岗",5000.0,8000.0,"操作工/普工,司机",19930010655, +王女士,35,本科,"我目前已离职, 可快速到岗",3000.0,5000.0,"销售主管,行政助理,招聘专员,行政人事其他相关职位,市场销售其他相关",13426090458, +赵先生,38,大专,"我目前已离职, 可快速到岗",,,"电气维修,自动控制",15833534957, +聂先生,23,大专,我是应届毕业生,0.0,0.0,应届毕业生,15503327285, +侯先生,26,本科,"我目前已离职, 可快速到岗",0.0,0.0,应届毕业生,13031970785, +冯女士,38,大专,"我目前已离职, 可快速到岗",3000.0,5000.0,"会计助理,出纳,会计财务其他相关职位,文体培训其他相关职位",15931510441, +刘先生,28,不限,"我目前已离职, 可快速到岗",6000.0,8000.0,售前/售后支持,18713822511, +刘女士,29,大专,我目前正在职,考虑换个环境,0.0,0.0,"人事经理,档案管理,会计",18231596068, +孙女士,30,大专,"我目前已离职, 可快速到岗",5000.0,8000.0,"行政文员,招投标,统计员",15930531215, +李先生,33,本科,"我目前已离职, 可快速到岗",6000.0,11000.0,销售经理,13091088301, +王女士,28,本科,"我目前已离职, 可快速到岗",4000.0,6000.0,"产品经理,产品/品牌企划,售前/售后支持,家具设计,采购员",18802419065, +白女士,26,大专,"我目前已离职, 可快速到岗",,,其它相关职位,19931423082, +刘先生,19,高中以下,我目前正在职,考虑换个环境,3000.0,5000.0,"大堂经理/副理,服务员/收银员/迎宾",15230538512, +王女士,24,大专,"我目前已离职, 可快速到岗",3000.0,5000.0,"人事文员,热线咨询,话务员,文员,投诉处理",15383150933, +付先生,56,中专/技校,"我目前已离职, 可快速到岗",5000.0,6000.0,"物业管理,管理运营其他相关职位",15033982787, +李女士,30,大专,"我目前已离职, 可快速到岗",3000.0,5000.0,"文职文员其他相关职位,行政人事其他相关职位,文体培训其他相关职位",13262759509, +冯先生,45,高中以下,"我目前已离职, 可快速到岗",5000.0,7000.0,"水工/木工/油漆工,司机,护士/护理,叉车工,针灸推拿",18931483153, +蔡女士,23,大专,"我目前已离职, 可快速到岗",3000.0,4000.0,"仓库管理员,人事文员,行政文员,文员",19833993360, +赵女士,31,本科,"我目前已离职, 可快速到岗",0.0,0.0,"档案管理,人事文员,文员,仓库管理员,文体培训其他相关职位",13171520203, +张先生,27,大专,"我目前已离职, 可快速到岗",5000.0,8000.0,普工技工其他相关职位,, +张先生,31,硕士,"我目前已离职, 可快速到岗",8000.0,9000.0,大学教师,, +孙先生,26,本科,"我目前已离职, 可快速到岗",5000.0,6000.0,"电工/锅炉工,电厂、电力,电脑操作员/打字员",, +王女士,33,大专,"我目前已离职, 可快速到岗",0.0,0.0,"会计,电工/锅炉工",, +周先生,23,大专,"我目前已离职, 可快速到岗",0.0,0.0,"人事助理,人事文员",, +邢女士,32,大专,"我目前已离职, 可快速到岗",0.0,0.0,"人事经理,人事助理,文化艺术,行政助理,文员",, +张女士,31,大专,"我目前已离职, 可快速到岗",5000.0,6000.0,"人事文员,行政文员",, +马先生,49,高中,"我目前已离职, 可快速到岗",6000.0,7000.0,"电工/锅炉工,操作工/普工,钳、钣、铆、冲、焊、铸,普工技工其他相关职位",, +陶先生,37,大专,"我目前已离职, 可快速到岗",4000.0,5000.0,操作工/普工,, +刘先生,44,本科,我目前正在职,考虑换个环境,0.0,0.0,"电气工程师,自动控制",, +毕先生,37,大专,我目前正在职,考虑换个环境,6000.0,8000.0,电工/锅炉工,, +董女士,27,本科,"我目前已离职, 可快速到岗",5000.0,8000.0,"商务人员,国际业务,外贸员",, +静女士,27,本科,"我目前已离职, 可快速到岗",0.0,0.0,"行政文员,行政人事其他相关职位",, +李女士,35,本科,我目前正在职,考虑换个环境,0.0,0.0,"档案管理,大学教师,教务/教务管理,文体培训其他相关职位",, +齐先生,38,大专,我目前正在职,考虑换个环境,12000.0,20000.0,"机电一体化,机械仪表其他相关职位,工业工厂其他相关职位",, +李先生,37,高中,"我目前已离职, 可快速到岗",5000.0,8000.0,"制冷、暖通,能源环保其他相关职位,部门主管,项目经理,管理运营其他相关职位",, +郑先生,28,大专,我目前正在职,考虑换个环境,0.0,0.0,"电气工程师,测试工程师",, +林先生,40,本科,我目前正在职,考虑换个环境,5000.0,8000.0,"工程经理/主管,工程设备工程师,工业工厂其他相关职位",, +周女士,38,大专,"我目前已离职, 可快速到岗",,,"文职文员其他相关职位,行政人事其他相关职位,市场销售其他相关职位,客户服务其他相关职位",, +李先生,35,中专/技校,我目前正在职,考虑换个环境,5000.0,8000.0,"操作工/普工,石油/天燃气/储运,仓库管理员,工业工厂其他相关职位,普工技工其他相关职位",, +安女士,26,大专,"我目前已离职, 可快速到岗",3000.0,5000.0,"会计,会计助理,出纳,统计,其它相关职位",, +董先生,30,中专/技校,"我目前已离职, 可快速到岗",,,"操作工/普工,生管员,司机,叉车工,仓库管理员",, +丁女士,33,大专,"我目前已离职, 可快速到岗",0.0,0.0,"人事文员,行政人事其他相关职位",, +李女士,28,本科,"我目前已离职, 可快速到岗",3000.0,5000.0,行政文员,, diff --git a/web/cfdzp/resumes_护工_20250327_182930.csv b/web/cfdzp/resumes_护工_20250327_182930.csv new file mode 100644 index 0000000..3538666 --- /dev/null +++ b/web/cfdzp/resumes_护工_20250327_182930.csv @@ -0,0 +1,101 @@ +name_value,age,edu_value,job_instant_value,job_salary_from,job_salary_to,categories,phone,real_name +李政伟,36,本科,"我目前已离职, 可快速到岗",10000.0,15000.0,"招聘经理/主任,测试工程师,经理助理,项目经理,储备干部",17600364716, +李先生,39,大专,"我目前已离职, 可快速到岗",6000.0,8000.0,"物业管理,项目经理,招投标",18033572860, +刘先生,34,大专,"我目前已离职, 可快速到岗",0.0,0.0,部门主管,16643562515, +孙晓磊,36,本科,我目前正在职,考虑换个环境,4000.0,8000.0,工业工厂其他相关职位,18332778778, +于萍,23,大专,我目前正在职,考虑换个环境,0.0,0.0,"人事文员,行政文员,前台接待,文员,文职文员其他相关职位",15132578638, +王德梅,58,高中,"我目前已离职, 可快速到岗",,,其它相关职位,17736517991, +李女士,35,大专,"我目前已离职, 可快速到岗",4000.0,7000.0,"保安,文员,招投标",18203357869, +嘉嘉,24,高中,"我目前已离职, 可快速到岗",0.0,0.0,销售助理,18134247015, +王女士_324932,46,不限,"我目前已离职, 可快速到岗",,,护士/护理,15830585203, +张伟,31,大专,我目前正在职,考虑换个环境,5000.0,8000.0,"电工/锅炉工,设备修理",15075586374, +杨小雪,33,大专,我目前正在职,考虑换个环境,2000.0,4000.0,文员,17796957849, +张女士,34,大专,"我目前已离职, 可快速到岗",0.0,0.0,"档案管理,物业管理,人事文员,行政文员",13472959755, +卫庆,32,中专/技校,"我目前已离职, 可快速到岗",5000.0,6000.0,司机,15127515220, +韩子建,34,本科,我目前正在职,考虑换个环境,7000.0,12000.0,电工/锅炉工,18903152186, +陈光,33,大专,我目前正在职,考虑换个环境,5000.0,6000.0,操作工/普工,15032902921, +董鑫,36,本科,"我目前已离职, 可快速到岗",7000.0,8000.0,"行政经理,行政助理,行政外联专员",15833464006, +高倩,24,本科,我目前正在职,考虑换个环境,4000.0,7000.0,"行政文员,市场销售其他相关职位,应届毕业生,教务/教务管理,文体培训其他相关职位",19930024957, +李先生,34,本科,"我目前已离职, 可快速到岗",5000.0,8000.0,"产品工艺/制程工程师,工业工厂其他相关职位",15632548320, +刘志杰,24,大专,我目前正在职,考虑换个环境,4000.0,5000.0,"电气工程师,电工/锅炉工,电器工程师,电气维修,自动控制",13230526763, +成浩,34,本科,"我目前已离职, 可快速到岗",4000.0,6000.0,会计,16631565969, +李小芹,39,高中以下,"我目前已离职, 可快速到岗",,,"物流主管,推(营、促)销员,市场销售其他相关",15732594271, +艾顺坤,31,大专,我目前正在职,考虑换个环境,6000.0,8000.0,"操作工/普工,组长/拉长,计划员/调度员",15931517465, +夏铭飞,25,大专,我目前正在职,考虑换个环境,6000.0,9000.0,电工/锅炉工,18132674564, +王朝,38,大专,"我目前已离职, 可快速到岗",8000.0,12000.0,生产经理,15832531755, +郑忆新,49,高中以下,"我目前已离职, 可快速到岗",1000.0,2000.0,餐饮休闲其他相关职位,13131592702, +王荣辉,27,本科,"我目前已离职, 可快速到岗",8000.0,10000.0,"工艺工程师,无机化工,有机化工,精细化工",18713472122, +刘同禹,30,大专,我目前正在职,考虑换个环境,5000.0,6000.0,"文员,硬件工程师,网络硬件其他相关职位",18631558615, +姚希烨,23,大专,"我目前已离职, 可快速到岗",5000.0,6000.0,"操作工/普工,应届毕业生,普工技工其他相关职位",18633325443, +高先生,41,本科,"我目前已离职, 可快速到岗",9000.0,10000.0,"机电一体化,工程经理/主管,工程设备工程师,设备经理/主管,工业工厂其他相关职位",13933476359, +张芳铭,29,不限,我目前正在职,考虑换个环境,0.0,0.0,电工/锅炉工,18714117412, +高宇,25,大专,"我目前已离职, 可快速到岗",0.0,0.0,档案管理,15373158665, +孙飞宇,29,本科,"我目前已离职, 可快速到岗",0.0,0.0,"会计助理,文员,出纳",15633977516, +高女士,32,本科,我目前正在职,考虑换个环境,5000.0,8000.0,"人事经理,行政经理,行政人事其他相关职位",18532503671, +女士,47,高中以下,"我目前已离职, 可快速到岗",4000.0,9000.0,工业工厂其他相关职位,15001005401, +毕文轩,28,大专,"我目前已离职, 可快速到岗",0.0,0.0,"人事助理,物业管理,仓库管理员",17736578597, +李明阳,22,本科,"我目前已离职, 可快速到岗",8000.0,10000.0,电气工程师,18134151697, +王猛,28,大专,"我目前已离职, 可快速到岗",8000.0,12000.0,"销售经理,销售主管",15100595409, +郑咏徽,16,大专,"我目前已离职, 可快速到岗",4000.0,5000.0,"电工/锅炉工,文员,管道(水、电),机电一体化,安全员",13273553623, +邢宝代,28,中专/技校,"我目前已离职, 可快速到岗",5000.0,8000.0,操作工/普工,17332835118, +赵曼,26,大专,"我目前已离职, 可快速到岗",3000.0,5000.0,"人事文员,行政文员,文员",13303349597, +李帆,33,本科,"我目前已离职, 可快速到岗",10000.0,15000.0,能源环保其他相关职位,18232580171, +宋女士,30,本科,"我目前已离职, 可快速到岗",3000.0,5000.0,"人事助理,行政助理,人事文员,行政文员,行政人事其他相关职位",17736543160, +刘景欣,36,大专,我目前正在职,考虑换个环境,5000.0,8000.0,"电气工程师,电工/锅炉工",19930055542, +李xx,24,大专,"我目前已离职, 可快速到岗",4000.0,5000.0,"营业员/店员,置业顾问,物业管理,服务员/收银员/迎宾,仓库管理员",13031553751, +乐子强,23,大专,"我目前已离职, 可快速到岗",0.0,0.0,"电气工程师,电工/锅炉工,工业工厂其他相关职位",15511951165, +杨建乐,36,大专,"我目前已离职, 可快速到岗",8000.0,12000.0,"电工/锅炉工,操作工/普工",15033463533, +王朝,37,大专,"我目前已离职, 可快速到岗",0.0,0.0,"行政经理,厂长/副厂长,生产经理",13832558785, +孙季阳,32,中专/技校,"我目前已离职, 可快速到岗",5000.0,7000.0,司机后勤其他相关职位,15102556611, +金先生,30,大专,我目前正在职,考虑换个环境,5000.0,8000.0,"生管主管/督导,计划员/调度员,安全主任,安全员,工业工厂其他相关职位",18532521663, +孙泽泉,45,大专,我目前正在职,考虑换个环境,5000.0,8000.0,"电工/锅炉工,操作工/普工,普工技工其他相关职位",13103258527, +江临,33,本科,"我目前已离职, 可快速到岗",0.0,0.0,"水利、水电,核电、火电,电厂、电力,能源环保其他相关职位",13722578791, +赵影,32,大专,我目前正在职,考虑换个环境,3000.0,5000.0,"行政助理,行政文员,客户服务",15033383977, +任长青,53,中专/技校,我目前正在职,考虑换个环境,0.0,0.0,普工技工其他相关职位,18032511802, +先生,62,不限,"我目前已离职, 可快速到岗",0.0,0.0,"保安,人事文员,行政文员,安全员",13582958606, +郭一帆,25,大专,"我目前已离职, 可快速到岗",,,其它相关职位,13231577871, +邢雅婷,23,大专,"我目前已离职, 可快速到岗",0.0,0.0,人事文员,17331579095, +曹文琪,33,本科,"我目前已离职, 可快速到岗",0.0,0.0,"档案管理,电脑操作员/打字员,文员,文职文员其他相关职位,测试工程师",13121174103, +聂灿,31,本科,"我目前已离职, 可快速到岗",5000.0,8000.0,"操作工/普工,司机",19930010655, +王建霞,35,本科,"我目前已离职, 可快速到岗",3000.0,5000.0,"销售主管,行政助理,招聘专员,行政人事其他相关职位,市场销售其他相关",13426090458, +赵绍鑫,38,大专,"我目前已离职, 可快速到岗",,,"电气维修,自动控制",15833534957, +聂新旺,23,大专,我是应届毕业生,0.0,0.0,应届毕业生,15503327285, +侯德宇,26,本科,"我目前已离职, 可快速到岗",0.0,0.0,应届毕业生,13031970785, +冯野,38,大专,"我目前已离职, 可快速到岗",3000.0,5000.0,"会计助理,出纳,会计财务其他相关职位,文体培训其他相关职位",15931510441, +刘子晔,28,不限,"我目前已离职, 可快速到岗",6000.0,8000.0,售前/售后支持,18713822511, +刘雅静,29,大专,我目前正在职,考虑换个环境,0.0,0.0,"人事经理,档案管理,会计",18231596068, +孙秋悦,30,大专,"我目前已离职, 可快速到岗",5000.0,8000.0,"行政文员,招投标,统计员",15930531215, +李先生,33,本科,"我目前已离职, 可快速到岗",6000.0,11000.0,销售经理,13091088301, +王心瑜,28,本科,"我目前已离职, 可快速到岗",4000.0,6000.0,"产品经理,产品/品牌企划,售前/售后支持,家具设计,采购员",18802419065, +白紫祎,26,大专,"我目前已离职, 可快速到岗",,,其它相关职位,19931423082, +刘建铖,19,高中以下,我目前正在职,考虑换个环境,3000.0,5000.0,"大堂经理/副理,服务员/收银员/迎宾",15230538512, +王丹雨,24,大专,"我目前已离职, 可快速到岗",3000.0,5000.0,"人事文员,热线咨询,话务员,文员,投诉处理",15383150933, +付建军,56,中专/技校,"我目前已离职, 可快速到岗",5000.0,6000.0,"物业管理,管理运营其他相关职位",15033982787, +李鹏雪,30,大专,"我目前已离职, 可快速到岗",3000.0,5000.0,"文职文员其他相关职位,行政人事其他相关职位,文体培训其他相关职位",13262759509, +冯工,45,高中以下,"我目前已离职, 可快速到岗",5000.0,7000.0,"水工/木工/油漆工,司机,护士/护理,叉车工,针灸推拿",18931483153, +蔡颖,23,大专,"我目前已离职, 可快速到岗",3000.0,4000.0,"仓库管理员,人事文员,行政文员,文员",19833993360, +赵乃萱,31,本科,"我目前已离职, 可快速到岗",0.0,0.0,"档案管理,人事文员,文员,仓库管理员,文体培训其他相关职位",13171520203, +张先生,27,大专,"我目前已离职, 可快速到岗",5000.0,8000.0,普工技工其他相关职位,, +张先生,31,硕士,"我目前已离职, 可快速到岗",8000.0,9000.0,大学教师,, +孙先生,26,本科,"我目前已离职, 可快速到岗",5000.0,6000.0,"电工/锅炉工,电厂、电力,电脑操作员/打字员",, +王女士,33,大专,"我目前已离职, 可快速到岗",0.0,0.0,"会计,电工/锅炉工",, +周先生,23,大专,"我目前已离职, 可快速到岗",0.0,0.0,"人事助理,人事文员",, +邢女士,32,大专,"我目前已离职, 可快速到岗",0.0,0.0,"人事经理,人事助理,文化艺术,行政助理,文员",, +张女士,31,大专,"我目前已离职, 可快速到岗",5000.0,6000.0,"人事文员,行政文员",, +马先生,49,高中,"我目前已离职, 可快速到岗",6000.0,7000.0,"电工/锅炉工,操作工/普工,钳、钣、铆、冲、焊、铸,普工技工其他相关职位",, +陶先生,37,大专,"我目前已离职, 可快速到岗",4000.0,5000.0,操作工/普工,, +刘先生,44,本科,我目前正在职,考虑换个环境,0.0,0.0,"电气工程师,自动控制",, +毕先生,37,大专,我目前正在职,考虑换个环境,6000.0,8000.0,电工/锅炉工,, +董女士,27,本科,"我目前已离职, 可快速到岗",5000.0,8000.0,"商务人员,国际业务,外贸员",, +静女士,27,本科,"我目前已离职, 可快速到岗",0.0,0.0,"行政文员,行政人事其他相关职位",, +李女士,35,本科,我目前正在职,考虑换个环境,0.0,0.0,"档案管理,大学教师,教务/教务管理,文体培训其他相关职位",, +齐先生,38,大专,我目前正在职,考虑换个环境,12000.0,20000.0,"机电一体化,机械仪表其他相关职位,工业工厂其他相关职位",, +李先生,37,高中,"我目前已离职, 可快速到岗",5000.0,8000.0,"制冷、暖通,能源环保其他相关职位,部门主管,项目经理,管理运营其他相关职位",, +郑先生,28,大专,我目前正在职,考虑换个环境,0.0,0.0,"电气工程师,测试工程师",, +林先生,40,本科,我目前正在职,考虑换个环境,5000.0,8000.0,"工程经理/主管,工程设备工程师,工业工厂其他相关职位",, +周女士,38,大专,"我目前已离职, 可快速到岗",,,"文职文员其他相关职位,行政人事其他相关职位,市场销售其他相关职位,客户服务其他相关职位",, +李先生,35,中专/技校,我目前正在职,考虑换个环境,5000.0,8000.0,"操作工/普工,石油/天燃气/储运,仓库管理员,工业工厂其他相关职位,普工技工其他相关职位",, +安女士,26,大专,"我目前已离职, 可快速到岗",3000.0,5000.0,"会计,会计助理,出纳,统计,其它相关职位",, +董先生,30,中专/技校,"我目前已离职, 可快速到岗",,,"操作工/普工,生管员,司机,叉车工,仓库管理员",, +丁女士,33,大专,"我目前已离职, 可快速到岗",0.0,0.0,"人事文员,行政人事其他相关职位",, +李女士,28,本科,"我目前已离职, 可快速到岗",3000.0,5000.0,行政文员,, diff --git a/web/cfdzp/resumes_护工_20250327_185425.csv b/web/cfdzp/resumes_护工_20250327_185425.csv new file mode 100644 index 0000000..080961f --- /dev/null +++ b/web/cfdzp/resumes_护工_20250327_185425.csv @@ -0,0 +1,101 @@ +name_value,age,edu_value,job_instant_value,job_salary_from,job_salary_to,categories,phone,real_name +李政伟,36,本科,"我目前已离职, 可快速到岗",10000.0,15000.0,"招聘经理/主任,测试工程师,经理助理,项目经理,储备干部",17600364716, +张伟,31,大专,我目前正在职,考虑换个环境,5000.0,8000.0,"电工/锅炉工,设备修理",15075586374, +孙晓磊,36,本科,我目前正在职,考虑换个环境,4000.0,8000.0,工业工厂其他相关职位,18332778778, +李女士,35,大专,"我目前已离职, 可快速到岗",4000.0,7000.0,"保安,文员,招投标",18203357869, +刘先生,34,大专,"我目前已离职, 可快速到岗",0.0,0.0,部门主管,16643562515, +嘉嘉,24,高中,"我目前已离职, 可快速到岗",0.0,0.0,销售助理,18134247015, +王女士_324932,46,不限,"我目前已离职, 可快速到岗",,,护士/护理,15830585203, +李先生,39,大专,"我目前已离职, 可快速到岗",6000.0,8000.0,"物业管理,项目经理,招投标",18033572860, +于萍,23,大专,我目前正在职,考虑换个环境,0.0,0.0,"人事文员,行政文员,前台接待,文员,文职文员其他相关职位",15132578638, +王德梅,58,高中,"我目前已离职, 可快速到岗",,,其它相关职位,17736517991, +董鑫,36,本科,"我目前已离职, 可快速到岗",7000.0,8000.0,"行政经理,行政助理,行政外联专员",15833464006, +杨小雪,33,大专,我目前正在职,考虑换个环境,2000.0,4000.0,文员,17796957849, +卫庆,32,中专/技校,"我目前已离职, 可快速到岗",5000.0,6000.0,司机,15127515220, +韩子建,34,本科,我目前正在职,考虑换个环境,7000.0,12000.0,电工/锅炉工,18903152186, +陈光,33,大专,我目前正在职,考虑换个环境,5000.0,6000.0,操作工/普工,15032902921, +高倩,24,本科,我目前正在职,考虑换个环境,4000.0,7000.0,"行政文员,市场销售其他相关职位,应届毕业生,教务/教务管理,文体培训其他相关职位",19930024957, +张女士,34,大专,"我目前已离职, 可快速到岗",0.0,0.0,"档案管理,物业管理,人事文员,行政文员",13472959755, +成浩,34,本科,"我目前已离职, 可快速到岗",4000.0,6000.0,会计,16631565969, +刘志杰,24,大专,我目前正在职,考虑换个环境,4000.0,5000.0,"电气工程师,电工/锅炉工,电器工程师,电气维修,自动控制",13230526763, +李先生,34,本科,"我目前已离职, 可快速到岗",5000.0,8000.0,"产品工艺/制程工程师,工业工厂其他相关职位",15632548320, +高先生,41,本科,"我目前已离职, 可快速到岗",9000.0,10000.0,"机电一体化,工程经理/主管,工程设备工程师,设备经理/主管,工业工厂其他相关职位",13933476359, +姚希烨,23,大专,"我目前已离职, 可快速到岗",5000.0,6000.0,"操作工/普工,应届毕业生,普工技工其他相关职位",18633325443, +王朝,38,大专,"我目前已离职, 可快速到岗",8000.0,12000.0,生产经理,15832531755, +夏铭飞,25,大专,我目前正在职,考虑换个环境,6000.0,9000.0,电工/锅炉工,18132674564, +刘同禹,30,大专,我目前正在职,考虑换个环境,5000.0,6000.0,"文员,硬件工程师,网络硬件其他相关职位",18631558615, +艾顺坤,31,大专,我目前正在职,考虑换个环境,6000.0,8000.0,"操作工/普工,组长/拉长,计划员/调度员",15931517465, +郑忆新,49,高中以下,"我目前已离职, 可快速到岗",1000.0,2000.0,餐饮休闲其他相关职位,13131592702, +李小芹,39,高中以下,"我目前已离职, 可快速到岗",,,"物流主管,推(营、促)销员,市场销售其他相关",15732594271, +王荣辉,27,本科,"我目前已离职, 可快速到岗",8000.0,10000.0,"工艺工程师,无机化工,有机化工,精细化工",18713472122, +张芳铭,29,不限,我目前正在职,考虑换个环境,0.0,0.0,电工/锅炉工,18714117412, +赵曼,26,大专,"我目前已离职, 可快速到岗",3000.0,5000.0,"人事文员,行政文员,文员",13303349597, +邢宝代,28,中专/技校,"我目前已离职, 可快速到岗",5000.0,8000.0,操作工/普工,17332835118, +王猛,28,大专,"我目前已离职, 可快速到岗",8000.0,12000.0,"销售经理,销售主管",15100595409, +孙飞宇,29,本科,"我目前已离职, 可快速到岗",0.0,0.0,"会计助理,文员,出纳",15633977516, +女士,47,高中以下,"我目前已离职, 可快速到岗",4000.0,9000.0,工业工厂其他相关职位,15001005401, +高女士,32,本科,我目前正在职,考虑换个环境,5000.0,8000.0,"人事经理,行政经理,行政人事其他相关职位",18532503671, +李明阳,22,本科,"我目前已离职, 可快速到岗",8000.0,10000.0,电气工程师,18134151697, +郑咏徽,16,大专,"我目前已离职, 可快速到岗",4000.0,5000.0,"电工/锅炉工,文员,管道(水、电),机电一体化,安全员",13273553623, +高宇,25,大专,"我目前已离职, 可快速到岗",0.0,0.0,档案管理,15373158665, +毕文轩,28,大专,"我目前已离职, 可快速到岗",0.0,0.0,"人事助理,物业管理,仓库管理员",17736578597, +孙泽泉,45,大专,我目前正在职,考虑换个环境,5000.0,8000.0,"电工/锅炉工,操作工/普工,普工技工其他相关职位",13103258527, +宋女士,30,本科,"我目前已离职, 可快速到岗",3000.0,5000.0,"人事助理,行政助理,人事文员,行政文员,行政人事其他相关职位",17736543160, +杨建乐,36,大专,"我目前已离职, 可快速到岗",8000.0,12000.0,"电工/锅炉工,操作工/普工",15033463533, +李帆,33,本科,"我目前已离职, 可快速到岗",10000.0,15000.0,能源环保其他相关职位,18232580171, +乐子强,23,大专,"我目前已离职, 可快速到岗",0.0,0.0,"电气工程师,电工/锅炉工,工业工厂其他相关职位",15511951165, +李xx,24,大专,"我目前已离职, 可快速到岗",4000.0,5000.0,"营业员/店员,置业顾问,物业管理,服务员/收银员/迎宾,仓库管理员",13031553751, +王朝,37,大专,"我目前已离职, 可快速到岗",0.0,0.0,"行政经理,厂长/副厂长,生产经理",13832558785, +刘景欣,36,大专,我目前正在职,考虑换个环境,5000.0,8000.0,"电气工程师,电工/锅炉工",19930055542, +孙季阳,32,中专/技校,"我目前已离职, 可快速到岗",5000.0,7000.0,司机后勤其他相关职位,15102556611, +金先生,30,大专,我目前正在职,考虑换个环境,5000.0,8000.0,"生管主管/督导,计划员/调度员,安全主任,安全员,工业工厂其他相关职位",18532521663, +赵影,32,大专,我目前正在职,考虑换个环境,3000.0,5000.0,"行政助理,行政文员,客户服务",15033383977, +先生,62,不限,"我目前已离职, 可快速到岗",0.0,0.0,"保安,人事文员,行政文员,安全员",13582958606, +江临,33,本科,"我目前已离职, 可快速到岗",0.0,0.0,"水利、水电,核电、火电,电厂、电力,能源环保其他相关职位",13722578791, +任长青,53,中专/技校,我目前正在职,考虑换个环境,0.0,0.0,普工技工其他相关职位,18032511802, +赵绍鑫,38,大专,"我目前已离职, 可快速到岗",,,"电气维修,自动控制",15833534957, +郭一帆,25,大专,"我目前已离职, 可快速到岗",,,其它相关职位,13231577871, +聂灿,31,本科,"我目前已离职, 可快速到岗",5000.0,8000.0,"操作工/普工,司机",19930010655, +王建霞,35,本科,"我目前已离职, 可快速到岗",3000.0,5000.0,"销售主管,行政助理,招聘专员,行政人事其他相关职位,市场销售其他相关",13426090458, +邢雅婷,23,大专,"我目前已离职, 可快速到岗",0.0,0.0,人事文员,17331579095, +曹文琪,33,本科,"我目前已离职, 可快速到岗",0.0,0.0,"档案管理,电脑操作员/打字员,文员,文职文员其他相关职位,测试工程师",13121174103, +李先生,33,本科,"我目前已离职, 可快速到岗",6000.0,11000.0,销售经理,13091088301, +刘雅静,29,大专,我目前正在职,考虑换个环境,0.0,0.0,"人事经理,档案管理,会计",18231596068, +王心瑜,28,本科,"我目前已离职, 可快速到岗",4000.0,6000.0,"产品经理,产品/品牌企划,售前/售后支持,家具设计,采购员",18802419065, +冯野,38,大专,"我目前已离职, 可快速到岗",3000.0,5000.0,"会计助理,出纳,会计财务其他相关职位,文体培训其他相关职位",15931510441, +刘建铖,19,高中以下,我目前正在职,考虑换个环境,3000.0,5000.0,"大堂经理/副理,服务员/收银员/迎宾",15230538512, +白紫祎,26,大专,"我目前已离职, 可快速到岗",,,其它相关职位,19931423082, +刘子晔,28,不限,"我目前已离职, 可快速到岗",6000.0,8000.0,售前/售后支持,18713822511, +侯德宇,26,本科,"我目前已离职, 可快速到岗",0.0,0.0,应届毕业生,13031970785, +孙秋悦,30,大专,"我目前已离职, 可快速到岗",5000.0,8000.0,"行政文员,招投标,统计员",15930531215, +聂新旺,23,大专,我是应届毕业生,0.0,0.0,应届毕业生,15503327285, +张先生,31,硕士,"我目前已离职, 可快速到岗",8000.0,9000.0,大学教师,, +冯工,45,高中以下,"我目前已离职, 可快速到岗",5000.0,7000.0,"水工/木工/油漆工,司机,护士/护理,叉车工,针灸推拿",18931483153, +王丹雨,24,大专,"我目前已离职, 可快速到岗",3000.0,5000.0,"人事文员,热线咨询,话务员,文员,投诉处理",15383150933, +蔡颖,23,大专,"我目前已离职, 可快速到岗",3000.0,4000.0,"仓库管理员,人事文员,行政文员,文员",19833993360, +付建军,56,中专/技校,"我目前已离职, 可快速到岗",5000.0,6000.0,"物业管理,管理运营其他相关职位",15033982787, +赵乃萱,31,本科,"我目前已离职, 可快速到岗",0.0,0.0,"档案管理,人事文员,文员,仓库管理员,文体培训其他相关职位",13171520203, +李鹏雪,30,大专,"我目前已离职, 可快速到岗",3000.0,5000.0,"文职文员其他相关职位,行政人事其他相关职位,文体培训其他相关职位",13262759509, +王女士,33,大专,"我目前已离职, 可快速到岗",0.0,0.0,"会计,电工/锅炉工",, +张先生,27,大专,"我目前已离职, 可快速到岗",5000.0,8000.0,普工技工其他相关职位,, +孙先生,26,本科,"我目前已离职, 可快速到岗",5000.0,6000.0,"电工/锅炉工,电厂、电力,电脑操作员/打字员",, +静女士,27,本科,"我目前已离职, 可快速到岗",0.0,0.0,"行政文员,行政人事其他相关职位",, +陶先生,37,大专,"我目前已离职, 可快速到岗",4000.0,5000.0,操作工/普工,, +马先生,49,高中,"我目前已离职, 可快速到岗",6000.0,7000.0,"电工/锅炉工,操作工/普工,钳、钣、铆、冲、焊、铸,普工技工其他相关职位",, +李女士,35,本科,我目前正在职,考虑换个环境,0.0,0.0,"档案管理,大学教师,教务/教务管理,文体培训其他相关职位",, +董女士,27,本科,"我目前已离职, 可快速到岗",5000.0,8000.0,"商务人员,国际业务,外贸员",, +周先生,23,大专,"我目前已离职, 可快速到岗",0.0,0.0,"人事助理,人事文员",, +张女士,31,大专,"我目前已离职, 可快速到岗",5000.0,6000.0,"人事文员,行政文员",, +毕先生,37,大专,我目前正在职,考虑换个环境,6000.0,8000.0,电工/锅炉工,, +邢女士,32,大专,"我目前已离职, 可快速到岗",0.0,0.0,"人事经理,人事助理,文化艺术,行政助理,文员",, +刘先生,44,本科,我目前正在职,考虑换个环境,0.0,0.0,"电气工程师,自动控制",, +齐先生,38,大专,我目前正在职,考虑换个环境,12000.0,20000.0,"机电一体化,机械仪表其他相关职位,工业工厂其他相关职位",, +郑先生,28,大专,我目前正在职,考虑换个环境,0.0,0.0,"电气工程师,测试工程师",, +董先生,30,中专/技校,"我目前已离职, 可快速到岗",,,"操作工/普工,生管员,司机,叉车工,仓库管理员",, +丁女士,33,大专,"我目前已离职, 可快速到岗",0.0,0.0,"人事文员,行政人事其他相关职位",, +李先生,35,中专/技校,我目前正在职,考虑换个环境,5000.0,8000.0,"操作工/普工,石油/天燃气/储运,仓库管理员,工业工厂其他相关职位,普工技工其他相关职位",, +安女士,26,大专,"我目前已离职, 可快速到岗",3000.0,5000.0,"会计,会计助理,出纳,统计,其它相关职位",, +周女士,38,大专,"我目前已离职, 可快速到岗",,,"文职文员其他相关职位,行政人事其他相关职位,市场销售其他相关职位,客户服务其他相关职位",, +李女士,28,本科,"我目前已离职, 可快速到岗",3000.0,5000.0,行政文员,, +李先生,37,高中,"我目前已离职, 可快速到岗",5000.0,8000.0,"制冷、暖通,能源环保其他相关职位,部门主管,项目经理,管理运营其他相关职位",, +林先生,40,本科,我目前正在职,考虑换个环境,5000.0,8000.0,"工程经理/主管,工程设备工程师,工业工厂其他相关职位",, diff --git a/web/cfdzp/resumes_护工_20250327_192414.csv b/web/cfdzp/resumes_护工_20250327_192414.csv new file mode 100644 index 0000000..590c6ae --- /dev/null +++ b/web/cfdzp/resumes_护工_20250327_192414.csv @@ -0,0 +1,101 @@ +name_value,age,edu_value,job_instant_value,job_salary_from,job_salary_to,categories,phone,real_name +孙先生,36,本科,我目前正在职,考虑换个环境,4000.0,8000.0,工业工厂其他相关职位,18332778778,孙晓磊 +李先生,39,大专,"我目前已离职, 可快速到岗",6000.0,8000.0,"物业管理,项目经理,招投标",18033572860,李先生 +张先生,31,大专,我目前正在职,考虑换个环境,5000.0,8000.0,"电工/锅炉工,设备修理",15075586374,张伟 +王女士,58,高中,"我目前已离职, 可快速到岗",,,其它相关职位,17736517991,王德梅 +嘉女士,24,高中,"我目前已离职, 可快速到岗",0.0,0.0,销售助理,18134247015,嘉嘉 +李女士,35,大专,"我目前已离职, 可快速到岗",4000.0,7000.0,"保安,文员,招投标",18203357869,李女士 +于女士,23,大专,我目前正在职,考虑换个环境,0.0,0.0,"人事文员,行政文员,前台接待,文员,文职文员其他相关职位",15132578638,于萍 +王女士,46,不限,"我目前已离职, 可快速到岗",,,护士/护理,15830585203,王女士_324932 +刘先生,34,大专,"我目前已离职, 可快速到岗",0.0,0.0,部门主管,16643562515,刘先生 +李先生,36,本科,"我目前已离职, 可快速到岗",10000.0,15000.0,"招聘经理/主任,测试工程师,经理助理,项目经理,储备干部",17600364716,李政伟 +卫先生,32,中专/技校,"我目前已离职, 可快速到岗",5000.0,6000.0,司机,15127515220,卫庆 +董先生,36,本科,"我目前已离职, 可快速到岗",7000.0,8000.0,"行政经理,行政助理,行政外联专员",15833464006,董鑫 +高女士,24,本科,我目前正在职,考虑换个环境,4000.0,7000.0,"行政文员,市场销售其他相关职位,应届毕业生,教务/教务管理,文体培训其他相关职位",19930024957,高倩 +韩先生,34,本科,我目前正在职,考虑换个环境,7000.0,12000.0,电工/锅炉工,18903152186,韩子建 +陈先生,33,大专,我目前正在职,考虑换个环境,5000.0,6000.0,操作工/普工,15032902921,陈光 +李先生,34,本科,"我目前已离职, 可快速到岗",5000.0,8000.0,"产品工艺/制程工程师,工业工厂其他相关职位",15632548320,李先生 +刘先生,24,大专,我目前正在职,考虑换个环境,4000.0,5000.0,"电气工程师,电工/锅炉工,电器工程师,电气维修,自动控制",13230526763,刘志杰 +成先生,34,本科,"我目前已离职, 可快速到岗",4000.0,6000.0,会计,16631565969,成浩 +杨女士,33,大专,我目前正在职,考虑换个环境,2000.0,4000.0,文员,17796957849,杨小雪 +张女士,34,大专,"我目前已离职, 可快速到岗",0.0,0.0,"档案管理,物业管理,人事文员,行政文员",13472959755,张女士 +高先生,41,本科,"我目前已离职, 可快速到岗",9000.0,10000.0,"机电一体化,工程经理/主管,工程设备工程师,设备经理/主管,工业工厂其他相关职位",13933476359,高先生 +艾先生,31,大专,我目前正在职,考虑换个环境,6000.0,8000.0,"操作工/普工,组长/拉长,计划员/调度员",15931517465,艾顺坤 +郑女士,49,高中以下,"我目前已离职, 可快速到岗",1000.0,2000.0,餐饮休闲其他相关职位,13131592702,郑忆新 +王先生,27,本科,"我目前已离职, 可快速到岗",8000.0,10000.0,"工艺工程师,无机化工,有机化工,精细化工",18713472122,王荣辉 +王先生,38,大专,"我目前已离职, 可快速到岗",8000.0,12000.0,生产经理,15832531755,王朝 +姚先生,23,大专,"我目前已离职, 可快速到岗",5000.0,6000.0,"操作工/普工,应届毕业生,普工技工其他相关职位",18633325443,姚希烨 +张先生,29,不限,我目前正在职,考虑换个环境,0.0,0.0,电工/锅炉工,18714117412,张芳铭 +李女士,39,高中以下,"我目前已离职, 可快速到岗",,,"物流主管,推(营、促)销员,市场销售其他相关",15732594271,李小芹 +刘先生,30,大专,我目前正在职,考虑换个环境,5000.0,6000.0,"文员,硬件工程师,网络硬件其他相关职位",18631558615,刘同禹 +夏先生,25,大专,我目前正在职,考虑换个环境,6000.0,9000.0,电工/锅炉工,18132674564,夏铭飞 +邢先生,28,中专/技校,"我目前已离职, 可快速到岗",5000.0,8000.0,操作工/普工,17332835118,邢宝代 +郑先生,16,大专,"我目前已离职, 可快速到岗",4000.0,5000.0,"电工/锅炉工,文员,管道(水、电),机电一体化,安全员",13273553623,郑咏徽 +孙女士,29,本科,"我目前已离职, 可快速到岗",0.0,0.0,"会计助理,文员,出纳",15633977516,孙飞宇 +李先生,22,本科,"我目前已离职, 可快速到岗",8000.0,10000.0,电气工程师,18134151697,李明阳 +赵女士,26,大专,"我目前已离职, 可快速到岗",3000.0,5000.0,"人事文员,行政文员,文员",13303349597,赵曼 +毕先生,28,大专,"我目前已离职, 可快速到岗",0.0,0.0,"人事助理,物业管理,仓库管理员",17736578597,毕文轩 +王先生,28,大专,"我目前已离职, 可快速到岗",8000.0,12000.0,"销售经理,销售主管",15100595409,王猛 +高先生,25,大专,"我目前已离职, 可快速到岗",0.0,0.0,档案管理,15373158665,高宇 +高女士,32,本科,我目前正在职,考虑换个环境,5000.0,8000.0,"人事经理,行政经理,行政人事其他相关职位",18532503671,高女士 +女女士,47,高中以下,"我目前已离职, 可快速到岗",4000.0,9000.0,工业工厂其他相关职位,15001005401,女士 +王先生,37,大专,"我目前已离职, 可快速到岗",0.0,0.0,"行政经理,厂长/副厂长,生产经理",13832558785,王朝 +杨先生,36,大专,"我目前已离职, 可快速到岗",8000.0,12000.0,"电工/锅炉工,操作工/普工",15033463533,杨建乐 +李女士,24,大专,"我目前已离职, 可快速到岗",4000.0,5000.0,"营业员/店员,置业顾问,物业管理,服务员/收银员/迎宾,仓库管理员",13031553751,李xx +乐先生,23,大专,"我目前已离职, 可快速到岗",0.0,0.0,"电气工程师,电工/锅炉工,工业工厂其他相关职位",15511951165,乐子强 +金先生,30,大专,我目前正在职,考虑换个环境,5000.0,8000.0,"生管主管/督导,计划员/调度员,安全主任,安全员,工业工厂其他相关职位",18532521663,金先生 +刘先生,36,大专,我目前正在职,考虑换个环境,5000.0,8000.0,"电气工程师,电工/锅炉工",19930055542,刘景欣 +孙先生,45,大专,我目前正在职,考虑换个环境,5000.0,8000.0,"电工/锅炉工,操作工/普工,普工技工其他相关职位",13103258527,孙泽泉 +宋女士,30,本科,"我目前已离职, 可快速到岗",3000.0,5000.0,"人事助理,行政助理,人事文员,行政文员,行政人事其他相关职位",17736543160,宋女士 +孙先生,32,中专/技校,"我目前已离职, 可快速到岗",5000.0,7000.0,司机后勤其他相关职位,15102556611,孙季阳 +李先生,33,本科,"我目前已离职, 可快速到岗",10000.0,15000.0,能源环保其他相关职位,18232580171,李帆 +聂先生,31,本科,"我目前已离职, 可快速到岗",5000.0,8000.0,"操作工/普工,司机",19930010655,聂灿 +江先生,33,本科,"我目前已离职, 可快速到岗",0.0,0.0,"水利、水电,核电、火电,电厂、电力,能源环保其他相关职位",13722578791,江临 +赵先生,38,大专,"我目前已离职, 可快速到岗",,,"电气维修,自动控制",15833534957,赵绍鑫 +王女士,35,本科,"我目前已离职, 可快速到岗",3000.0,5000.0,"销售主管,行政助理,招聘专员,行政人事其他相关职位,市场销售其他相关",13426090458,王建霞 +郭女士,25,大专,"我目前已离职, 可快速到岗",,,其它相关职位,13231577871,郭一帆 +先先生,62,不限,"我目前已离职, 可快速到岗",0.0,0.0,"保安,人事文员,行政文员,安全员",13582958606,先生 +赵女士,32,大专,我目前正在职,考虑换个环境,3000.0,5000.0,"行政助理,行政文员,客户服务",15033383977,赵影 +任先生,53,中专/技校,我目前正在职,考虑换个环境,0.0,0.0,普工技工其他相关职位,18032511802,任长青 +邢女士,23,大专,"我目前已离职, 可快速到岗",0.0,0.0,人事文员,17331579095,邢雅婷 +曹先生,33,本科,"我目前已离职, 可快速到岗",0.0,0.0,"档案管理,电脑操作员/打字员,文员,文职文员其他相关职位,测试工程师",13121174103,曹文琪 +侯先生,26,本科,"我目前已离职, 可快速到岗",0.0,0.0,应届毕业生,13031970785,侯德宇 +刘先生,19,高中以下,我目前正在职,考虑换个环境,3000.0,5000.0,"大堂经理/副理,服务员/收银员/迎宾",15230538512,刘建铖 +王女士,28,本科,"我目前已离职, 可快速到岗",4000.0,6000.0,"产品经理,产品/品牌企划,售前/售后支持,家具设计,采购员",18802419065,王心瑜 +白女士,26,大专,"我目前已离职, 可快速到岗",,,其它相关职位,19931423082,白紫祎 +聂先生,23,大专,我是应届毕业生,0.0,0.0,应届毕业生,15503327285,聂新旺 +李先生,33,本科,"我目前已离职, 可快速到岗",6000.0,11000.0,销售经理,13091088301,李先生 +刘先生,28,不限,"我目前已离职, 可快速到岗",6000.0,8000.0,售前/售后支持,18713822511,刘子晔 +孙女士,30,大专,"我目前已离职, 可快速到岗",5000.0,8000.0,"行政文员,招投标,统计员",15930531215,孙秋悦 +冯女士,38,大专,"我目前已离职, 可快速到岗",3000.0,5000.0,"会计助理,出纳,会计财务其他相关职位,文体培训其他相关职位",15931510441,冯野 +刘女士,29,大专,我目前正在职,考虑换个环境,0.0,0.0,"人事经理,档案管理,会计",18231596068,刘雅静 +王女士,24,大专,"我目前已离职, 可快速到岗",3000.0,5000.0,"人事文员,热线咨询,话务员,文员,投诉处理",15383150933,王丹雨 +付先生,56,中专/技校,"我目前已离职, 可快速到岗",5000.0,6000.0,"物业管理,管理运营其他相关职位",15033982787,付建军 +孙先生,26,本科,"我目前已离职, 可快速到岗",5000.0,6000.0,"电工/锅炉工,电厂、电力,电脑操作员/打字员",,孙先生 +冯先生,45,高中以下,"我目前已离职, 可快速到岗",5000.0,7000.0,"水工/木工/油漆工,司机,护士/护理,叉车工,针灸推拿",18931483153,冯工 +李女士,30,大专,"我目前已离职, 可快速到岗",3000.0,5000.0,"文职文员其他相关职位,行政人事其他相关职位,文体培训其他相关职位",13262759509,李鹏雪 +张先生,31,硕士,"我目前已离职, 可快速到岗",8000.0,9000.0,大学教师,,张先生 +蔡女士,23,大专,"我目前已离职, 可快速到岗",3000.0,4000.0,"仓库管理员,人事文员,行政文员,文员",19833993360,蔡颖 +王女士,33,大专,"我目前已离职, 可快速到岗",0.0,0.0,"会计,电工/锅炉工",,王女士 +赵女士,31,本科,"我目前已离职, 可快速到岗",0.0,0.0,"档案管理,人事文员,文员,仓库管理员,文体培训其他相关职位",13171520203,赵乃萱 +张先生,27,大专,"我目前已离职, 可快速到岗",5000.0,8000.0,普工技工其他相关职位,,张先生 +刘先生,44,本科,我目前正在职,考虑换个环境,0.0,0.0,"电气工程师,自动控制",,刘先生 +静女士,27,本科,"我目前已离职, 可快速到岗",0.0,0.0,"行政文员,行政人事其他相关职位",,静女士 +邢女士,32,大专,"我目前已离职, 可快速到岗",0.0,0.0,"人事经理,人事助理,文化艺术,行政助理,文员",,邢女士 +毕先生,37,大专,我目前正在职,考虑换个环境,6000.0,8000.0,电工/锅炉工,,毕先生 +董女士,27,本科,"我目前已离职, 可快速到岗",5000.0,8000.0,"商务人员,国际业务,外贸员",,董女士 +张女士,31,大专,"我目前已离职, 可快速到岗",5000.0,6000.0,"人事文员,行政文员",,张女士 +马先生,49,高中,"我目前已离职, 可快速到岗",6000.0,7000.0,"电工/锅炉工,操作工/普工,钳、钣、铆、冲、焊、铸,普工技工其他相关职位",,马先生 +周先生,23,大专,"我目前已离职, 可快速到岗",0.0,0.0,"人事助理,人事文员",,周先生 +李女士,35,本科,我目前正在职,考虑换个环境,0.0,0.0,"档案管理,大学教师,教务/教务管理,文体培训其他相关职位",,李女士 +陶先生,37,大专,"我目前已离职, 可快速到岗",4000.0,5000.0,操作工/普工,,陶先生 +李先生,35,中专/技校,我目前正在职,考虑换个环境,5000.0,8000.0,"操作工/普工,石油/天燃气/储运,仓库管理员,工业工厂其他相关职位,普工技工其他相关职位",,李先生 +丁女士,33,大专,"我目前已离职, 可快速到岗",0.0,0.0,"人事文员,行政人事其他相关职位",,丁女士 +林先生,40,本科,我目前正在职,考虑换个环境,5000.0,8000.0,"工程经理/主管,工程设备工程师,工业工厂其他相关职位",,林先生 +周女士,38,大专,"我目前已离职, 可快速到岗",,,"文职文员其他相关职位,行政人事其他相关职位,市场销售其他相关职位,客户服务其他相关职位",,周女士 +李女士,28,本科,"我目前已离职, 可快速到岗",3000.0,5000.0,行政文员,,李女士 +李先生,37,高中,"我目前已离职, 可快速到岗",5000.0,8000.0,"制冷、暖通,能源环保其他相关职位,部门主管,项目经理,管理运营其他相关职位",,李先生 +安女士,26,大专,"我目前已离职, 可快速到岗",3000.0,5000.0,"会计,会计助理,出纳,统计,其它相关职位",,安女士 +齐先生,38,大专,我目前正在职,考虑换个环境,12000.0,20000.0,"机电一体化,机械仪表其他相关职位,工业工厂其他相关职位",,齐先生 +董先生,30,中专/技校,"我目前已离职, 可快速到岗",,,"操作工/普工,生管员,司机,叉车工,仓库管理员",,董先生 +郑先生,28,大专,我目前正在职,考虑换个环境,0.0,0.0,"电气工程师,测试工程师",,郑先生 diff --git a/web/dailymotion_com/conversion_time.py b/web/dailymotion_com/conversion_time.py new file mode 100644 index 0000000..4401d5b --- /dev/null +++ b/web/dailymotion_com/conversion_time.py @@ -0,0 +1,39 @@ +import pandas as pd +import pytz + +input_path = "xid_dedup.xlsx" +output_path = "id_dedup_时间格式化.xlsx" + +video_df = pd.read_excel(input_path, sheet_name="视频信息") +user_df = pd.read_excel(input_path, sheet_name="用户信息") + +def convert_to_east8(dt): + try: + dt = pd.to_datetime(dt, errors='coerce', utc=True) + return dt.tz_convert("Asia/Shanghai") if pd.notna(dt) else None + except Exception: + return None + +# 1. 转东八区 +video_df["添加时间"] = video_df["添加时间"].apply(convert_to_east8) + +# 2. 去除时区并格式化为字符串 +video_df["添加时间"] = video_df["添加时间"].dt.tz_localize(None).dt.strftime("%Y-%m-%d %H:%M:%S") + +# 3. 转换时长为 mm:ss +def format_duration(seconds): + try: + seconds = int(seconds) + minutes = seconds // 60 + remain = seconds % 60 + return f"{minutes}:{remain:02d}" + except Exception: + return None + +video_df["时长 (秒)"] = video_df["时长 (秒)"].apply(format_duration) + +with pd.ExcelWriter(output_path, engine="openpyxl") as writer: + video_df.to_excel(writer, sheet_name="视频信息", index=False) + user_df.to_excel(writer, sheet_name="用户信息", index=False) + +print(f"✅ 处理完成,结果保存为:{output_path}") diff --git a/web/dailymotion_com/csrf_token.py b/web/dailymotion_com/csrf_token.py new file mode 100644 index 0000000..d7080ea --- /dev/null +++ b/web/dailymotion_com/csrf_token.py @@ -0,0 +1,34 @@ +import requests + +cookies = { + '__cf_bm': 'dfG1B_FG413nDSGYQTYkWU176T0KJojCUPr8UDo4MXw-1748354550-1.0.1.1-Lt_7svNQuvIgT4Z_2d6RQfFVmzXp_CW38JsBxjmKQ_K88.jY5BYcy6Hv4y3k.BnUxDddV.uq92I8dROoZuNCQWAmBk7C4Ev2IlmqO.i4HJo', + '_cfuvid': 'fGc1QZvNM1jFmpbWBdMuP4dt8iW5v.s7cjizbdVyADg-1748354550248-0.0.1.1-604800000', + '_zendesk_session': 'dG52k29ixnhUsRbhaWpjJLXe%2BH8r8tLF0K7cfCz6sW%2Bd9mkkFwxI7AG7cDyUxzhQAVykNdU34x8Fw90O2dvrXALF72aIies%2Frn0zc8QyUT0I2eZqzozv1IPMKu9nPdK1KrHiK2WnfhgyxE5u5FiyG8ALoTgBHiyj96pert5Hb7SockbT2fsEp%2BPG1w1OfqMVbw9RFUwSJMwxzeMw6dS2640AKhdkxXRF6UPz%2BB2UITI%3D--TlOUUXSOxKJMRzMf--2jiXyQeDlpBjXXWyBzwxCA%3D%3D', + '_help_center_session': 'a3hDOWxiSzV6b28yM2dzY25xd2NQUE4wZGViYTNNUUZZMzc1ZG44TnB3T3I5L2R1Y1RkVlg3RWFPbXVtWVRJNitpV2RGdXU5Y1hRTjZsTHo2UkxoWDlEUFZRY1ZPMk5leHUrUGlRTVFDNG40RjdlUlJYb0R4eHlvV0hCN2p6d0crRlMyMXdJdEJ5ZWtGVncvekV6QzBTRi8vK0FwSUxmYVByOEFuNFZKNHlHL0YrMmtndFhpVEUwekJlRkFWMWhHZ0V5ZXk1eXpPcjZFZ3dJbGhkNm5udz09LS1MNmlnMWgxYkhpRDlrSlh6Z3h2Y253PT0%3D--297fc9e633156720ef1b3e6268745e6d32e6ea1b', +} + +headers = { + 'accept': '*/*', + 'accept-language': 'zh-CN,zh;q=0.9', + 'cache-control': 'no-cache', + 'pragma': 'no-cache', + 'priority': 'u=1, i', + 'referer': 'https://faq.dailymotion.com/hc/en-us/requests/new?ticket_form_id=136048', + 'sec-ch-ua': '"Chromium";v="136", "Google Chrome";v="136", "Not.A/Brand";v="99"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-platform': '"Windows"', + 'sec-fetch-dest': 'empty', + 'sec-fetch-mode': 'cors', + 'sec-fetch-site': 'same-origin', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', +} +proxies = { + 'http': 'http://127.0.0.1:10808', + 'https': 'http://127.0.0.1:10808', +} +response = requests.get('https://faq.dailymotion.com/hc/api/internal/csrf_token.json', cookies=None, headers=headers, + proxies=proxies) + +json_data = response.json() +csrf_token = json_data['current_session']['csrf_token'] +print(csrf_token) diff --git a/web/dailymotion_com/dailymotion_api/test.py b/web/dailymotion_com/dailymotion_api/test.py new file mode 100644 index 0000000..62b36c3 --- /dev/null +++ b/web/dailymotion_com/dailymotion_api/test.py @@ -0,0 +1,23 @@ +import requests + +# 1. 公共 API 地址(无需 token) +endpoint = 'https://api.dailymotion.com/videos' + +# 2. 构造查询参数: +# - search:搜索关键词 +# - fields:只取 id 和 title 两个字段 +# - limit:最多返回 5 条 +params = { + 'search': '郭德纲', + 'fields': 'id,title,created_time,thumbnail_240_url,duration,owner.id,owner.screenname,likes_total,views_total,owner.avatar_60_url,owner.followers_total,owner.videos_total', + 'limit': 5, + 'page': 2, + 'sort': "relevance" +} + +# 3. 发起 GET 请求 +response = requests.get(endpoint, params=params) + +# 4. 将结果转为 JSON 并打印 +data = response.json() +print(data) diff --git a/web/dailymotion_com/dailymotion_com.zip b/web/dailymotion_com/dailymotion_com.zip new file mode 100644 index 0000000..854e1b1 Binary files /dev/null and b/web/dailymotion_com/dailymotion_com.zip differ diff --git a/web/dailymotion_com/deduplicateby_xid.py b/web/dailymotion_com/deduplicateby_xid.py new file mode 100644 index 0000000..11fdfc7 --- /dev/null +++ b/web/dailymotion_com/deduplicateby_xid.py @@ -0,0 +1,20 @@ +import pandas as pd + +# 读取目标文件 +input_path = "merge.xlsx" +output_path = "xid_dedup.xlsx" + +# 读取两个 sheet +video_df = pd.read_excel(input_path, sheet_name="视频信息") +user_df = pd.read_excel(input_path, sheet_name="用户信息") + +# 按 xid 去重,保留第一条记录 +video_df_dedup = video_df.drop_duplicates(subset="xid", keep="first") +user_df_dedup = user_df.drop_duplicates(subset="xid", keep="first") + +# 写入去重后的新文件 +with pd.ExcelWriter(output_path, engine="openpyxl") as writer: + video_df_dedup.to_excel(writer, sheet_name="视频信息", index=False) + user_df_dedup.to_excel(writer, sheet_name="用户信息", index=False) + +print(f"去重完成,结果保存为:{output_path}") diff --git a/web/dailymotion_com/get_token.py b/web/dailymotion_com/get_token.py new file mode 100644 index 0000000..fc8b5d6 --- /dev/null +++ b/web/dailymotion_com/get_token.py @@ -0,0 +1,38 @@ +import requests +import uuid + + +u = uuid.uuid4() +uuid_with_dash = str(u) +headers = { + 'Accept': '*/*', + 'Accept-Language': 'zh-CN,zh;q=0.9', + 'Cache-Control': 'no-cache', + 'Connection': 'keep-alive', + 'Content-Type': 'application/x-www-form-urlencoded', + 'Origin': 'https://www.dailymotion.com', + 'Pragma': 'no-cache', + 'Referer': 'https://www.dailymotion.com/', + 'Sec-Fetch-Dest': 'empty', + 'Sec-Fetch-Mode': 'cors', + 'Sec-Fetch-Site': 'same-site', + 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', + 'sec-ch-ua': '"Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-platform': '"Windows"', +} + +data = { + 'client_id': 'f1a362d288c1b98099c7', + 'client_secret': 'eea605b96e01c796ff369935357eca920c5da4c5', + 'grant_type': 'client_credentials', + 'traffic_segment': '567786', + 'visitor_id': uuid_with_dash, +} +proxies = { + "http": 'http://127.0.0.1:7890', + "https": 'http://127.0.0.1:7890', +} +response = requests.post('https://graphql.api.dailymotion.com/oauth/token', headers=headers, data=data, proxies=proxies) + +print(response.json()) \ No newline at end of file diff --git a/web/dailymotion_com/login.py b/web/dailymotion_com/login.py new file mode 100644 index 0000000..365302c --- /dev/null +++ b/web/dailymotion_com/login.py @@ -0,0 +1,41 @@ +import requests + +headers = { + 'Accept': '*/*', + 'Accept-Language': 'zh-CN,zh;q=0.9', + 'Cache-Control': 'no-cache', + 'Connection': 'keep-alive', + 'Content-Type': 'application/x-www-form-urlencoded', + 'Origin': 'https://www.dailymotion.com', + 'Pragma': 'no-cache', + 'Referer': 'https://www.dailymotion.com/', + 'Sec-Fetch-Dest': 'empty', + 'Sec-Fetch-Mode': 'cors', + 'Sec-Fetch-Site': 'same-site', + 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36', + 'sec-ch-ua': '"Chromium";v="136", "Google Chrome";v="136", "Not.A/Brand";v="99"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-platform': '"Windows"', +} +proxies = { + 'http': 'http://127.0.0.1:10808', + 'https': 'http://127.0.0.1:10808', +} +data = { + 'client_id': 'f1a362d288c1b98099c7', + 'client_secret': 'eea605b96e01c796ff369935357eca920c5da4c5', + 'grant_type': 'password', + 'username': 'dewujie64@gmail.com', + 'password': 'fKW8pF_CPh4#q%y', + 'scope': 'userinfo,email,manage_subscriptions,manage_history,manage_likes,manage_playlists,manage_videos', + 'version': '2', + 'traffic_segment': '440397', + 'visitor_id': 'e1ce77f1-0d3e-493f-89bc-2f22669f8985', +} + +response = requests.post('https://graphql.api.dailymotion.com/oauth/token', headers=headers, data=data, proxies=proxies) +json_data = response.json() + +access_token = json_data.get('access_token') + +print() \ No newline at end of file diff --git a/web/dailymotion_com/main1.py b/web/dailymotion_com/main1.py new file mode 100644 index 0000000..23e2286 --- /dev/null +++ b/web/dailymotion_com/main1.py @@ -0,0 +1,332 @@ +import json +import random +import time +import uuid +import concurrent.futures +import logging +from random import uniform +from datetime import datetime +from typing import Dict, List, Optional, Union + +import pandas as pd +import requests +import os +import urllib3 +from requests import RequestException +from fake_useragent import UserAgent + +# 配置日志记录 +logging.basicConfig( + level=logging.INFO, + format='%(asctime)s - %(levelname)s - %(message)s', + handlers=[ + logging.FileHandler('dailymotion.log', encoding='utf-8'), + logging.StreamHandler() + ] +) +logger = logging.getLogger(__name__) + +# 禁用 SSL 警告 +urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) + +# 基础配置 +BASE_DIR = os.path.dirname(os.path.abspath(__file__)) +KW_PATH = os.path.join(BASE_DIR, 'data', 'keyword.xlsx') +OUTPUT_DIR = os.path.join(BASE_DIR, 'out_put_CNTW') + +# 创建输出目录 +if not os.path.exists(OUTPUT_DIR): + os.makedirs(OUTPUT_DIR) + logger.info(f'创建输出目录: {OUTPUT_DIR}') + +# 请求配置 +MAX_RETRIES = 3 +BASE_DELAY = 2 +MAX_WORKERS = 5 # 并发线程数限制 +REQUEST_TIMEOUT = 30 # 请求超时时间 + +class DailymotionAPI: + def __init__(self): + self.session = requests.Session() + self.session.headers.update({ + 'Accept': '*/*, */*', + 'Cache-Control': 'no-cache', + 'Connection': 'keep-alive', + 'Content-Type': 'application/json, application/json', + 'Host': 'graphql.api.dailymotion.com', + 'Origin': 'https://www.dailymotion.com', + 'Referer': 'https://www.dailymotion.com/', + 'Sec-Fetch-Dest': 'empty', + 'Sec-Fetch-Mode': 'cors', + 'Sec-Fetch-Site': 'same-site', + 'X-DM-AppInfo-Id': 'com.dailymotion.neon', + 'X-DM-AppInfo-Type': 'website', + 'X-DM-AppInfo-Version': 'v2025-04-28T12:37:52.391Z', + 'X-DM-Neon-SSR': '0', + 'X-DM-Preferred-Country': 'us', + 'accept-language': 'zh-CN', + }) + self.session.proxies = { + "http": 'http://127.0.0.1:7890', + "https": 'http://127.0.0.1:7890', + } + + def _make_request(self, url: str, json_data: Dict, retries: int = MAX_RETRIES) -> Dict: + """发送请求并处理响应 + + Args: + url: 请求URL + json_data: 请求数据 + retries: 重试次数 + + Returns: + Dict: 响应数据 + """ + for attempt in range(retries): + try: + self.session.headers['User-Agent'] = UserAgent().random + response = self.session.post( + url, + json=json_data, + timeout=REQUEST_TIMEOUT, + verify=False + ) + response.raise_for_status() + return response.json() + except Exception as e: + if attempt == retries - 1: + logger.error(f'请求失败: {str(e)}') + raise + wait_time = BASE_DELAY * (2 ** attempt) + uniform(1, 3) + logger.warning(f'请求失败,等待 {wait_time:.2f} 秒后重试...') + time.sleep(wait_time) + + def get_video_info(self, x_id: str) -> Dict[str, Union[int, str]]: + """获取视频详细信息 + + Args: + x_id: 视频ID + + Returns: + Dict: 包含视频统计信息的字典 + """ + try: + payload = { + "operationName": "WATCHING_VIDEO", + "variables": {"xid": x_id, "isSEO": False}, + "query": "fragment VIDEO_FRAGMENT on Video {\n id\n xid\n isPublished\n duration\n title\n description\n thumbnailx60: thumbnailURL(size: \"x60\")\n thumbnailx120: thumbnailURL(size: \"x120\")\n thumbnailx240: thumbnailURL(size: \"x240\")\n thumbnailx360: thumbnailURL(size: \"x360\")\n thumbnailx480: thumbnailURL(size: \"x480\")\n thumbnailx720: thumbnailURL(size: \"x720\")\n thumbnailx1080: thumbnailURL(size: \"x1080\")\n aspectRatio\n category\n categories(filter: {category: {eq: CONTENT_CATEGORY}}) {\n edges {\n node { id name slug __typename }\n __typename\n }\n __typename\n }\n iab_categories: categories(\n filter: {category: {eq: IAB_CATEGORY}, percentage: {gte: 70}}\n ) {\n edges {\n node { id slug __typename }\n __typename\n }\n __typename\n }\n bestAvailableQuality\n createdAt\n viewerEngagement {\n id\n liked\n favorited\n __typename\n }\n isPrivate\n isWatched\n isCreatedForKids\n isExplicit\n canDisplayAds\n videoWidth: width\n videoHeight: height\n status\n hashtags {\n edges {\n node { id name __typename }\n __typename\n }\n __typename\n }\n stats {\n id\n views { id total __typename }\n __typename\n }\n channel {\n __typename\n id\n xid\n name\n displayName\n isArtist\n logoURLx25: logoURL(size: \"x25\")\n logoURL(size: \"x60\")\n isFollowed\n accountType\n coverURLx375: coverURL(size: \"x375\")\n stats {\n id\n views { id total __typename }\n followers { id total __typename }\n videos { id total __typename }\n __typename\n }\n country { id codeAlpha2 __typename }\n organization @skip(if: $isSEO) {\n id\n xid\n owner { id xid __typename }\n __typename\n }\n }\n language { id codeAlpha2 __typename }\n tags {\n edges {\n node { id label __typename }\n __typename\n }\n __typename\n }\n moderation { id reviewedAt __typename }\n topics(whitelistedOnly: true, first: 3, page: 1) {\n edges {\n node {\n id\n xid\n name\n names {\n edges {\n node {\n id\n name\n language { id codeAlpha2 __typename }\n __typename\n }\n __typename\n }\n __typename\n }\n __typename\n }\n __typename\n }\n __typename\n }\n geoblockedCountries {\n id\n allowed\n denied\n __typename\n }\n transcript {\n edges {\n node { id timecode text __typename }\n __typename\n }\n __typename\n }\n __typename\n}\n\nfragment LIVE_FRAGMENT on Live {\n id\n xid\n startAt\n endAt\n isPublished\n title\n description\n thumbnailx60: thumbnailURL(size: \"x60\")\n thumbnailx120: thumbnailURL(size: \"x120\")\n thumbnailx240: thumbnailURL(size: \"x240\")\n thumbnailx360: thumbnailURL(size: \"x360\")\n thumbnailx480: thumbnailURL(size: \"x480\")\n thumbnailx720: thumbnailURL(size: \"x720\")\n thumbnailx1080: thumbnailURL(size: \"x1080\")\n aspectRatio\n category\n createdAt\n viewerEngagement { id liked favorited __typename }\n isPrivate\n isExplicit\n isCreatedForKids\n bestAvailableQuality\n canDisplayAds\n videoWidth: width\n videoHeight: height\n stats { id views { id total __typename } __typename }\n channel {\n __typename\n id\n xid\n name\n displayName\n isArtist\n logoURLx25: logoURL(size: \"x25\")\n logoURL(size: \"x60\")\n isFollowed\n accountType\n coverURLx375: coverURL(size: \"x375\")\n stats { id views { id total __typename } followers { id total __typename } videos { id total __typename } __typename }\n country { id codeAlpha2 __typename }\n organization @skip(if: $isSEO) { id xid owner { id xid __typename } __typename }\n }\n language { id codeAlpha2 __typename }\n tags { edges { node { id label __typename } __typename } __typename }\n moderation { id reviewedAt __typename }\n topics(whitelistedOnly: true, first: 3, page: 1) {\n edges { node { id xid name names { edges { node { id name language { id codeAlpha2 __typename } __typename } __typename } __typename } __typename } __typename }\n __typename\n }\n geoblockedCountries { id allowed denied __typename }\n __typename\n}\n\nquery WATCHING_VIDEO($xid: String!, $isSEO: Boolean!) {\n video: media(xid: $xid) {\n __typename\n ... on Video { id ...VIDEO_FRAGMENT __typename }\n ... on Live { id ...LIVE_FRAGMENT __typename }\n }\n}" + } + + response_data = self._make_request('https://graphql.api.dailymotion.com/', payload) + v_info = response_data['data']['video']['channel']['stats'] + + return { + "view": v_info['views']['total'], + "fans": v_info['followers']['total'], + "videos": v_info['videos']['total'], + } + except Exception as e: + logger.error(f'获取视频信息失败: {str(e)}') + return {"view": '-', "fans": '-', "videos": '-'} + +def process_video(api: DailymotionAPI, node: Dict, calculated_index: int) -> Optional[Dict]: + """处理单个视频信息 + + Args: + api: DailymotionAPI实例 + node: 视频节点数据 + calculated_index: 计算的索引 + + Returns: + Optional[Dict]: 处理后的视频信息 + """ + xid = node.get('xid') + try: + logger.info(f'开始处理视频 {xid} (索引: {calculated_index})') + + # 添加随机延迟避免请求过于频繁 + time.sleep(uniform(1, 2)) + + v_info = api.get_video_info(xid) + result = { + "index": calculated_index, + "id": node.get('id'), + "xid": xid, + "link": f"https://www.dailymotion.com/video/{xid}", + "title": node.get('title'), + "createtime": node.get('createdAt'), + "duration": node.get('duration'), + "pic": node.get('thumbnail', {}).get('url'), + "view": v_info['view'], + "fans": v_info['fans'], + "videos": v_info['videos'] + } + + logger.debug(f'视频 {xid} 处理成功') + return result + + except Exception as e: + logger.error(f'处理视频 {xid} 出错: {str(e)}') + return None + +def process_videos_batch(api: DailymotionAPI, videos: List[Dict], start_index: int) -> List[Dict]: + """批量处理视频信息 + + Args: + api: DailymotionAPI实例 + videos: 视频列表 + start_index: 起始索引 + + Returns: + List[Dict]: 处理后的视频信息列表 + """ + results = [] + with concurrent.futures.ThreadPoolExecutor(max_workers=MAX_WORKERS) as executor: + future_to_video = {executor.submit(process_video, api, video, i): (video, i) + for i, video in enumerate(videos, start=start_index)} + + for future in concurrent.futures.as_completed(future_to_video): + video, index = future_to_video[future] + try: + result = future.result() + if result: + results.append(result) + except Exception as e: + logger.error(f'处理视频失败 (索引: {index}): {str(e)}') + + return results + +def save_results(results: List[Dict], output_file: str): + """保存处理结果 + + Args: + results: 处理结果列表 + output_file: 输出文件路径 + """ + try: + df = pd.DataFrame(results) + df.to_excel(output_file, index=False, engine='openpyxl') + logger.info(f'结果已保存到: {output_file}') + except Exception as e: + logger.error(f'保存结果失败: {str(e)}') + +def search_videos(api: DailymotionAPI, keyword: str, page: int = 1) -> List[Dict]: + """搜索视频列表 + + Args: + api: DailymotionAPI实例 + keyword: 搜索关键词 + page: 页码 + + Returns: + List[Dict]: 视频列表 + """ + try: + payload = { + "operationName": "SEARCH_VIDEOS", + "variables": { + "query": keyword, + "page": page, + "limit": 20, + "sort": "relevance" + }, + "query": "query SEARCH_VIDEOS($query: String!, $page: Int!, $limit: Int!, $sort: String!) {\n videos(\n first: $limit\n page: $page\n search: {query: $query, sort: $sort}\n ) {\n pageInfo { hasNextPage currentPage __typename }\n edges {\n node {\n id\n xid\n title\n createdAt\n duration\n thumbnail { url __typename }\n __typename\n }\n __typename\n }\n __typename\n }\n}" + } + + response = api._make_request('https://graphql.api.dailymotion.com/', payload) + videos = response['data']['videos']['edges'] + return [video['node'] for video in videos] + + except Exception as e: + logger.error(f'搜索视频失败: {str(e)}') + return [] + +def load_progress(keyword: str) -> Dict: + """加载进度信息 + + Args: + keyword: 关键词 + + Returns: + Dict: 进度信息 + """ + progress_file = os.path.join(OUTPUT_DIR, f'{keyword}_progress.json') + if os.path.exists(progress_file): + try: + with open(progress_file, 'r', encoding='utf-8') as f: + return json.load(f) + except Exception as e: + logger.error(f'加载进度失败: {str(e)}') + return {'page': 1, 'video_data': [], 'user_data': []} + +def save_progress(keyword: str, progress: Dict): + """保存进度信息 + + Args: + keyword: 关键词 + progress: 进度信息 + """ + progress_file = os.path.join(OUTPUT_DIR, f'{keyword}_progress.json') + try: + with open(progress_file, 'w', encoding='utf-8') as f: + json.dump(progress, f) + except Exception as e: + logger.error(f'保存进度失败: {str(e)}') + +def main(): + """主函数""" + try: + # 读取关键词 + df = pd.read_excel(KW_PATH) + if '搜索词' in df.columns: + keywords = df['搜索词'].tolist() + elif 'keyword' in df.columns: + keywords = df['keyword'].tolist() + else: + raise ValueError('Excel文件中未找到列名"搜索词"或"keyword",请检查文件格式') + + api = DailymotionAPI() + + for keyword in keywords: + logger.info(f'开始处理关键词: {keyword}') + + # 加载进度 + progress = load_progress(keyword) + current_page = progress['page'] + video_data = progress['video_data'] + + try: + while True: + # 搜索视频 + videos = search_videos(api, keyword, current_page) + if not videos: + break + + # 处理视频信息 + results = process_videos_batch(api, videos, len(video_data)) + video_data.extend(results) + + # 保存进度 + progress['page'] = current_page + progress['video_data'] = video_data + save_progress(keyword, progress) + + logger.info(f'已处理 {len(video_data)} 个视频') + current_page += 1 + + # 保存结果 + if video_data: + output_file = os.path.join(OUTPUT_DIR, f'{keyword}_results.xlsx') + save_results(video_data, output_file) + + except Exception as e: + logger.error(f'处理关键词 {keyword} 出错: {str(e)}') + continue + + except Exception as e: + logger.error(f'程序执行出错: {str(e)}') + finally: + logger.info('程序执行完成') + +if __name__ == '__main__': + main() \ No newline at end of file diff --git a/web/dailymotion_com/main2.py b/web/dailymotion_com/main2.py new file mode 100644 index 0000000..59cad35 --- /dev/null +++ b/web/dailymotion_com/main2.py @@ -0,0 +1,648 @@ +import json +import random +import time +import uuid + +import pandas as pd +import requests +import os + +from requests import RequestException + +BASE_DIR = os.path.dirname(os.path.abspath(__file__)) +kw_path = os.path.join(BASE_DIR, 'data', 'keyword1.xlsx') +headers1 = { + 'Accept': '*/*, */*', + # 'Accept-Encoding': 'gzip, deflate, br', + 'Cache-Control': 'no-cache', + 'Connection': 'keep-alive', + # 'Content-Length': '6237', + 'Content-Type': 'application/json, application/json', + 'Host': 'graphql.api.dailymotion.com', + 'Origin': 'https://www.dailymotion.com', + 'Referer': 'https://www.dailymotion.com/', + 'Sec-Fetch-Dest': 'empty', + 'Sec-Fetch-Mode': 'cors', + 'Sec-Fetch-Site': 'same-site', + 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', + 'X-DM-AppInfo-Id': 'com.dailymotion.neon', + 'X-DM-AppInfo-Type': 'website', + 'X-DM-AppInfo-Version': 'v2025-04-28T12:37:52.391Z', + 'X-DM-Neon-SSR': '0', + 'X-DM-Preferred-Country': 'us', + 'accept-language': 'zh-CN', + 'authorization': 'Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJhaWQiOiJmMWEzNjJkMjg4YzFiOTgwOTljNyIsInJvbCI6ImNhbi1tYW5hZ2UtcGFydG5lcnMtcmVwb3J0cyBjYW4tcmVhZC12aWRlby1zdHJlYW1zIGNhbi1zcG9vZi1jb3VudHJ5IGNhbi1hZG9wdC11c2VycyBjYW4tcmVhZC1jbGFpbS1ydWxlcyBjYW4tbWFuYWdlLWNsYWltLXJ1bGVzIGNhbi1tYW5hZ2UtdXNlci1hbmFseXRpY3MgY2FuLXJlYWQtbXktdmlkZW8tc3RyZWFtcyBjYW4tZG93bmxvYWQtbXktdmlkZW9zIGFjdC1hcyBhbGxzY29wZXMgYWNjb3VudC1jcmVhdG9yIGNhbi1yZWFkLWFwcGxpY2F0aW9ucyIsInNjbyI6InJlYWQgd3JpdGUgZGVsZXRlIGVtYWlsIHVzZXJpbmZvIGZlZWQgbWFuYWdlX3ZpZGVvcyBtYW5hZ2VfY29tbWVudHMgbWFuYWdlX3BsYXlsaXN0cyBtYW5hZ2VfdGlsZXMgbWFuYWdlX3N1YnNjcmlwdGlvbnMgbWFuYWdlX2ZyaWVuZHMgbWFuYWdlX2Zhdm9yaXRlcyBtYW5hZ2VfbGlrZXMgbWFuYWdlX2dyb3VwcyBtYW5hZ2VfcmVjb3JkcyBtYW5hZ2Vfc3VidGl0bGVzIG1hbmFnZV9mZWF0dXJlcyBtYW5hZ2VfaGlzdG9yeSBpZnR0dCByZWFkX2luc2lnaHRzIG1hbmFnZV9jbGFpbV9ydWxlcyBkZWxlZ2F0ZV9hY2NvdW50X21hbmFnZW1lbnQgbWFuYWdlX2FuYWx5dGljcyBtYW5hZ2VfcGxheWVyIG1hbmFnZV9wbGF5ZXJzIG1hbmFnZV91c2VyX3NldHRpbmdzIG1hbmFnZV9jb2xsZWN0aW9ucyBtYW5hZ2VfYXBwX2Nvbm5lY3Rpb25zIG1hbmFnZV9hcHBsaWNhdGlvbnMgbWFuYWdlX2RvbWFpbnMgbWFuYWdlX3BvZGNhc3RzIiwibHRvIjoiZVdGV1JTSkdXRVZjVGg0eEYyRWpWblFlTHdrdUhTVjVPMGdrWGciLCJhaW4iOjEsImFkZyI6MSwiaWF0IjoxNzQ2MjU3NzI1LCJleHAiOjE3NDYyOTM1NjgsImRtdiI6IjEiLCJhdHAiOiJicm93c2VyIiwiYWRhIjoid3d3LmRhaWx5bW90aW9uLmNvbSIsInZpZCI6IjY0NjMzRDAzMDY1RjQxODZBRDBCMDI3Q0Y3OTVFRjBGIiwiZnRzIjo5MTE0MSwiY2FkIjoyLCJjeHAiOjIsImNhdSI6Miwia2lkIjoiQUY4NDlERDczQTU4NjNDRDdEOTdEMEJBQjA3MjI0M0IifQ.bMzShOLIb6datC92qGPTRVCW9eINTYDFwLtqed2P1d4', + 'sec-ch-ua': '"Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-platform': '"Windows"', + 'x-dm-visit-id': '1745971699160', + 'x-dm-visitor-id': '64633D03065F4186AD0B027CF795EF0F', +} +# proxies = None + +proxies = { + "http": 'http://127.0.0.1:7890', + "https": 'http://127.0.0.1:7890', +} + +def post_with_retry(url, json_payload=None, data=None, headers=None, proxies=None, + retries=3, timeout=10, backoff_factor=1): + """ + 向指定 URL 发起 POST 请求,遇到网络错误时最多重试 `retries` 次。 + + :param url: 请求地址 + :param json_payload: 要发送的 JSON 体 + :param headers: 可选的请求头 dict + :param proxies: 可选的代理 dict + :param retries: 重试次数 + :param timeout: 单次请求超时(秒) + :param backoff_factor: 重试间隔基数(会指数级增长) + :return: requests.Response 对象 + :raises: 最后一次仍失败时抛出最后的异常 + """ + attempt = 0 + + + while attempt < retries: + try: + if json_payload is not None: + response = requests.post( + url, json=json_payload, headers=headers, proxies=proxies, timeout=timeout + ) + else: + response = requests.post( + url, data=data, headers=headers, proxies=proxies, timeout=timeout + ) + response.raise_for_status() + return response + except RequestException as e: + time.sleep(100) + attempt += 1 + print(f"[{attempt}/{retries}] 请求失败: {e}") + if attempt == retries: + print("已达最大重试次数,抛出异常。") + raise + sleep_time = backoff_factor * (2 ** (attempt - 1)) + print(f"等待 {sleep_time} 秒后重试…") + time.sleep(sleep_time) + + +def red_keyword_info(): + df = pd.read_excel(kw_path, sheet_name=0) + records = df.to_dict(orient='records') + print(f"共 {len(records)} 行数据:") + return records + + +def gettoken(): + headers = { + 'Accept': '*/*', + 'Accept-Language': 'zh-CN,zh;q=0.9', + 'Cache-Control': 'no-cache', + 'Connection': 'keep-alive', + 'Content-Type': 'application/x-www-form-urlencoded', + 'Origin': 'https://www.dailymotion.com', + 'Pragma': 'no-cache', + 'Referer': 'https://www.dailymotion.com/', + 'Sec-Fetch-Dest': 'empty', + 'Sec-Fetch-Mode': 'cors', + 'Sec-Fetch-Site': 'same-site', + 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', + 'sec-ch-ua': '"Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-platform': '"Windows"', + } + u = uuid.uuid4() + uuid_with_dash = str(u) + uuid_no_dash = u.hex + data = { + 'client_id': 'f1a362d288c1b98099c7', + 'client_secret': 'eea605b96e01c796ff369935357eca920c5da4c5', + 'grant_type': 'client_credentials', + 'traffic_segment': '567786', + 'visitor_id': uuid_with_dash, + } + url = 'https://graphql.api.dailymotion.com/oauth/token' + response = post_with_retry(url, headers=headers, data=data, proxies=proxies) + token = response.json()['access_token'] + headers1['authorization'] = "Bearer " + token + headers1['x-dm-visit-id'] = str(int(time.time() * 1000)) + headers1['x-dm-visitor-id'] = uuid_no_dash + + +def get_searchInfo(keyword): + video_list = [] + user_list = [] + for j in range(1, 3): + # 别展开 = = ! + data = { + "operationName": "SEARCH_QUERY", + "variables": { + "query": keyword, + "shouldIncludeTopResults": True, + "shouldIncludeChannels": False, + "shouldIncludePlaylists": False, + "shouldIncludeHashtags": False, + "shouldIncludeVideos": False, + "shouldIncludeLives": False, + "page": j, + "limit": 100, + "recaptchaToken": None + }, + "query": """ + fragment VIDEO_BASE_FRAGMENT on Video { + id + xid + title + createdAt + duration + aspectRatio + thumbnail(height: PORTRAIT_240) { + id + url + __typename + } + creator { + id + xid + name + displayName + accountType + avatar(height: SQUARE_60) { + id + url + __typename + } + __typename + } + __typename + } + + fragment CHANNEL_BASE_FRAG on Channel { + id + xid + name + displayName + accountType + isFollowed + avatar(height: SQUARE_120) { + id + url + __typename + } + followerEngagement { + id + followDate + __typename + } + metrics { + id + engagement { + id + followers { + edges { + node { + id + total + __typename + } + __typename + } + __typename + } + __typename + } + __typename + } + __typename + } + + fragment PLAYLIST_BASE_FRAG on Collection { + id + xid + name + description + thumbnail(height: PORTRAIT_240) { + id + url + __typename + } + creator { + id + xid + name + displayName + accountType + avatar(height: SQUARE_60) { + id + url + __typename + } + __typename + } + metrics { + id + engagement { + id + videos(filter: {visibility: {eq: PUBLIC}}) { + edges { + node { + id + total + __typename + } + __typename + } + __typename + } + __typename + } + __typename + } + __typename + } + + fragment HASHTAG_BASE_FRAG on Hashtag { + id + xid + name + metrics { + id + engagement { + id + videos { + edges { + node { + id + total + __typename + } + __typename + } + __typename + } + __typename + } + __typename + } + __typename + } + + fragment LIVE_BASE_FRAGMENT on Live { + id + xid + title + audienceCount + aspectRatio + isOnAir + thumbnail(height: PORTRAIT_240) { + id + url + __typename + } + creator { + id + xid + name + displayName + accountType + avatar(height: SQUARE_60) { + id + url + __typename + } + __typename + } + __typename + } + + query SEARCH_QUERY($query: String!, $shouldIncludeTopResults: Boolean!, $shouldIncludeVideos: Boolean!, $shouldIncludeChannels: Boolean!, $shouldIncludePlaylists: Boolean!, $shouldIncludeHashtags: Boolean!, $shouldIncludeLives: Boolean!, $page: Int, $limit: Int, $sortByVideos: SearchVideoSort, $durationMinVideos: Int, $durationMaxVideos: Int, $createdAfterVideos: DateTime, $recaptchaToken: String) { + search(token: $recaptchaToken) { + id + stories(query: $query, first: $limit, page: $page) @include(if: $shouldIncludeTopResults) { + metadata { + id + algorithm { + uuid + __typename + } + __typename + } + pageInfo { + hasNextPage + nextPage + __typename + } + edges { + node { + ...VIDEO_BASE_FRAGMENT + ...CHANNEL_BASE_FRAG + ...PLAYLIST_BASE_FRAG + ...HASHTAG_BASE_FRAG + ...LIVE_BASE_FRAGMENT + __typename + } + __typename + } + __typename + } + videos( + query: $query + first: $limit + page: $page + sort: $sortByVideos + durationMin: $durationMinVideos + durationMax: $durationMaxVideos + createdAfter: $createdAfterVideos + ) @include(if: $shouldIncludeVideos) { + metadata { + id + algorithm { + uuid + __typename + } + __typename + } + pageInfo { + hasNextPage + nextPage + __typename + } + edges { + node { + id + ...VIDEO_BASE_FRAGMENT + __typename + } + __typename + } + __typename + } + lives(query: $query, first: $limit, page: $page) @include(if: $shouldIncludeLives) { + metadata { + id + algorithm { + uuid + __typename + } + __typename + } + pageInfo { + hasNextPage + nextPage + __typename + } + edges { + node { + id + ...LIVE_BASE_FRAGMENT + __typename + } + __typename + } + __typename + } + channels(query: $query, first: $limit, page: $page) @include(if: $shouldIncludeChannels) { + metadata { + id + algorithm { + uuid + __typename + } + __typename + } + pageInfo { + hasNextPage + nextPage + __typename + } + edges { + node { + id + ...CHANNEL_BASE_FRAG + __typename + } + __typename + } + __typename + } + playlists: collections(query: $query, first: $limit, page: $page) @include(if: $shouldIncludePlaylists) { + metadata { + id + algorithm { + uuid + __typename + } + __typename + } + pageInfo { + hasNextPage + nextPage + __typename + } + edges { + node { + id + ...PLAYLIST_BASE_FRAG + __typename + } + __typename + } + __typename + } + hashtags(query: $query, first: $limit, page: $page) @include(if: $shouldIncludeHashtags) { + metadata { + id + algorithm { + uuid + __typename + } + __typename + } + pageInfo { + hasNextPage + nextPage + __typename + } + edges { + node { + id + ...HASHTAG_BASE_FRAG + __typename + } + __typename + } + __typename + } + __typename + } + } + """ + } + gettoken() + response = post_with_retry( + "https://graphql.api.dailymotion.com/", + json_payload=data, + headers=headers1, + proxies=proxies + ) + + jsondata = response.json() + try: + resinfo = jsondata['data']['search']['stories']['edges'] + print('resinfo :', len(resinfo)) + except Exception: + resinfo = [] + ValueError("返回字段解析错误!") + for index, iteminfo in enumerate(resinfo): + calculated_index = index + 1 + (j - 1) * 100 + print(calculated_index) + node = iteminfo['node'] + __typename = node['__typename'] + if __typename == "Video": + xid = node.get('xid') + v_info = get_videoInfo(xid) + time.sleep(3) + video_list.append({ + "index": calculated_index, + "id": node.get('id'), + "xid": xid, + "link": "https://www.dailymotion.com/video/" + xid, + "title": node.get('title'), + "createtime": node.get('createdAt'), + "duration": node.get('duration'), + "pic": node.get('thumbnail').get('url'), + "view": v_info['view'], + "fans": v_info['fans'], + "videos": v_info['videos'] + }) + elif __typename == "Channel": + user_list.append({ + 'index': calculated_index, + 'id': node['id'], + 'xid': node['xid'], + 'name': node['name'], + 'upic': node['avatar']['url'] + }) + else: + continue + + time.sleep(15) + return video_list, user_list + + +def get_videoInfo(x_id, r=3): + payload = { + "operationName": "WATCHING_VIDEO", + "variables": { + "xid": x_id, + "isSEO": False + }, + "query": "fragment VIDEO_FRAGMENT on Video {\n id\n xid\n isPublished\n duration\n title\n description\n thumbnailx60: thumbnailURL(size: \"x60\")\n thumbnailx120: thumbnailURL(size: \"x120\")\n thumbnailx240: thumbnailURL(size: \"x240\")\n thumbnailx360: thumbnailURL(size: \"x360\")\n thumbnailx480: thumbnailURL(size: \"x480\")\n thumbnailx720: thumbnailURL(size: \"x720\")\n thumbnailx1080: thumbnailURL(size: \"x1080\")\n aspectRatio\n category\n categories(filter: {category: {eq: CONTENT_CATEGORY}}) {\n edges {\n node { id name slug __typename }\n __typename\n }\n __typename\n }\n iab_categories: categories(\n filter: {category: {eq: IAB_CATEGORY}, percentage: {gte: 70}}\n ) {\n edges {\n node { id slug __typename }\n __typename\n }\n __typename\n }\n bestAvailableQuality\n createdAt\n viewerEngagement {\n id\n liked\n favorited\n __typename\n }\n isPrivate\n isWatched\n isCreatedForKids\n isExplicit\n canDisplayAds\n videoWidth: width\n videoHeight: height\n status\n hashtags {\n edges {\n node { id name __typename }\n __typename\n }\n __typename\n }\n stats {\n id\n views { id total __typename }\n __typename\n }\n channel {\n __typename\n id\n xid\n name\n displayName\n isArtist\n logoURLx25: logoURL(size: \"x25\")\n logoURL(size: \"x60\")\n isFollowed\n accountType\n coverURLx375: coverURL(size: \"x375\")\n stats {\n id\n views { id total __typename }\n followers { id total __typename }\n videos { id total __typename }\n __typename\n }\n country { id codeAlpha2 __typename }\n organization @skip(if: $isSEO) {\n id\n xid\n owner { id xid __typename }\n __typename\n }\n }\n language { id codeAlpha2 __typename }\n tags {\n edges {\n node { id label __typename }\n __typename\n }\n __typename\n }\n moderation { id reviewedAt __typename }\n topics(whitelistedOnly: true, first: 3, page: 1) {\n edges {\n node {\n id\n xid\n name\n names {\n edges {\n node {\n id\n name\n language { id codeAlpha2 __typename }\n __typename\n }\n __typename\n }\n __typename\n }\n __typename\n }\n __typename\n }\n __typename\n }\n geoblockedCountries {\n id\n allowed\n denied\n __typename\n }\n transcript {\n edges {\n node { id timecode text __typename }\n __typename\n }\n __typename\n }\n __typename\n}\n\nfragment LIVE_FRAGMENT on Live {\n id\n xid\n startAt\n endAt\n isPublished\n title\n description\n thumbnailx60: thumbnailURL(size: \"x60\")\n thumbnailx120: thumbnailURL(size: \"x120\")\n thumbnailx240: thumbnailURL(size: \"x240\")\n thumbnailx360: thumbnailURL(size: \"x360\")\n thumbnailx480: thumbnailURL(size: \"x480\")\n thumbnailx720: thumbnailURL(size: \"x720\")\n thumbnailx1080: thumbnailURL(size: \"x1080\")\n aspectRatio\n category\n createdAt\n viewerEngagement { id liked favorited __typename }\n isPrivate\n isExplicit\n isCreatedForKids\n bestAvailableQuality\n canDisplayAds\n videoWidth: width\n videoHeight: height\n stats { id views { id total __typename } __typename }\n channel {\n __typename\n id\n xid\n name\n displayName\n isArtist\n logoURLx25: logoURL(size: \"x25\")\n logoURL(size: \"x60\")\n isFollowed\n accountType\n coverURLx375: coverURL(size: \"x375\")\n stats { id views { id total __typename } followers { id total __typename } videos { id total __typename } __typename }\n country { id codeAlpha2 __typename }\n organization @skip(if: $isSEO) { id xid owner { id xid __typename } __typename }\n }\n language { id codeAlpha2 __typename }\n tags { edges { node { id label __typename } __typename } __typename }\n moderation { id reviewedAt __typename }\n topics(whitelistedOnly: true, first: 3, page: 1) {\n edges { node { id xid name names { edges { node { id name language { id codeAlpha2 __typename } __typename } __typename } __typename } __typename } __typename }\n __typename\n }\n geoblockedCountries { id allowed denied __typename }\n __typename\n}\n\nquery WATCHING_VIDEO($xid: String!, $isSEO: Boolean!) {\n video: media(xid: $xid) {\n __typename\n ... on Video { id ...VIDEO_FRAGMENT __typename }\n ... on Live { id ...LIVE_FRAGMENT __typename }\n }\n}" + } + url = 'https://graphql.api.dailymotion.com/' + + response = post_with_retry( + url, + json_payload=payload, + headers=headers1, + proxies=proxies, + ) + jsondata = response.json() + try: + v_info = jsondata['data']['video']['channel']['stats'] + except Exception: + if r > 0: + return get_videoInfo(x_id=x_id, r=r - 1) + else: + return { + "view": '-', + "fans": '-', + "videos": '-', + } + return { + "view": v_info['views']['total'], + "fans": v_info['followers']['total'], + "videos": v_info['videos']['total'], + } + + +def integrate_data(): + keyword_list = red_keyword_info() + for key_word_item in keyword_list: + gettoken() + Video_PD_DATA = { + "片名": [], + "搜索词": [], + "ID": [], + "xid": [], + "连接地址": [], + "标题": [], + "时长 (秒)": [], + "关注数": [], + "视频数": [], + "浏览数": [], + "添加时间": [], + "封面图片": [], + "Index": [], + } + User_PD_DATA = { + "片名": [], + "搜索词": [], + "ID": [], + "xid": [], + "名称": [], + "头像": [], + "Index": [], + } + film_name = key_word_item['片名'] + key_word = key_word_item['搜索词'] + print(key_word) + v_list, u_list = get_searchInfo(key_word) + if len(v_list) < 1 and len(u_list) < 1: + i = 0 + while i < 3: + time.sleep(i * 5) + v_list, u_list = get_searchInfo(key_word) + if len(v_list) > 1 or len(u_list) > 1: + print(len(v_list), len(u_list)) + break + i += 1 + time.sleep(2) + for item in v_list: + Video_PD_DATA['片名'].append(film_name) + Video_PD_DATA['搜索词'].append(key_word) + Video_PD_DATA['ID'].append(item.get('id')) + Video_PD_DATA['xid'].append(item.get('xid')) + Video_PD_DATA['连接地址'].append(item.get('link')) + Video_PD_DATA['标题'].append(item.get('title')) + Video_PD_DATA['时长 (秒)'].append(item.get('duration')) + Video_PD_DATA['关注数'].append(item.get('fans')) + Video_PD_DATA['视频数'].append(item.get('videos')) + Video_PD_DATA['浏览数'].append(item.get('view')) + Video_PD_DATA['添加时间'].append(item.get('createtime')) + Video_PD_DATA['封面图片'].append(item.get('pic')) + Video_PD_DATA['Index'].append(item.get('index')) + for item in u_list: + User_PD_DATA['片名'].append(film_name) + User_PD_DATA['搜索词'].append(key_word) + User_PD_DATA['ID'].append(item.get('id')) + User_PD_DATA['xid'].append(item.get('xid')) + User_PD_DATA['名称'].append(item.get('name')) + User_PD_DATA['头像'].append(item.get('upic')) + User_PD_DATA['Index'].append(item.get('index')) + + df_vido = pd.DataFrame(Video_PD_DATA) + df_user = pd.DataFrame(User_PD_DATA) + + output_path = "out_put_CNTW/{}_{}.xlsx".format(film_name, key_word) + + with pd.ExcelWriter(output_path, engine="openpyxl") as w: + df_vido.to_excel(w, sheet_name="视频信息", index=False) + df_user.to_excel(w, sheet_name="用户信息", index=False) + + +if __name__ == '__main__': + # gettoken() + integrate_data() + # print(get_searchInfo('Running Man')) diff --git a/web/dailymotion_com/merge_video_user_data.py b/web/dailymotion_com/merge_video_user_data.py new file mode 100644 index 0000000..decdc67 --- /dev/null +++ b/web/dailymotion_com/merge_video_user_data.py @@ -0,0 +1,37 @@ +import os +import pandas as pd + +video_data_list = [] +user_data_list = [] + +folder_path = "out_put_US" + +for filename in os.listdir(folder_path): + if filename.endswith(".xlsx"): + file_path = os.path.join(folder_path, filename) + + try: + video_df = pd.read_excel(file_path, sheet_name="视频信息") + user_df = pd.read_excel(file_path, sheet_name="用户信息") + + # 正确添加 来源文件列,不改动原来的 Index + video_df["来源文件"] = filename + user_df["来源文件"] = filename + + video_data_list.append(video_df) + user_data_list.append(user_df) + + except Exception as e: + print(f"❌ 读取失败: {filename}, 错误信息: {e}") + +# 合并 +all_video_df = pd.concat(video_data_list, ignore_index=True) +all_user_df = pd.concat(user_data_list, ignore_index=True) + +# 写入一个Excel文件中两个Sheet +output_path = "合并视频用户信息.xlsx" +with pd.ExcelWriter(output_path, engine="openpyxl") as writer: + all_video_df.to_excel(writer, sheet_name="视频信息", index=False) + all_user_df.to_excel(writer, sheet_name="用户信息", index=False) + +print(f"✅ 合并完成,文件保存为:{output_path}") diff --git a/web/dailymotion_com/out_put_CNTW/你的天空 特别篇_Your Sky b/web/dailymotion_com/out_put_CNTW/你的天空 特别篇_Your Sky new file mode 100644 index 0000000..e69de29 diff --git a/web/dailymotion_com/out_put_CNTW/恋爱学园_Boys in Love b/web/dailymotion_com/out_put_CNTW/恋爱学园_Boys in Love new file mode 100644 index 0000000..e69de29 diff --git a/web/dailymotion_com/out_put_US/恋爱学园_Boys in Love b/web/dailymotion_com/out_put_US/恋爱学园_Boys in Love new file mode 100644 index 0000000..e69de29 diff --git a/web/dailymotion_com/read_excel_.py b/web/dailymotion_com/read_excel_.py new file mode 100644 index 0000000..f937a32 --- /dev/null +++ b/web/dailymotion_com/read_excel_.py @@ -0,0 +1,96 @@ +import os +import pandas as pd + +folder_path = "out_put_CNTW" +output_path = "out_put_CNTW.xlsx" + +def convert_to_east8(dt): + try: + dt = pd.to_datetime(dt, errors='coerce', utc=True) + return dt.tz_convert("Asia/Shanghai") if pd.notna(dt) else None + except Exception: + return None + +def safe_format_datetime(val): + if pd.isna(val): + return "" + try: + return val.tz_localize(None).strftime("%Y-%m-%d %H:%M:%S") + except Exception: + return "" + +def format_duration(seconds): + try: + seconds = int(seconds) + minutes = seconds // 60 + remain = seconds % 60 + return f"{minutes}:{remain:02d}" + except Exception: + return "" + +merged_list = [] + +for file in os.listdir(folder_path): + if file.endswith(".xlsx"): + path = os.path.join(folder_path, file) + try: + video_df = pd.read_excel(path, sheet_name="视频信息") + user_df = pd.read_excel(path, sheet_name="用户信息") + + # 字段改名 & 添加来源 & 类型标记 + video_df = video_df.rename(columns={"xid": "v_xid"}) + user_df = user_df.rename(columns={"xid": "u_xid"}) + + video_df["xid"] = video_df["v_xid"] + user_df["xid"] = user_df["u_xid"] + + video_df["来源文件"] = file + user_df["来源文件"] = file + + video_df["数据类型"] = "视频" + user_df["数据类型"] = "用户" + + # 视频专属字段处理 + video_df["添加时间"] = video_df["添加时间"].apply(convert_to_east8) + video_df["添加时间"] = video_df["添加时间"].apply(safe_format_datetime) + video_df["时长 (秒)"] = video_df["时长 (秒)"].apply(format_duration) + + # 统一添加空字段 + for col in ["操作员", "是否盗版", "投诉时间", "历史状态", "是否重复", "重复对象"]: + video_df[col] = "" + user_df[col] = "" + + # 合并当前文件的视频+用户,并按 Index 排序 + combined = pd.concat([video_df, user_df], ignore_index=True, sort=False) + if "Index" in combined.columns: + combined = combined.sort_values(by="Index", ignore_index=True) + + merged_list.append(combined) + + except Exception as e: + print(f"❌ 读取失败: {file} 错误: {e}") + +merged_df = pd.concat(merged_list, ignore_index=True, sort=False) + +# 添加序号 +merged_df.insert(0, "序号", range(1, len(merged_df) + 1)) + +# ========= 重复识别 ========== +if "xid" in merged_df.columns: + xid_rows = merged_df[merged_df["xid"].notna()] + for xid_val, group in xid_rows.groupby("xid"): + if len(group) > 1: + serials = group["序号"].tolist() + for idx, row in group.iterrows(): + others = [str(s) for s in serials if s != row["序号"]] + merged_df.at[idx, "是否重复"] = "√" + merged_df.at[idx, "重复对象"] = ",".join(others) + +# 删除 v_xid/u_xid 列(可选) +merged_df.drop(columns=["v_xid", "u_xid"], inplace=True, errors='ignore') + +# ========= 导出结果 ========== +with pd.ExcelWriter(output_path, engine="openpyxl") as writer: + merged_df.to_excel(writer, sheet_name="合并信息", index=False) + +print(f"✅ 合并完成,保存为:{output_path}") diff --git a/web/dailymotion_com/report.py b/web/dailymotion_com/report.py new file mode 100644 index 0000000..2ed1dc5 --- /dev/null +++ b/web/dailymotion_com/report.py @@ -0,0 +1,240 @@ +import time +import json +import redis +import requests +import urllib3 +from requests.adapters import HTTPAdapter +from urllib3.util.retry import Retry +from typing import Optional, Dict, Any, Union + +class HttpClient: + def __init__(self, max_retries: int = 3, backoff_factor: float = 0.5): + self.session = requests.Session() + # 配置重试策略 + retry_strategy = Retry( + total=max_retries, + backoff_factor=backoff_factor, + status_forcelist=[500, 502, 503, 504, 429] + ) + + adapter = HTTPAdapter(max_retries=retry_strategy) + self.session.mount("http://", adapter) + self.session.mount("https://", adapter) + + def request(self, + method: str, + url: str, + headers: Optional[Dict] = None, + params: Optional[Dict] = None, + data: Optional[Union[Dict, str]] = None, + cookies: Optional[Dict] = None, + allow_redirects: bool = True, + timeout: int = 30, + **kwargs) -> requests.Response: + try: + response = self.session.request( + method=method, + url=url, + headers=headers, + params=params, + data=data, + cookies=cookies, + allow_redirects=allow_redirects, + timeout=timeout, + **kwargs + ) + response.raise_for_status() + return response + except requests.exceptions.RequestException as e: + print(f"请求失败: {url}, 错误: {str(e)}") + raise + + def get(self, url: str, **kwargs) -> requests.Response: + return self.request("GET", url, **kwargs) + + def post(self, url: str, **kwargs) -> requests.Response: + return self.request("POST", url, **kwargs) + +# 创建全局的 HTTP 客户端实例 +http_client = HttpClient() + +_REDIS_CONF = { + "host": "192.144.230.75", + "port": 6379, + "password": "qwert@$123!&", + "decode_responses": True, + "db": 1, +} + +def save_report_token(key_name: str, json_data: dict): + r = redis.Redis(**_REDIS_CONF) + key = key_name + json_str = json.dumps(json_data, ensure_ascii=False) + r.set(key, json_str) + print(f"已在 Redis(DB {_REDIS_CONF['db']}) 中写入 key -> {key}") + + +def get_report_token(key_name: str): + r = redis.Redis(**_REDIS_CONF) + key = key_name + json_str = r.get(key) + if not json_str: + return None + return json.loads(json_str) + + +def login(): + try: + headers = { + "Accept": "*/*", + "Accept-Language": "zh-CN,zh;q=0.9", + "Cache-Control": "no-cache", + "Connection": "keep-alive", + "Content-Type": "application/x-www-form-urlencoded", + "Origin": "https://www.dailymotion.com", + "Pragma": "no-cache", + "Referer": "https://www.dailymotion.com/", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36 Edg/136.0.0.0", + "sec-ch-ua": "\"Chromium\";v=\"136\", \"Microsoft Edge\";v=\"136\", \"Not.A/Brand\";v=\"99\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"" + } + url = "https://graphql.api.dailymotion.com/oauth/token" + data = { + "client_id": "f1a362d288c1b98099c7", + "client_secret": "eea605b96e01c796ff369935357eca920c5da4c5", + "grant_type": "password", + "username": "copyright@qiyi.com", + "password": "ppsIQIYI2018@", + "scope": "userinfo,email,manage_subscriptions,manage_history,manage_likes,manage_playlists,manage_videos", + "version": "2", + "traffic_segment": "962042", + "visitor_id": "359703fb-66c2-43d2-bd0d-b1cac9c7ae8a" + } + response = http_client.post(url, headers=headers, data=data) + data = { + "update_time": int(time.time()), + "username": "copyright@qiyi.com", + "password": "ppsIQIYI2018@", + "token": response.json() + } + save_report_token('token', data) + return data + except Exception as e: + print(f"登录失败: {str(e)}") + raise + +def get_cookies(access_token: str, refresh_token: str): + try: + cookies = { + "access_token": access_token, + "refresh_token": refresh_token, + } + url = "https://www.dailymotion.com/cookie/refresh_token" + http_client.post(url, cookies=cookies, allow_redirects=True) + except Exception as e: + print(f"刷新 cookie 失败: {str(e)}") + raise + +def get_cookies1(access_token: str, refresh_token: str): + """302 跳转""" + try: + cookies = { + "access_token": access_token, + "refresh_token": refresh_token, + } + url = "https://www.dailymotion.com/zendesk" + params = { + "return_to": "https://faq.dailymotion.com/hc/en-us/requests/new", + "timestamp": str(int(time.time())), + } + response = http_client.get(url, cookies=cookies, params=params, allow_redirects=True) + cookies_dict = {"update_time": int(time.time()), "cookies": dict(http_client.session.cookies)} + save_report_token('cookies', cookies_dict) + return cookies_dict + except Exception as e: + print(f"获取 cookies 失败: {str(e)}") + raise + +def get_csrftoken(): + try: + url = "https://faq.dailymotion.com/hc/api/internal/csrf_token.json" + response = http_client.get(url) + data = {"update_time": int(time.time()), "csrf_token": response.json()} + save_report_token('csrf_token', data) + return data + except Exception as e: + print(f"获取 CSRF token 失败: {str(e)}") + raise + +def report(csrf_token:str, cookies:dict): + try: + headers = { + "Accept": "*/*", + "Accept-Language": "zh-CN,zh;q=0.9", + "Cache-Control": "no-cache", + "Connection": "keep-alive", + "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8", + "Origin": "https://faq.dailymotion.com", + "Pragma": "no-cache", + "Referer": "https://faq.dailymotion.com/hc/en-us/requests/new", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-origin", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36 Edg/136.0.0.0", + "sec-ch-ua": "\"Chromium\";v=\"136\", \"Microsoft Edge\";v=\"136\", \"Not.A/Brand\";v=\"99\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "X-CSRF-Token": csrf_token + } + data = { + "request[subject]": "版权投诉", + "request[description]": "请删除侵权视频", + "request[email]": "copyright@qiyi.com", + "request[ticket_form_id]": "360000717219" + } + response = http_client.post('https://faq.dailymotion.com/hc/en-us/requests', + cookies=cookies, + headers=headers, + data=data) + return response.status_code == 200 + except Exception as e: + print(f"提交报告失败: {str(e)}") + raise + +def prepare_data(): + try: + token = get_report_token('token') + cookies = get_report_token('cookies') + csrf_token = get_report_token('csrf_token') + + min_update_time = min(d.get('update_time', 0) for d in (token, cookies, csrf_token) if d) + if not min_update_time or min_update_time + (24 * 60 * 60) < time.time(): + token = login() + if not token: + raise Exception("登录失败") + + access_token = token['token']['access_token'] + refresh_token = token['token']['refresh_token'] + + get_cookies(access_token, refresh_token) + cookies = get_cookies1(access_token, refresh_token) + csrf_token = get_csrftoken() + + if not all([cookies, csrf_token]): + raise Exception("获取 cookies 或 csrf_token 失败") + + if not all([token, cookies, csrf_token]): + raise Exception("获取令牌失败") + + success = report(csrf_token['csrf_token']['current_session']['csrf_token'], cookies['cookies']) + if not success: + raise Exception("提交投诉失败") + + except Exception as e: + print(f"处理数据失败: {str(e)}") + raise + diff --git a/web/dailymotion_com/utils/http_client.py b/web/dailymotion_com/utils/http_client.py new file mode 100644 index 0000000..48a176c --- /dev/null +++ b/web/dailymotion_com/utils/http_client.py @@ -0,0 +1,66 @@ +import time +import requests +from requests.adapters import HTTPAdapter +from requests.packages.urllib3.util.retry import Retry +from typing import Optional, Dict, Any, Union + +class HttpClient: + def __init__(self, max_retries: int = 3, backoff_factor: float = 0.5): + self.session = requests.Session() + # 配置重试策略 + retry_strategy = Retry( + total=max_retries, + backoff_factor=backoff_factor, + status_forcelist=[500, 502, 503, 504, 429] # 这些状态码会触发重试 + ) + + # 将重试策略应用到 session + adapter = HTTPAdapter(max_retries=retry_strategy) + self.session.mount("http://", adapter) + self.session.mount("https://", adapter) + + def request(self, + method: str, + url: str, + headers: Optional[Dict] = None, + params: Optional[Dict] = None, + data: Optional[Union[Dict, str]] = None, + cookies: Optional[Dict] = None, + allow_redirects: bool = True, + timeout: int = 30, + **kwargs) -> requests.Response: + """ + 通用请求方法 + """ + try: + response = self.session.request( + method=method, + url=url, + headers=headers, + params=params, + data=data, + cookies=cookies, + allow_redirects=allow_redirects, + timeout=timeout, + **kwargs + ) + response.raise_for_status() + return response + except requests.exceptions.RequestException as e: + print(f"请求失败: {url}, 错误: {str(e)}") + raise + + def get(self, url: str, **kwargs) -> requests.Response: + """ + GET 请求封装 + """ + return self.request("GET", url, **kwargs) + + def post(self, url: str, **kwargs) -> requests.Response: + """ + POST 请求封装 + """ + return self.request("POST", url, **kwargs) + +# 创建一个全局的 HttpClient 实例 +http_client = HttpClient() diff --git a/web/doordash/main.py b/web/doordash/main.py new file mode 100644 index 0000000..99e5b14 --- /dev/null +++ b/web/doordash/main.py @@ -0,0 +1,116 @@ +import requests +import json + +class DoorDash: + def __init__(self): + pass + + def parse(self): + + cookies = { + '__cf_bm': 'DeiqM0wBQUTk.n88hE77uEZ.WfLdmDCCAjcUeUD895Y-1741189317-1.0.1.1-A.cPG7yAL2gQ9ErX9iHLETCB16qpewadnG4ad5tE1vwGMbt1GJ1eYZvmeQVGHdwH1lfpC4_OG2_Zqbv4.pE53jLMuzQNib75mRrYI50e52IXcW8a5_UcRHI5CYACnLLf', + '__cfwaitingroom': 'Chg0U0ZnUjFhbXBOQjJrMWFXdzUrNEJBPT0SgAJySXhTYlJublhNTEhJejhpbVJkV01vd0YrblBDMGVMdDdXSGhIYkprYjVUR2E2bytPcGgzeWZKZE9kUHdISDJIWTdjR01jZ3NqcEJycUxqVHB2REtKVlN3aEx5c09yU0ltbkVWMHFjcGd3RVBULzhuWFR6RDVNZlVXeHp3clgrS0NVaWZ4eGN1QVRpUWI0aENWUDV6Z2g0Uk1jbUFDUVA5NEV0amt4K1Y4bkNSNWdDc2hSTkdHL2lzbnpiV0RndXZxd0Y2emFoejlIOGcwVmNxVTdQVktwdm8wOXN0TXdDRWJlZmhIa0xmeDZLODFhTFdSOVhiR2U2TThUWlV6bDV1', + '_cfuvid': 'OhLu8QiDvU1kFzSW0Bc3jnsJCdKW4bX88JsDj6HA9MY-1741189318649-0.0.1.1-604800000', + } + + headers = { + 'accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7', + 'accept-language': 'zh-CN,zh;q=0.9', + 'cache-control': 'no-cache', + 'content-type': 'application/x-www-form-urlencoded', + 'origin': 'https://www.doordash.com', + 'pragma': 'no-cache', + 'priority': 'u=0, i', + 'referer': 'https://www.doordash.com/store/orlando-china-ocean-orlando-24579150/?srsltid=AfmBOopVpfmVadkxGCuL8OFMk-I2G54QsfI0akAcPzxvLYbz8Wzxp0P0&__cf_chl_tk=Jjhqq2WTVqoit5J4FyAS1SUt2xz6wZ8gwtgaPrUg1_4-1741189317-1.0.1.1-HyUzlYWauczcJmr1NXUGCOr5zGRO2UI2RgzN8ufTLQA', + 'sec-ch-ua': '"Not(A:Brand";v="99", "Google Chrome";v="133", "Chromium";v="133"', + 'sec-ch-ua-arch': '"x86"', + 'sec-ch-ua-bitness': '"64"', + 'sec-ch-ua-full-version': '"133.0.6943.142"', + 'sec-ch-ua-full-version-list': '"Not(A:Brand";v="99.0.0.0", "Google Chrome";v="133.0.6943.142", "Chromium";v="133.0.6943.142"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-model': '""', + 'sec-ch-ua-platform': '"Windows"', + 'sec-ch-ua-platform-version': '"10.0.0"', + 'sec-fetch-dest': 'document', + 'sec-fetch-mode': 'navigate', + 'sec-fetch-site': 'same-origin', + 'sec-fetch-user': '?1', + 'upgrade-insecure-requests': '1', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', + # 'cookie': '__cf_bm=DeiqM0wBQUTk.n88hE77uEZ.WfLdmDCCAjcUeUD895Y-1741189317-1.0.1.1-A.cPG7yAL2gQ9ErX9iHLETCB16qpewadnG4ad5tE1vwGMbt1GJ1eYZvmeQVGHdwH1lfpC4_OG2_Zqbv4.pE53jLMuzQNib75mRrYI50e52IXcW8a5_UcRHI5CYACnLLf; __cfwaitingroom=Chg0U0ZnUjFhbXBOQjJrMWFXdzUrNEJBPT0SgAJySXhTYlJublhNTEhJejhpbVJkV01vd0YrblBDMGVMdDdXSGhIYkprYjVUR2E2bytPcGgzeWZKZE9kUHdISDJIWTdjR01jZ3NqcEJycUxqVHB2REtKVlN3aEx5c09yU0ltbkVWMHFjcGd3RVBULzhuWFR6RDVNZlVXeHp3clgrS0NVaWZ4eGN1QVRpUWI0aENWUDV6Z2g0Uk1jbUFDUVA5NEV0amt4K1Y4bkNSNWdDc2hSTkdHL2lzbnpiV0RndXZxd0Y2emFoejlIOGcwVmNxVTdQVktwdm8wOXN0TXdDRWJlZmhIa0xmeDZLODFhTFdSOVhiR2U2TThUWlV6bDV1; _cfuvid=OhLu8QiDvU1kFzSW0Bc3jnsJCdKW4bX88JsDj6HA9MY-1741189318649-0.0.1.1-604800000', + } + + params = { + 'srsltid': 'AfmBOopVpfmVadkxGCuL8OFMk-I2G54QsfI0akAcPzxvLYbz8Wzxp0P0', + } + + data = { + '62f575be50a6447af9fe0d9959952ee6dec9bf2ffbdf0558f021763cb249bcab': '9eHmWM7NMmZh1C8FtgbjrStbitYveFM7mthG7xnA2Ns-1741189317-1.2.1.1-__PYXC7JoGCXoo_25K_6TXEnUckVOlewmPlh3Y9YhIpS2wnTMq2mpxVkW4nY1lxE0xGbln5UrRh.lH7Vl57Vnh3tLJsRT5lOGJwSY6bKqIHEUPvb5HU0Bf2RxTATmyzEQN19zSlu6kx4zUkQ14UN21iHUqCqJ6LXyofEZYnEVWu0kgabM9lKZhSOL4SoLGJ2v5V_63Gyu6fJyZmJxzXvnlQE0ehDGsCLI_2JPF6XUKsTMtuMZRAkZSL02gjJkZYNJubeLuM83O2VOtkjn88pB1VhsdTuEVKbZBCyxAfW2CbxFRwRK5gMhqdMdR1qK0DBRqqnbSUvrr7gtKiV_pKVUxFeVBROqS9Nugx9MK3xDopBodE4oUAiK37mD.0PwlVn_pnFc0uQQNxWBOqqcWgo4OWurEZ3qJPjsuP.wL6sndYK45j0pI6Zm5PJ5RoT.ZkAhAijwV6MbtodqizwJOv8vpMNNiPq_ybnj6VcdWrbi7NhGUVYXrqpfoFypR8SaUaYg7rTCp3Xc1sTRMQw2f_ab8yb8wLVe19EnNG_SZVm79CnXgaV.qA9gfMUw7dncyKbqn9l_h8jXUrLezS0OucgcJ20MZGyiZHY0eLVp.ZS2xY2olJ44lWACoiN0H54hyxpUGnQxuZhPlCFN3DJFNYGfP.IshJw5T1cDieUwkMFfL3w5JcdPh0cES6scydGWlROZ3tnKxHUHT2brsZoe9h7jmYYTLaJbG5PcDO8e5dh3WIglBDYrXNWfrL8QCIXwtgEK88pOO60_WtvzthrdM0x_.4CNXLHPLHv2eJ4rI1dWt9nOeTy4WNdXLktSN5l2_THBh6xloHpIeKcyf6j2GGoQO2bTvuYABkOdGtSORiiRjSJ1i1kWF5QJcIWpFRemKOpKF0vXrzRRJAYRf4Lt8fbh2dooiImKqRdiXncHXMHBysBXcTyVH5iBoX37DKrpsZkXP2uiU.VF5oG6LOn2TOd38Jgoi6l37NY15vaXeEg6EFZw5KHEyn2PLOd9kvy4FbhzhfjHbVvuof.ggB6LoqNMKtVtoXTKKfx9a0wARNK4HfsfPF06VZOjvd1LX8Wzlrr5UtUWosMoEPmM9NbJ_E2sB8k5DwlTOsfHUks_lmUxsQNr3xDs7C363MK1mt.dUWJ9XGm0h5cvSMha3i1SQQhTXLv6RAk1BD7t_K4IuoPzLE8oE2UaQ..QQrxtpVsAkYKTWCkWcOdbL1FF1mMF7rh6w0Gsh7ETIVWTRzcM4kFn9Dlzxh_tpzlozsXMg1XgiKWRlcWRjTLbY7sIJqTt5E9x4fpdPd06zUa56g6Chw7QqElPn3VgRvPvmM5lj6owPiAW1n_K_aeQbZCNjn3xlwGrsB7EykuUJg98W2EJHghnH.RppgG1Zokr6Bzp4KQPnGL4BMqr4gHK1J7zjuC0VXnHehzSlrxEeGn761wBsfI70k', + '6e598580991b23da60b50de353ecd7be82cbaa04a283acff81a7abbaebc64e10': 'ZhR68_OeLGIT1blglp0v39UpIkfYfAaEC8878.6tAY0-1741189317-1.2.1.1-.4GefhDsbhTEryFpybpNySSL2VtJ5cRzwxpdMd7Z5oU8qlspFIi_0vQ5jooMr7GgP_mP6wRFJDW6yUkOdBQRvKEZnyep_P9u4h6GwppGJhMTniFv3I9RoAq8PYZALkFGiwZCsCsB3OLplBdkPegTjwJUHCCif1ZlgXAP1ZtG61pCNWT2DSLn_p3fW.Q6prUM1VNPLBy69zw4MrBxgZZPK.qrqVX85dvlLy03W2UA7DJmXwyMilgPWs3Qc43zIsn6CXXlifliNv_3VUI003jsgZubzKop1TDZ_dm4afIIndaInD_iDtrO.01Mw.Ir7WYs.pkF3YBXM81SHZ4Nn2r0Um_ClyN643qbpA_poblAXix2XjAb1rtTp8DRXRciHe1P8nww7yPWa1W8E4PJy7rzj1klcGS6ccx7mDm056rhc_rt6WHPVe3labuxjGtJUTboRyqvnSrdqZs0rhv21vD2RJk1BtolGmVOY7CPei2VapMfXcpv60ROZtpNJMVCtnrMdVvgflniaNMSiwvEXBKcizTr61w6ZM39lYjfc.DA7RfKSEpJi6itprKtJd3FMoYlHqtZQEmbq7WMw93CzV.TDEe8gB5jx3jwo2bFiO5aNuL5NswFgZTbZeQ2_9bAEpLy3iIS7yBFFUBQ0DxMCkCMEDEkDmm1.BjT9attJunefBqg8ElRN27_iPhez.MD1SqedrDX3_azxaSlckzZT222e2WGkQwaaQW7oW.xH_WXBpe6_.de9YD5LRTA5fv1y0fX2yl8CpQwrV1n8N9N5KO8m8xBlCBysto9FlTwuZipUw9SdNX7ufuOhYTP7me3dgCLQv.0TNHwJSa2yegQSuDl2hRKtMqCbApP1x7T_MBM9i4RMUmYwPsDNt5_LRG2ApszmqID8xrX55b1LaEANR.QjPo2ZhrbtQNBK.hUHNI7x7CdHs40ls_Qlmchly3CCdsBkcz1QNaiWuVbOMBNJEEB1H00MIEDXepGDk1OT5d05wnVIDjdZYCavCye0AvjTwyqNqHU8pELaAeosJWSqtWEVBpntr7lMqXTBauh.eSc_90bMwmwVdeCR0aUAu_Ny2j6z2jXlexrkVQpmV4HWjmfJni_qkJvGlE5Gu_tMCJjddsdMr8ulPQWCCHxN11g3vI_tLmBoO5hh8sR5G5glXaIAejdLR.bdEw1sffTZyKJwgQ.nKbIz228aqEOraJC4AxTQs_AWI.OKR7zGHmUlmrgtkYOr8Rz3gdOjlkinJqJhACjIe1AGOUH4qK5n.QEdsDCCrlrc3FkqzLfhOPtCDiGYuAzBNRpFPomk8csFBz9ql6I5VJ0bJxwDF18GBM2irBsNqFSm5Jf1kQ3N93M4ZUpcCJ1712ziuqS1USLhY1oyfR.8Mz6uKgniepMha3IyiU0ayBaziu7PMV4MAJqard78mOBLTQKCIVlP58FuXmrwBR3wx1s99anrcSD1Z06Ha3YmhptPaotgB84oZiiOC49hLxJD_sdDDineeoU0WigNErVkylMJ_IdHcjhvPWsJnv_ohJbxYhK9TPPhOCpMSNsLQK5ehwbzlW4jUDuh8hwvVFsqAyjIMhtoBSE9.SzbywNqEQ7N4z4WwlcbLaxQS9FHHp4TBuNdIEWxyfudz5dNCo.XSqFQU2zXC9h1_NxxyGYKWHBfX_RImvAwbePtGSKuKxFGmfTsmPI6PyWjo139_zOGaNneKbxiqyD1UBde26aqui9LgZEWvtTVDL49k8WkxNPlO_R6rbhe6EwTj32F_6sY8dniHDF3vUHlGKdhfxf.XfWNLSzwtlPa3sWe2gj5iq_X8JNZgEeKD1k94PF4PECSCTfNTNcVbSKyO9nXh6mddvyGkbgK1gbNDlcQHtjJNdSNtcEyOpWLPyPmjImbox7JaNn.ldukMwJ3C68rIBDqHVUSI8_5XdsWsJHRn4Ia_nSvO42POpI0OAC0gdGyC32UYoFrMY2ZhQJIrWeL5Icp5o62TOpJ8zgLbND953iqOdxMGfHVxqSoaHwqx5GSCF_n_7ew9T0VyJlg6AszpnkNranJqESFILA3cbOJQ3HJ_Ls8OWjfSYfPe1p4Ywzeer7tu_i4.804TH.OT2G6oiyzyI73T0hcXp.ryslhejUF1vjy1Y6bNpYZLCrYqz92PvuC.BvkzafaX_CFS7F8oq3qq5W._MSlXgg7tmtEh2M0xsEvTVyaabvDbgE.6mJUxS2PXTSV5gJ_XFpKLG14MQOXbtnGe2yy7gFWp7uBs62Y8jeMrAm_O6EMqF1BlveTca5okKjQsRcqLqP1eww4.ofbDWiOf15277FIYuTWnvEROsnxkv4pKI_d99SORab6HBs4_rohdrWaOVNiiTAx.7AXj3jwsDS0zuENXVqkicM1N9zP2uRfi7UIFuivX1P9LdgPUYgeGPcWGOtMpSXYEUS03rnPcKgVhxNk98OqszVH7.HeD5l0_eFsNYmUjnEhsjn9Ou9aldxpe044k8PY7at.li1iUF0RI0Ejmtr8BL.B6ue5OPR9NldfKz6SVImcK.3WncZBt.pFNh8.UFwcWWi5n7wNCBXHIJfif_dIljeQTQVercJglnxMKanBoz0rSjo4ep1YmcvWcoSffHW1XNdZ8UhfQjmKHyefod7WJo3dUjNoA6Hyu8S_OdklHBqmHERyTy8zUvxntmiPcd2xaYf', + '36ff6248f65188bf84765b4f9f16789df2a522c5d132bb8d275f15d273c986bf': 'gOy7UhEi6LyMVNz2.e5jiWbKGW4U1aeHXOKpnKAPwlE-1741189358-1.1.1.1-.75nzfIDuPdP7tbAuIKQI1PQOs0.fe.cbtjneFBMEpalt3jp9UYUxyIXbqMr1ayt1o.p1FsHsj.zmuKTu8ilGNMGpbvZ9AkGraZ8v2FjSUrBs..RhBs45pS761RhZ_6ULj0C_WGwgPFc9gw4Mo08c6e0zwmtvHYXeA6s992jnypGOULp1IhGGRe4tdAQo00B', + } + + response = requests.post( + 'https://www.doordash.com/store/orlando-china-ocean-orlando-24579150/', + params=params, + cookies=cookies, + headers=headers, + data=data, + ) + print(response.text) + + def store(self): + cookies = { + 'cf_clearance': '4nu56rwYVjgmEhmhzLzWE2lUkGSif3bRcIS7rZEFO_8-1741189789-1.2.1.1-39bCLNa.HimyPNWE5OX3KNIGsre3Uyz0HgwU7WfEbCbSP2wWU.WzmwReED0WfQW8oUrtTH7Mmdr3mq7cZCXbsyI8zn0hii2mVdC0QvdKxfUv_liW6QZZy.PUCOI.GCT4JAiP4s8afKZiK2Hu2AGuzEJnxpdu85yuMeajDZstihieiDwYf5HC2M2R74SciEqCUtb7GS8VJAuY_dQl6Xulqw0ywKPtmZabX.kJJxMm41DV71fSNBrw4AAX3E0q7c3G4TeuKrcyvkKdy8LMpOjilNXaOzMOliLijJa7VrJkgcVJUSXf9MtacV0O3klUFcxAAdm5hQy0Tw8Ms0QflQorTTJ514OzGbu9k2YQsn7uyibz_H5k3kLPvmRuoQzIwh532xZMKFIt8MizE6XMcZf.njOXhbmqQ3mNFkPW7Y9SwhAsrH_G6whURaWrmQjNYe3TeFDr0IQN6H3YsIGvX_0bEiBZ7aDW6c8KChgS7v12mRM', + 'lastRskxRun': '1741189790792', + '_ga_BXB2XKP8LL': 'GS1.1.1741189794.1.0.1741189794.0.0.0', + '_ga_J4BQM7M3T2': 'GS1.1.1741189368.1.1.1741189794.25.0.1702931391', + '_ga': 'GA1.2.1107195518.1741189794', + '_uetvid': '7e0568d0f9d811ef8225f7d345309425|1ne431i|1741189796909|4|1|bat.bing.com/p/insights/c/o', + '__cfwaitingroom': 'ChgvSGh1RkpBc3FiZ1hpZ0g5dG5MY1pRPT0SjAJyUytBQUovajE1Z2hWTkE2OW5kRzhhUTdKQkM0c1NIY0VWNkhZdndJK1FZVko4eS8rbUxYU1I5UHFtYW5tZitzMDBMWFNwUVllK1gySnRoLzdjUC9LOFUvai90aStHU3QyZWh2U3pNbHF5TFludGlKb3ZDaVZKUjlPbE9maDZsWXo1Z0I1YlJxTFBmd0JTVUVQbTR3bTlCc0dUL2RxWGE1dGt2NHRhTElMK3VRTWVkdWpEOTQ2RnpRKzMyNHdoZDdHOTd1bVNmZHBSUk9Fdk1LbDJRWGp5UlBPM0JkdUVOZThRekJlUnRlRTVBb3FDcFZQeEF3MUhBUXRuMUhtTzdzS05ubWpQalNqdz09', + '__cf_bm': 'IgYmFAKo0m17Bd9zrC3TxmYCcY7A8Z3T1VA9RlC5r2U-1741189802-1.0.1.1-wTjgUnO70QxQRNK497JzLMMf_GlQH6hXzhyN_BgWpYRXtIsKmlHyJiIXRJV_OnZhFaoUF2dptNWFOQhso08EF7nowNmbk8uc.OzZwBY6hGYIaKwuM6ejWPKJ3_RY2c4u', + '_cfuvid': 'vHXGbiJ8z27CvWUMoLxxUy7t_Owf3MgJL0Lmk0sGK.8-1741189802499-0.0.1.1-604800000', + 'amplitude_id_8a4cf5f3981e8b7827bab3968fb1ad2bdoordash.com': 'eyJkZXZpY2VJZCI6IjUyMTRkZTg3LTIwNzMtNDJjNS1hMWY1LWUyM2U1NzQ4OTFkY1IiLCJ1c2VySWQiOm51bGwsIm9wdE91dCI6ZmFsc2UsInNlc3Npb25JZCI6MTc0MTE4OTc5MzY5OSwibGFzdEV2ZW50VGltZSI6MTc0MTE4OTgyMDE4MSwiZXZlbnRJZCI6NSwiaWRlbnRpZnlJZCI6Mywic2VxdWVuY2VOdW1iZXIiOjh9', + } + + headers = { + 'accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7', + 'accept-language': 'zh-CN,zh;q=0.9', + 'cache-control': 'no-cache', + 'pragma': 'no-cache', + 'priority': 'u=0, i', + 'referer': 'https://www.doordash.com/store/orlando-china-ocean-orlando-24579150/?srsltid=AfmBOopVpfmVadkxGCuL8OFMk-I2G54QsfI0akAcPzxvLYbz8Wzxp0P0&__cf_chl_tk=Id3Y.U2lJHpLzA5FmcHBoe6BfOodJN1PBWNO4H5qEuA-1741189781-1.0.1.1-0eEqpSdGuZHhOfy.CS9y3jQptQo.ajcHXN0ot.A5QVc', + 'sec-ch-ua': '"Not(A:Brand";v="99", "Google Chrome";v="133", "Chromium";v="133"', + 'sec-ch-ua-arch': '"x86"', + 'sec-ch-ua-bitness': '"64"', + 'sec-ch-ua-full-version': '"133.0.6943.142"', + 'sec-ch-ua-full-version-list': '"Not(A:Brand";v="99.0.0.0", "Google Chrome";v="133.0.6943.142", "Chromium";v="133.0.6943.142"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-model': '""', + 'sec-ch-ua-platform': '"Windows"', + 'sec-ch-ua-platform-version': '"10.0.0"', + 'sec-fetch-dest': 'document', + 'sec-fetch-mode': 'navigate', + 'sec-fetch-site': 'same-origin', + 'sec-fetch-user': '?1', + 'upgrade-insecure-requests': '1', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36' + } + + params = { + 'srsltid': 'AfmBOopVpfmVadkxGCuL8OFMk-I2G54QsfI0akAcPzxvLYbz8Wzxp0P0', + } + + response = requests.get( + 'https://www.doordash.com/store/orlando-china-ocean-orlando-24579150/', + params=params, + cookies=cookies, + headers=headers, + ) + print(response.text) + print(response.status_code) + +if __name__ == '__main__': + dd = DoorDash() + # dd.parse() + dd.store() \ No newline at end of file diff --git a/web/fnrc_vip/2db.py b/web/fnrc_vip/2db.py new file mode 100644 index 0000000..9806d89 --- /dev/null +++ b/web/fnrc_vip/2db.py @@ -0,0 +1,200 @@ +import requests +import pymysql +import re +from datetime import datetime + +# ==== 数据库配置 ==== +MYSQL_CONFIG = { + 'host': '39.101.135.56', + 'user': 'tsreshub_prod', + 'password': 'Tr5h$Prod!92@TsRH', + 'database': 'tsreshub_db', + 'port': 3306, + 'charset': 'utf8mb4' +} + +# ==== 请求配置 ==== +HEADERS = { + 'accept': 'application/json, text/plain, */*', + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8', + 'cache-control': 'no-cache', + 'content-type': 'application/json;charset=UTF-8', + 'origin': 'https://www.fnrc.vip', + 'pragma': 'no-cache', + 'priority': 'u=1, i', + 'referer': 'https://www.fnrc.vip/enterprise/resume_store/list', + 'sec-ch-ua': '"Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-platform': '"Windows"', + 'sec-fetch-dest': 'empty', + 'sec-fetch-mode': 'cors', + 'sec-fetch-site': 'same-origin', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', +} +COOKIES = { + 'PHPSESSID': 'ca613ae99706037e356a247500acb97b', + 'auth-token': 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3NDczNzA1ODUsImp0aSI6IjBlZDI0NTM0LWE0NjEtNDkxNC1iNDU1LWQxZGEzYzQ5N2U0NiIsIm5hbWUiOiIxODYxNzg3MjE4NSIsInVzZXJfaWQiOiIxYTJkODFjMTFkM2MzMmVhYmVlNWFkM2E3NGFmYWViNyIsInRlbmFudF90b2tlbiI6ImQzNWVjMmEzNjAxODM1NWE4MTg3ZTEyODI3MzE3ZGRjIn0.HoaWksDiMxtkbBJ8jVPlKLKzd1UqNHo4KfecS2uVUaM', + 'company_sign': '', + 'company_nonce': '', + 'cuid': '', +} + +# ==== 字段清洗函数 ==== +def extract_int(s): + try: + return int(re.search(r'\d+', str(s)).group()) + except: + return None + +def parse_datetime(s): + try: + return datetime.fromisoformat(s) + except: + return datetime(2019, 12, 12) + +def clean_item(item): + reverse_field_map = { + 'resume_id': 'resume_id', + 'user_name': 'name', + 'sex_show': 'gender', + 'user_age': 'age', + 'area_show': 'job_location', + 'birthday': 'birthday', + 'education_level_msg': 'education', + 'expect_job': 'expected_position', + 'last_edit_time': 'update_time', + 'marry_status_show': 'marital_status', + 'residence': 'current_location', + 'phone_encrypt': 'phone', + 'work_type_show': 'job_property', + 'work_status_show': 'job_status', + 'work_1_description': 'work_1_description', + 'work_1_time': 'work_1_time', + 'work_1_experience': 'work_1_experience', + 'work_2_description': 'work_2_description', + 'work_2_time': 'work_2_time', + 'work_2_experience': 'work_2_experience', + 'work_3_description': 'work_3_description', + 'work_3_time': 'work_3_time', + 'work_3_experience': 'work_3_experience', + 'work_4_description': 'work_4_description', + 'work_4_time': 'work_4_time', + 'work_4_experience': 'work_4_experience', + } + + experience = item.get("experience", []) + for j in range(4): + if j < len(experience): + company = experience[j].get("company", "") + time_line = experience[j].get("time_line", "") + content = experience[j].get("content", "") + else: + company = '' + time_line = '' + content = '' + item[f"work_{j + 1}_experience"] = company + item[f"work_{j + 1}_time"] = time_line + item[f"work_{j + 1}_description"] = content + + cleaned = { + reverse_field_map[k]: v + for k, v in item.items() + if k in reverse_field_map + } + + if "age" in cleaned: + cleaned["age"] = extract_int(cleaned["age"]) + + if "height" in cleaned: + cleaned["height"] = extract_int(cleaned["height"]) + + if "weight" in cleaned: + cleaned["weight"] = extract_int(cleaned["weight"]) + + if "update_time" in cleaned: + cleaned["update_time"] = parse_datetime(cleaned["update_time"]) + + cleaned["source_id"] = 3 + return cleaned + +# ==== 主逻辑 ==== +def main(): + session = requests.Session() + session.headers.update(HEADERS) + session.cookies.update(COOKIES) + + connection = pymysql.connect(**MYSQL_CONFIG) + cursor = connection.cursor() + + url = "https://www.fnrc.vip/job/company/v1/resume/page" + all_items = [] + + for page in range(6, 8): + payload = { + 'step': 1000, + 'page': page, + 'education_level': [], + 'arrival_time': [], + 'work_time': [], + 'area_id': [], + 'keywords': '', + 'work_status': '', + 'work_status_show': '求职状态', + 'category_id': '', + 'work_type': '', + 'work_type_show': '是否兼职', + 'sex': '', + 'sex_show': '性别', + 'is_head': '', + 'is_head_show': '有无照片', + 'job_id': '', + 'age': [], + 'age_show': '年龄', + 'refresh_time': 0, + 'site_id': '', + 'site_id2': '', + 'province': '', + 'city': '', + 'county': '', + 'provinceArr': [], + 'cityArr': [], + 'countyArr': [], + 'only_job_category': 0, + } + + try: + resp = session.post(url, json=payload, timeout=10) + resp.raise_for_status() + data = resp.json().get('data', []) + print(f"📖 第{page}页拿到 {len(data)} 条数据") + for item in data: + all_items.append(clean_item(item)) + except Exception as e: + print(f"❌ 请求第{page}页失败: {e}") + + if all_items: + keys = all_items[0].keys() + columns = ', '.join(keys) + placeholders = ', '.join(['%s'] * len(keys)) + update_clause = ', '.join([f"{key}=VALUES({key})" for key in keys if key != 'resume_id']) + + sql = f""" + INSERT INTO resumes_resumebasic ({columns}) + VALUES ({placeholders}) + ON DUPLICATE KEY UPDATE {update_clause} + """ + + try: + values = [tuple(item.values()) for item in all_items] + cursor.executemany(sql, values) + connection.commit() + print(f"✅ 成功插入 {len(all_items)} 条数据") + except Exception as e: + print(f"❌ 批量插入失败: {e}") + connection.rollback() + + cursor.close() + connection.close() + +if __name__ == "__main__": + main() diff --git a/web/fnrc_vip/dow.py b/web/fnrc_vip/dow.py new file mode 100644 index 0000000..e5dc62e --- /dev/null +++ b/web/fnrc_vip/dow.py @@ -0,0 +1,94 @@ +from web.Requests_Except import * +import pandas as pd + +r_id_list = [30113,37407,23330,44513,36089,3456,7916] + + +pd_data = { + "resume_id": [], + "姓名": [], + "电话": [], +} + +cookies = { + 'auth-token': 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3NDczNzA1ODUsImp0aSI6IjBlZDI0NTM0LWE0NjEtNDkxNC1iNDU1LWQxZGEzYzQ5N2U0NiIsIm5hbWUiOiIxODYxNzg3MjE4NSIsInVzZXJfaWQiOiIxYTJkODFjMTFkM2MzMmVhYmVlNWFkM2E3NGFmYWViNyIsInRlbmFudF90b2tlbiI6ImQzNWVjMmEzNjAxODM1NWE4MTg3ZTEyODI3MzE3ZGRjIn0.HoaWksDiMxtkbBJ8jVPlKLKzd1UqNHo4KfecS2uVUaM', + 'PHPSESSID': '04cdc37cc18bb148fec8e276a6796eed', +} + +headers = { + 'accept': 'application/json, text/plain, */*', + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8', + 'cache-control': 'no-cache', + 'content-type': 'application/json;charset=UTF-8', + 'origin': 'https://www.fnrc.vip', + 'pragma': 'no-cache', + 'priority': 'u=1, i', + 'referer': 'https://www.fnrc.vip/enterprise/resume_store/list', + 'sec-ch-ua': '"Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-platform': '"Windows"', + 'sec-fetch-dest': 'empty', + 'sec-fetch-mode': 'cors', + 'sec-fetch-site': 'same-origin', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', +} + +base_url = 'www.fnrc.vip' +protocol = 'https' + +Request = MR(base_url, protocol) +Request.set_default_cookies(cookies) +Request.set_default_headers(headers) + + +def get_resume_info(resume_id): + url = '/job/company/v1/resume/loadResume' + json_data = { + 'resume_id': resume_id,} + response = Request.post(url, json=json_data) + return response.to_Dict() + +def get_phone_encrypt(resume_id): + url = '/job/company/v1/company/getResumeUserPhone' + json_data = { + 'resume_id': resume_id, + 'delivery_id': '', + 'is_pc': 1, + } + response = Request.post(url, json=json_data) + return response.to_Dict() + +def buy_resume(resume_id): + url = '/job/company/v1/company/buyResumeUserPhone' + json_data = { + 'resume_id': resume_id, + 'from_type': '', + } + response = Request.post(url, json=json_data) + return response.to_Dict() + +def integrate(): + for resume_id in r_id_list: + resume_info = get_resume_info(resume_id) + phone_encrypt = get_phone_encrypt(resume_id) + if hasattr(phone_encrypt,'phone'): + phone_encrypt = phone_encrypt.phone + else: + buy_resume_info = buy_resume(resume_id) + if hasattr(buy_resume_info,'buy_success') and buy_resume_info.buy_success: + phone_encrypt = get_phone_encrypt(resume_id).phone + + else: + phone_encrypt = None + + pd_data['resume_id'].append(resume_id) + pd_data['姓名'].append(resume_info.user_name) + pd_data['电话'].append(phone_encrypt) + + df = pd.DataFrame(pd_data) + df.to_excel('服务_Phone.xlsx', index=False) + print("数据已保存到 厨师.csv") + +if __name__ == '__main__': + integrate() + diff --git a/web/fnrc_vip/fnrc_vip.zip b/web/fnrc_vip/fnrc_vip.zip new file mode 100644 index 0000000..4eb46d1 Binary files /dev/null and b/web/fnrc_vip/fnrc_vip.zip differ diff --git a/web/fnrc_vip/main.py b/web/fnrc_vip/main.py new file mode 100644 index 0000000..221fddf --- /dev/null +++ b/web/fnrc_vip/main.py @@ -0,0 +1,147 @@ +from web.Requests_Except import * +import datetime +import pandas as pd + +headers = { + "accept": "application/json, text/plain, */*", + "accept-language": "zh-CN,zh;q=0.9,en;q=0.8", + "cache-control": "no-cache", + "content-type": "application/json;charset=UTF-8", + "origin": "https://www.fnrc.vip", + "pragma": "no-cache", + "priority": "u=1, i", + "referer": "https://www.fnrc.vip/enterprise/resume_store/list", + "sec-ch-ua": "\"Google Chrome\";v=\"137\", \"Chromium\";v=\"137\", \"Not/A)Brand\";v=\"24\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "sec-fetch-dest": "empty", + "sec-fetch-mode": "cors", + "sec-fetch-site": "same-origin", + "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36" +} +cookies = { + "PHPSESSID": "7e50a60cd4544448634f6f2a77c2e17d", + "auth-token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3NTMwMDMyNTIsImp0aSI6IjAxNDU1NjA1LTlhZDUtNDFlNS1iYzk5LWQwZGUyZTZkMWZjOCIsIm5hbWUiOiIxODYxNzg3MjE4NSIsInVzZXJfaWQiOiIxYTJkODFjMTFkM2MzMmVhYmVlNWFkM2E3NGFmYWViNyIsInRlbmFudF90b2tlbiI6ImQzNWVjMmEzNjAxODM1NWE4MTg3ZTEyODI3MzE3ZGRjIn0.ZCRc25o9J4DVykGriAXpEG5sQuJBwTrd-FpUKjnaq6Q", + "company_sign": "", + "company_nonce": "", + "cuid": "" +} +base_url = 'www.fnrc.vip' +protocol = 'https' +Requests = MR(base_url, protocol) +Requests.set_default_headers(headers) +Requests.set_default_cookies(cookies) +keyword = "" +pd_data = { + 'resume_id': [], + '姓名': [], # user_name + '求职区域': [], # area_show + '生日': [], # birthday + '学历': [], # education_level_msg + '学校': [], # education.school + '期望职务': [], # expect_job + '最后活跃时间': [], # last_edit_time + '婚姻': [], # marry_status_show + '现居地': [], # residence + '年龄': [], # user_age + '电话': [], # phone_encrypt + '性别': [], # sex_show + '求职类型': [], # work_type_show + '求职状态': [], # work_status_show + '工作1经历': [], + '工作1时间': [], + '工作1内容': [], + '工作2经历': [], + '工作2时间': [], + '工作2内容': [], + '工作3经历': [], + '工作3时间': [], + '工作3内容': [], + '工作4经历': [], + '工作4时间': [], + '工作4内容': [], +} +resume_list = [] + + +def getpageforkeyword(keyword: str, step: int = 100): + json_data = { + "step": step, + "page": 1, + "education_level": [], + "arrival_time": [], + "work_time": [], + "area_id": [], + "keywords": keyword, + "work_status": "", + "work_status_show": "求职状态", + "category_id": "", + "work_type": "", + "work_type_show": "是否兼职", + "sex": "", + "sex_show": "性别", + "is_head": "", + "is_head_show": "有无照片", + "job_id": "", + "age": [], + "age_show": "年龄", + "refresh_time": 0, + "site_id": "", + "site_id2": "", + "province": "", + "city": "", + "county": "", + "provinceArr": [], + "cityArr": [], + "countyArr": [], + "only_job_category": 0 +} + url = "/job/company/v1/resume/page" + res = Requests.post(url, json=json_data) + return res.to_Dict() + + +def organize_information_into_to_pandas(): + resp_obj = getpageforkeyword(keyword, 1000) + for i in resp_obj.data: + # resume_info = get_resume_info(i.resume_id) + pd_data['resume_id'].append(i.resume_id) + pd_data['姓名'].append(i.user_name) + pd_data['求职区域'].append(i.area_show) + pd_data['生日'].append(i.birthday) + pd_data['学历'].append(i.education_level_msg) + pd_data['学校'].append(';'.join([edu.school for edu in i.education])) + pd_data['期望职务'].append(i.expect_job) + pd_data['最后活跃时间'].append(i.last_edit_time) + pd_data['婚姻'].append(i.marry_status_show) + pd_data['现居地'].append(i.residence) + pd_data['年龄'].append(i.user_age) + pd_data['电话'].append(i.phone_encrypt) + pd_data['性别'].append(i.sex_show) + pd_data['求职类型'].append(i.work_type_show) + pd_data['求职状态'].append(i.work_status_show) + experience = i.experience + for j in range(4): + if j < len(experience) and experience[j].company: + company = experience[j].company + time_line = experience[j].time_line + content = experience[j].content + else: + company = '' + time_line = '' + content = '' + pd_data[f'工作{j + 1}经历'].append(company) + pd_data[f'工作{j + 1}时间'].append(time_line) + pd_data[f'工作{j + 1}内容'].append(content) + + +def main(keywords): + global keyword + keyword = keywords + organize_information_into_to_pandas() + df = pd.DataFrame(pd_data) + df.to_excel(f'{datetime.datetime.now().strftime("%Y%m%d")}_丰南_{keyword}.xlsx', index=False) + + +if __name__ == '__main__': + main("维修工") diff --git a/web/fnrc_vip/test.py b/web/fnrc_vip/test.py new file mode 100644 index 0000000..5bb0760 --- /dev/null +++ b/web/fnrc_vip/test.py @@ -0,0 +1,37 @@ +import requests + +cookies = { + 'auth-token': 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3NDczNzA1ODUsImp0aSI6IjBlZDI0NTM0LWE0NjEtNDkxNC1iNDU1LWQxZGEzYzQ5N2U0NiIsIm5hbWUiOiIxODYxNzg3MjE4NSIsInVzZXJfaWQiOiIxYTJkODFjMTFkM2MzMmVhYmVlNWFkM2E3NGFmYWViNyIsInRlbmFudF90b2tlbiI6ImQzNWVjMmEzNjAxODM1NWE4MTg3ZTEyODI3MzE3ZGRjIn0.HoaWksDiMxtkbBJ8jVPlKLKzd1UqNHo4KfecS2uVUaM', + 'PHPSESSID': '04cdc37cc18bb148fec8e276a6796eed', +} + +headers = { + 'accept': 'application/json, text/plain, */*', + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8', + 'cache-control': 'no-cache', + 'content-type': 'application/json;charset=UTF-8', + 'origin': 'https://www.fnrc.vip', + 'pragma': 'no-cache', + 'priority': 'u=1, i', + 'referer': 'https://www.fnrc.vip/enterprise/resume_store/list', + 'sec-ch-ua': '"Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-platform': '"Windows"', + 'sec-fetch-dest': 'empty', + 'sec-fetch-mode': 'cors', + 'sec-fetch-site': 'same-origin', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', + # 'cookie': 'auth-token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3NDczNzA1ODUsImp0aSI6IjBlZDI0NTM0LWE0NjEtNDkxNC1iNDU1LWQxZGEzYzQ5N2U0NiIsIm5hbWUiOiIxODYxNzg3MjE4NSIsInVzZXJfaWQiOiIxYTJkODFjMTFkM2MzMmVhYmVlNWFkM2E3NGFmYWViNyIsInRlbmFudF90b2tlbiI6ImQzNWVjMmEzNjAxODM1NWE4MTg3ZTEyODI3MzE3ZGRjIn0.HoaWksDiMxtkbBJ8jVPlKLKzd1UqNHo4KfecS2uVUaM; PHPSESSID=04cdc37cc18bb148fec8e276a6796eed', +} + +json_data = { + 'resume_id': 45144, +} + +response = requests.post('https://www.fnrc.vip/job/company/v1/resume/loadResume', cookies=cookies, headers=headers, json=json_data) + +# Note: json_data will not be serialized by requests +# exactly as it was in the original request. +#data = '{"resume_id":45144}' +#response = requests.post('https://www.fnrc.vip/job/company/v1/resume/loadResume', cookies=cookies, headers=headers, data=data) +print(response.json()) \ No newline at end of file diff --git a/web/fnrc_vip/www_fnrc_vip_cookies.json b/web/fnrc_vip/www_fnrc_vip_cookies.json new file mode 100644 index 0000000..9c9ccfb --- /dev/null +++ b/web/fnrc_vip/www_fnrc_vip_cookies.json @@ -0,0 +1,7 @@ +{ + "PHPSESSID": "7e50a60cd4544448634f6f2a77c2e17d", + "auth-token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3NTMwMDMyNTIsImp0aSI6IjAxNDU1NjA1LTlhZDUtNDFlNS1iYzk5LWQwZGUyZTZkMWZjOCIsIm5hbWUiOiIxODYxNzg3MjE4NSIsInVzZXJfaWQiOiIxYTJkODFjMTFkM2MzMmVhYmVlNWFkM2E3NGFmYWViNyIsInRlbmFudF90b2tlbiI6ImQzNWVjMmEzNjAxODM1NWE4MTg3ZTEyODI3MzE3ZGRjIn0.ZCRc25o9J4DVykGriAXpEG5sQuJBwTrd-FpUKjnaq6Q", + "company_nonce": "", + "company_sign": "", + "cuid": "" +} \ No newline at end of file diff --git a/web/fnrc_vip/www_qj050_com_cookies.json b/web/fnrc_vip/www_qj050_com_cookies.json new file mode 100644 index 0000000..da5657a --- /dev/null +++ b/web/fnrc_vip/www_qj050_com_cookies.json @@ -0,0 +1,4 @@ +{ + "PHPSESSID": "04cdc37cc18bb148fec8e276a6796eed", + "auth-token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3NDczNzA1ODUsImp0aSI6IjBlZDI0NTM0LWE0NjEtNDkxNC1iNDU1LWQxZGEzYzQ5N2U0NiIsIm5hbWUiOiIxODYxNzg3MjE4NSIsInVzZXJfaWQiOiIxYTJkODFjMTFkM2MzMmVhYmVlNWFkM2E3NGFmYWViNyIsInRlbmFudF90b2tlbiI6ImQzNWVjMmEzNjAxODM1NWE4MTg3ZTEyODI3MzE3ZGRjIn0.HoaWksDiMxtkbBJ8jVPlKLKzd1UqNHo4KfecS2uVUaM" +} \ No newline at end of file diff --git a/web/fnrc_vip/厨师.csv b/web/fnrc_vip/厨师.csv new file mode 100644 index 0000000..ae0e6b0 --- /dev/null +++ b/web/fnrc_vip/厨师.csv @@ -0,0 +1,43 @@ +resume_id,姓名,电话 +1241,李子,13513045060 +13448,刘聪,15081530150 +11640,于雪,15832560082 +5773,李雪,namespace(phone='15031877698') +778,王玉山,namespace(phone='13903151823') +16506,何立彬,namespace(phone='13831501533') +41328,孙朕堃,namespace(phone='13623331632') +3896,董振军,namespace(phone='13663370955') +45268,陈靖尧,namespace(phone='18812784911') +45300,葛逸恒,namespace(phone='15210096813') +23014,周德辉,namespace(phone='15102530538') +3498,王冀昆,namespace(phone='18732530825') +27397,徐桂新,namespace(phone='13933349702') +44810,吕雷,namespace(phone='18254857385') +4247,董女士,namespace(phone='18633448279') +3092,孙建勇,namespace(phone='15795905186') +16714,张立李,namespace(phone='18445528091') +43180,张宏双,namespace(phone='15613803918') +35849,么双路,namespace(phone='18942692728') +14441,王,namespace(phone='13323256632') +43669,徐,namespace(phone='18432756682') +43910,卢立军,namespace(phone='13230893072') +7889,江山,namespace(phone='19930029993') +9874,吴俊亮,namespace(phone='13803308204') +43962,梁远超,namespace(phone='13131538630') +26282,徐涛,namespace(phone='15232544412') +43872,董,namespace(phone='17736561036') +42954,闫文红,namespace(phone='15102575879') +42296,毕嘉乐,namespace(phone='15032511297') +43613,张娟,namespace(phone='17367651586') +43528,岳会强,namespace(phone='18622746933') +15160,何启圣,namespace(phone='17746155775') +20697,王一辉,namespace(phone='13031529634') +42091,王梦楠,namespace(phone='13473605736') +41277,高志良,namespace(phone='18903388242') +20258,刘宝良,namespace(phone='15075511071') +35638,宣冰,namespace(phone='15733793991') +41216,王志浩,namespace(phone='13703155523') +41525,杜双存,namespace(phone='13933319327') +40197,杨朝,namespace(phone='13111432186') +42071,文开,namespace(phone='15032533517') +24304,刘金国,namespace(phone='13582871130') diff --git a/web/grubhub/1.py b/web/grubhub/1.py new file mode 100644 index 0000000..1680b2d --- /dev/null +++ b/web/grubhub/1.py @@ -0,0 +1,35 @@ +import requests + +headers = { + 'accept': 'application/json', + 'accept-language': 'zh-CN,zh;q=0.9', + 'authorization': 'Bearer a8e6801d-0060-4288-a1a8-7a8003996871', + 'cache-control': 'no-cache', + 'if-modified-since': '0', + 'origin': 'https://www.grubhub.com', + 'perimeter-x': 'eyJ1IjoiOTIwNWMzOTAtZmVlMi0xMWVmLTljZTEtYzU0ODE2NWJhZGM5IiwidiI6IjhmNWZmZmMxLWZlZTItMTFlZi04OGY4LTNlNmE5YjdjNmY1NSIsInQiOjE3NDE3NDM5NTEwNzcsImgiOiI2Nzk1NDMzM2IwZTJmODk1NjJjOTM2ZDdmYjczYzM0MmM5NjViYzhlY2Y0MDg1ZDljOTY5NDA0N2Y5ODFkOWFiIn0=', + 'pragma': 'no-cache', + 'priority': 'u=1, i', + 'referer': 'https://www.grubhub.com/', + 'sec-ch-ua': '"Chromium";v="134", "Not:A-Brand";v="24", "Google Chrome";v="134"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-platform': '"Windows"', + 'sec-fetch-dest': 'empty', + 'sec-fetch-mode': 'cors', + 'sec-fetch-site': 'same-site', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', +} + +params = { + 'time': '1741743544922', + 'hideUnavailableMenuItems': 'true', + 'orderType': 'standard', + 'version': '4', +} + +response = requests.get( + 'https://api-gtm.grubhub.com/restaurants/10316176/menu_items/295249416128', + params=params, + headers=headers, +) +print(response.json()) \ No newline at end of file diff --git a/web/grubhub/main.py b/web/grubhub/main.py new file mode 100644 index 0000000..eb8e629 --- /dev/null +++ b/web/grubhub/main.py @@ -0,0 +1,475 @@ +import json +import time +import requests +from openpyxl import load_workbook +from openpyxl.styles import Font, PatternFill, Alignment, Border, Side + + + +class Grubhub: + def __init__(self): + self.proxies = {"http": "http://127.0.0.1:7890", "https": "http://127.0.0.1:7890"} + self.token = None + self.get_menuid_lit = {} + self.wb = load_workbook('Menu.xlsx') + self.modify_first_row = self.modify_first_row() + + def clear_sheet(self, sheet): + ws = self.wb[sheet] + for row in ws.iter_rows(min_row=2): # 首行不清空 + for cell in row: + if cell.value is not None: + cell.value = None + self.wb.save('grubhubMenu.xlsx') + + def clear_except_first_row(self, sheet): + ws = self.wb[sheet] + + # **解除所有合并单元格** + merged_ranges = list(ws.merged_cells.ranges) + for merged_range in merged_ranges: + ws.unmerge_cells(str(merged_range)) + + # **获取最大行和最大列** + max_row = ws.max_row + max_col = ws.max_column + + # **清除第二行及之后的所有数据和格式** + if max_row > 1: + for row in range(2, max_row + 1): # 从第二行开始清除 + for col in range(1, max_col + 1): + cell = ws.cell(row=row, column=col) + cell.value = None # 清除数据 + cell.fill = PatternFill(fill_type=None) # 清除背景色 + cell.font = Font() # 重置字体 + cell.alignment = Alignment() # 重置对齐方式 + cell.border = Border() # 清除边框 + + # **删除第二行及之后的所有行** + ws.delete_rows(2, max_row - 1 if max_row > 2 else 1) + + # **清除行级别格式** + for row in range(2, max_row + 1): + if row in ws.row_dimensions: + ws.row_dimensions[row].fill = PatternFill(fill_type=None) # 清除行级背景色 + ws.row_dimensions[row].font = Font() # 清除行级字体 + ws.row_dimensions[row].alignment = Alignment() # 清除行级对齐方式 + + # **保存 Excel** + self.wb.save('grubhubMenu.xlsx') + + def modify_first_row(self): + ws = self.wb["Modifier"] + source_row = 1 + row_data = {} + + # 提取第一行数据和格式 + for col in range(1, ws.max_column + 1): + source_cell = ws.cell(row=source_row, column=col) + + row_data[col] = { + "value": source_cell.value, # 数据 + "font": Font( + name=source_cell.font.name, + size=source_cell.font.size, + bold=source_cell.font.bold, + italic=source_cell.font.italic, + underline=source_cell.font.underline, + color=source_cell.font.color.rgb if source_cell.font.color else None + ), + "alignment": Alignment( + horizontal=source_cell.alignment.horizontal, + vertical=source_cell.alignment.vertical, + wrap_text=source_cell.alignment.wrap_text + ), + "fill": PatternFill( + fill_type=source_cell.fill.patternType, + fgColor=source_cell.fill.fgColor.rgb if source_cell.fill.fgColor else None, + bgColor=source_cell.fill.bgColor.rgb if source_cell.fill.bgColor else None + ) if source_cell.fill and source_cell.fill.patternType else None, + "border": Border( + left=Side(style=source_cell.border.left.style, color=source_cell.border.left.color), + right=Side(style=source_cell.border.right.style, color=source_cell.border.right.color), + top=Side(style=source_cell.border.top.style, color=source_cell.border.top.color), + bottom=Side(style=source_cell.border.bottom.style, color=source_cell.border.bottom.color), + ) if source_cell.border else None + } + row_data["row_height"] = ws.row_dimensions[source_row].height + return row_data + + def get_token(self): + headers = { + 'accept': '*/*', + 'accept-language': 'zh-CN,zh;q=0.9', + 'authorization': 'Bearer', + 'cache-control': 'no-cache', + 'content-type': 'application/json;charset=UTF-8', + 'origin': 'https://www.grubhub.com', + 'pragma': 'no-cache', + 'priority': 'u=1, i', + 'referer': 'https://www.grubhub.com/', + 'sec-ch-ua': '"Chromium";v="134", "Not:A-Brand";v="24", "Google Chrome";v="134"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-platform': '"Windows"', + 'sec-fetch-dest': 'empty', + 'sec-fetch-mode': 'cors', + 'sec-fetch-site': 'same-site', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', + } + + json_data = { + 'brand': 'GRUBHUB', + 'client_id': 'beta_UmWlpstzQSFmocLy3h1UieYcVST', + 'device_id': 1277616243, + 'scope': 'anonymous', + } + + proxies = { + "http": "http://127.0.0.1:7890", + "https": "http://127.0.0.1:7890" + } + response = requests.post('https://api-gtm.grubhub.com/auth', headers=headers, json=json_data, proxies=proxies) + # print(response.json()) + return response.json().get("session_handle", {}).get('access_token') + + + def get_menu_items(self): + headers = { + 'accept': 'application/json', + 'accept-language': 'zh-CN,zh;q=0.9', + 'authorization': 'Bearer {}'.format(self.token), + 'cache-control': 'no-cache', + 'if-modified-since': '0', + 'origin': 'https://www.grubhub.com', + # 'perimeter-x': 'eyJ1IjoiZTljMjg0OTAtZmU3Ni0xMWVmLTljZGQtM2JjYWU1OWQwYmIwIiwidiI6ImU3YWY1NDVkLWZlNzYtMTFlZi05MDc5LWQxNGEzZThjMWMyZSIsInQiOjE3NDE2OTc3MTMwNjAsImgiOiJjNWNkM2M5ZTU4NTMwNzE4YzQ4YzU1Y2E1NDM3ZWYwMjUwMmY0MGFjMjkyYTJkY2JlZWY5OGEwN2FjMTMyMzFmIn0=', + 'pragma': 'no-cache', + 'priority': 'u=1, i', + 'referer': 'https://www.grubhub.com/', + 'sec-ch-ua': '"Chromium";v="134", "Not:A-Brand";v="24", "Google Chrome";v="134"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-platform': '"Windows"', + 'sec-fetch-dest': 'empty', + 'sec-fetch-mode': 'cors', + 'sec-fetch-site': 'same-site', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', + } + + params = { + 'orderType': 'standard', + 'version': '4', + } + + response = requests.get('https://api-gtm.grubhub.com/restaurants/10316176/menu_items/', params=params, + headers=headers, proxies=self.proxies) + + menu_json = json.dumps(response.json(), indent=4) + with open('menu.json', 'w', encoding='utf-8') as f: + f.write(menu_json) + + def get_menuid(self): + + # headers = { + # 'accept': 'application/json', + # 'accept-language': 'zh-CN,zh;q=0.9', + # 'authorization': 'Bearer {}'.format(self.token), + # 'cache-control': 'no-cache', + # 'if-modified-since': '0', + # 'origin': 'https://www.grubhub.com', + # # 'perimeter-x': 'eyJ1IjoiZTljMjg0OTAtZmU3Ni0xMWVmLTljZGQtM2JjYWU1OWQwYmIwIiwidiI6ImU3YWY1NDVkLWZlNzYtMTFlZi05MDc5LWQxNGEzZThjMWMyZSIsInQiOjE1Mjk5NzEyMDAwMDAsImgiOiJhN2U0MjMwNWY4YTkwMGRlYTA3OTIwZGJmNjkzNjM3MDlhZTg2ZTNiYTFlN2VlMzhkODZkNDA5Njg1OTI2MTRjIn0=', + # 'pragma': 'no-cache', + # 'priority': 'u=1, i', + # 'referer': 'https://www.grubhub.com/', + # 'sec-ch-ua': '"Chromium";v="134", "Not:A-Brand";v="24", "Google Chrome";v="134"', + # 'sec-ch-ua-mobile': '?0', + # 'sec-ch-ua-platform': '"Windows"', + # 'sec-fetch-dest': 'empty', + # 'sec-fetch-mode': 'cors', + # 'sec-fetch-site': 'same-site', + # 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', + # } + # + # params = { + # 'orderType': 'STANDARD', + # 'platform': 'WEB', + # 'enhancedFeed': 'true', + # } + # + # response = requests.get('https://api-gtm.grubhub.com/restaurant_gateway/info/volatile/10316176', params=params, + # headers=headers, proxies=self.proxies) + # menu_id_json = json.dumps(response.json(), indent=4) + # with open('menu_id.json', 'w', encoding='utf-8') as f: + # f.write(menu_id_json) + self.clear_sheet("Categories") + ws = self.wb["Categories"] + with open('menu_id.json', 'r', encoding='utf-8') as f: + menu_id = json.load(f) + menu_info = menu_id.get("object", {}).get("data", {}).get("enhanced_feed", []) + menu_id_dic = {} + idx = 2 + for menu in menu_info: + if menu.get("id") == "None": + continue + else: + menu_id_dic[menu.get("name")] = menu.get("id") + ws.cell(row=idx, column=1, value="Online All Day Menu") + ws.cell(row=idx, column=2, value=menu.get("name")) + ws.cell(row=idx, column=3, value="") # 翻译 + idx = idx + 1 + self.get_menuid_lit = menu_id_dic + self.wb.save('grubhubMenu.xlsx') + + def get_itme(self): + self.clear_except_first_row("Item") + self.clear_except_first_row("Modifier") + index = 2 + s = requests.session() + ws = self.wb["Item"] + + data_info = [] + size_identifiers = ["(S)", "(L)", "(小)", "(大)", "(Half Gallon)", "(One Gallon)", "1.4pcs", "8pcs", "4pcs"] + for i in self.get_menuid_lit.keys(): + print(i, self.get_menuid_lit[i]) + headers = { + 'accept': 'application/json', + 'accept-language': 'zh-CN,zh;q=0.9', + 'authorization': 'Bearer {}'.format(self.token), + 'cache-control': 'max-age=0', + 'if-modified-since': '0', + 'origin': 'https://www.grubhub.com', + 'perimeter-x': 'eyJ1IjoiY2M3YWQyNDAtZmVlMi0xMWVmLTljZTEtYzU0ODE2NWJhZGM5IiwidiI6IjhmNWZmZmMxLWZlZTItMTFlZi04OGY4LTNlNmE5YjdjNmY1NSIsInQiOjE3NDE3NDQzNTI1NjAsImgiOiI5YWFjOTBkZDBmZTc1N2EzOTJlYmMwM2ViMTNiZGU1YzhhMWY4MDljYzNmOTZlZjdhNDAwZWJlZGVmMDkxOTljIn0=', + 'pragma': 'no-cache', + 'priority': 'u=1, i', + 'referer': 'https://www.grubhub.com/', + 'sec-ch-ua': '"Chromium";v="134", "Not:A-Brand";v="24", "Google Chrome";v="134"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-platform': '"Windows"', + 'sec-fetch-dest': 'empty', + 'sec-fetch-mode': 'cors', + 'sec-fetch-site': 'same-site', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', + } + + params = { + 'time': '1741743447761', + 'operationId': '8e6c2210-fee2-11ef-a211-03a08d96f471', + 'isFutureOrder': 'false', + 'restaurantStatus': 'ORDERABLE', + 'isNonRestaurantMerchant': 'false', + 'merchantTypes': '', + 'orderType': 'STANDARD', + 'agent': 'false', + 'task': 'CATEGORY', + 'platform': 'WEB', + } + response = s.get( + 'https://api-gtm.grubhub.com/restaurant_gateway/feed/10316176/{}'.format(self.get_menuid_lit[i]), + params=params, + headers=headers, + proxies=self.proxies + ) + menucontent = response.json()["object"]["data"]["content"] + for menu in menucontent: + menuid = menu.get("entity").get("item_id") + item_name = menu.get("entity").get("item_name") + price = menu.get("entity").get("item_price").get("pickup").get("value") / 100.0 + description = menu.get("entity").get("item_description") + headers = { + 'accept': 'application/json', + 'accept-language': 'zh-CN,zh;q=0.9', + 'authorization': 'Bearer {}'.format(self.token), + 'cache-control': 'no-cache', + 'if-modified-since': '0', + 'origin': 'https://www.grubhub.com', + 'perimeter-x': 'eyJ1IjoiY2M3YWQyNDAtZmVlMi0xMWVmLTljZTEtYzU0ODE2NWJhZGM5IiwidiI6IjhmNWZmZmMxLWZlZTItMTFlZi04OGY4LTNlNmE5YjdjNmY1NSIsInQiOjE3NDE3NDQzNTI1NjAsImgiOiI5YWFjOTBkZDBmZTc1N2EzOTJlYmMwM2ViMTNiZGU1YzhhMWY4MDljYzNmOTZlZjdhNDAwZWJlZGVmMDkxOTljIn0=', + 'pragma': 'no-cache', + 'priority': 'u=1, i', + 'referer': 'https://www.grubhub.com/', + 'sec-ch-ua': '"Chromium";v="134", "N`ot:A-Brand";v="24", "Google Chrome";v="134"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-platform': '"Windows"', + 'sec-fetch-dest': 'empty', + 'sec-fetch-mode': 'cors', + 'sec-fetch-site': 'same-site', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', + } + + params = { + 'time': '1741743544922', + 'hideUnavailableMenuItems': 'true', + 'orderType': 'standard', + 'version': '4', + } + + response = s.get( + 'https://api-gtm.grubhub.com/restaurants/10316176/menu_items/{}'.format(menuid), + params=params, + headers=headers,proxies=self.proxies + ) + data = {"ism": 0, "sizes": [], "addons": [], "nameList": []} # **新增 nameList** + has_size_option = False + has_addon_option = False + customizationsList = response.json().get('choice_category_list', []) + for customizations in customizationsList: + title = customizations.get('name', '') + customization_entry = {"name": title, "list": [], "required": True if customizations.get('quantity_settings', {}).get('minimum_units',0) >= 1 else False, "min": customizations.get('quantity_settings', {}).get('minimum_units',0), "max": customizations.get('quantity_settings', {}).get('maximum_units',0)} + + + for item in customizations.get('choice_option_list', []): + option_title = item.get('description', '') + price = item.get('price', {}).get('amount', 0) / 100 + + # **大小份归一化** + if any(option_title.startswith(size) for size in size_identifiers): + data['sizes'].append({"name": option_title, "price": price}) + has_size_option = True + else: + customization_entry["list"].append({"name": option_title, "price": price}) + has_addon_option = True + + # **如果这个 `title` 是配菜分组,存入 `addons`** + if customization_entry["list"]: + data["addons"].append(customization_entry) + + # **在 ism=3 时,生成 `nameList`** + if has_size_option and has_addon_option: + data['ism'] = 3 # **大小份 + 配菜** + rename = data["addons"][0]["name"] + data['nameList'] = [f"{size['name']}: {rename}" for size in data["sizes"]] + elif has_size_option: + data['ism'] = 1 # **只有大小份** + elif has_addon_option: + data['ism'] = 2 # **只有配菜** + + ws.cell(row=index, column=1, value="Online All Day Menu") + ws.cell(row=index, column=2, value=i) + ws.cell(row=index, column=3, value=item_name) + ws.cell(row=index, column=4, value="") + ws.cell(row=index, column=5, value=price) + ws.cell(row=index, column=7, value=description) + if data['ism'] == 3 or data['ism'] == 1: + value5 = ";".join( + [f"{format(price if i['price'] == 0.0 else i['price'] + price, '.2f')}/{i['name']}" for i in + data['sizes']]) + ws.cell(row=index, column=5, value=value5) + if data['ism'] == 3: + v2 = "\n".join([i for i in data['nameList']]) + ws.cell(row=index, column=6, value=v2) + if data['ism'] == 2: + v2 = "\n".join([i['name'] for i in data['addons']]) + ws.cell(row=index, column=6, value=v2) + + if data['ism'] != 1: + for addons in data['addons']: + existing_addon = next((item for item in data_info if item["name"] == addons["name"]), None) + + if existing_addon: + existing_items = {item["name"] for item in existing_addon["list"]} + new_items = [item for item in addons["list"] if item["name"] not in existing_items] + existing_addon["list"].extend(new_items) + else: + data_info.append(addons) + index += 1 + self.wb.save('grubhubMenu.xlsx') + with open('menu_item.json', 'w', encoding='utf-8') as f: + f.write(json.dumps(data_info, indent=4)) + + def write_xlsx(self): + ws = self.wb["Modifier"] + self.clear_except_first_row("Modifier") + with open('menu_item.json', 'r', encoding='utf-8') as f: + data = json.load(f) + index = 2 + for i in data: + # **确保从 index > 2 才复制格式** + if index > 2: + ws.row_dimensions[index].height = self.modify_first_row["row_height"] + + for col, cell_data in self.modify_first_row.items(): + if col == "row_height": + continue + + target_cell = ws.cell(row=index, column=col) + + # **正确赋值** + target_cell.value = cell_data["value"] + + # **复制格式** + if cell_data["font"]: + target_cell.font = Font( + name=cell_data["font"].name, + size=cell_data["font"].size, + bold=cell_data["font"].bold, + italic=cell_data["font"].italic, + underline=cell_data["font"].underline, + color=cell_data["font"].color + ) + if cell_data["alignment"]: + target_cell.alignment = Alignment( + horizontal=cell_data["alignment"].horizontal, + vertical=cell_data["alignment"].vertical, + wrap_text=cell_data["alignment"].wrap_text + ) + if cell_data["fill"] and cell_data["fill"].patternType: + target_cell.fill = PatternFill( + fill_type=cell_data["fill"].patternType, + fgColor=cell_data["fill"].fgColor.rgb, + bgColor=cell_data["fill"].bgColor.rgb + ) + if cell_data["border"]: + target_cell.border = Border( + left=Side(style=cell_data["border"].left.style, color=cell_data["border"].left.color), + right=Side(style=cell_data["border"].right.style, + color=cell_data["border"].right.color), + top=Side(style=cell_data["border"].top.style, color=cell_data["border"].top.color), + bottom=Side(style=cell_data["border"].bottom.style, + color=cell_data["border"].bottom.color), + ) + index += 1 + + # **填充 JSON 数据** + ws.cell(row=index, column=1, value=i['name']) + ws.cell(row=index, column=2, value="") + ws.cell(row=index, column=7, value="Required" if i['required'] else "Not Required") + ws.cell(row=index, column=8, value=i['min']) + ws.cell(row=index, column=9, value=i['max']) + ws.cell(row=index, column=10, value="NO") + aindex = index + for item in i['list']: + ws.cell(row=index, column=3, value=item['name']) + ws.cell(row=index, column=6, value=item['price']) + + index += 1 + index += 1 + bindex = index + if bindex - aindex > 1: + ws.merge_cells(start_row=aindex, start_column=1, end_row=bindex - 2, end_column=1) + ws.cell(row=aindex, column=1).alignment = Alignment(horizontal="center", vertical="center") + + ws.merge_cells(start_row=aindex, start_column=2, end_row=bindex - 2, end_column=2) + ws.cell(row=aindex, column=2).alignment = Alignment(horizontal="center", vertical="center") + + ws.merge_cells(start_row=aindex, start_column=7, end_row=bindex - 2, end_column=7) + ws.cell(row=aindex, column=7).alignment = Alignment(horizontal="center", vertical="center") + ws.merge_cells(start_row=aindex, start_column=8, end_row=bindex - 2, end_column=8) + ws.cell(row=aindex, column=8).alignment = Alignment(horizontal="center", vertical="center") + ws.merge_cells(start_row=aindex, start_column=9, end_row=bindex - 2, end_column=9) + ws.cell(row=aindex, column=9).alignment = Alignment(horizontal="center", vertical="center") + ws.merge_cells(start_row=aindex, start_column=10, end_row=bindex - 2, end_column=10) + ws.cell(row=aindex, column=10).alignment = Alignment(horizontal="center", vertical="center") + + + + self.wb.save('grubhubMenu.xlsx') + +if __name__ == '__main__': + gh = Grubhub() + # gh.token = gh.get_token() + # gh.get_menuid() + # gh.get_itme() + gh.write_xlsx() + # print(gh.token) + # gh.get_menuid() + # gh.get_itme() + # gh.get_jsondata(gh.token) + # gh.get_menu_items() + # gh.get_request_id() diff --git a/web/grubhub/menu.json b/web/grubhub/menu.json new file mode 100644 index 0000000..9cb0e79 --- /dev/null +++ b/web/grubhub/menu.json @@ -0,0 +1,834 @@ +{ + "restaurant_data": { + "restaurant_availability": { + "restaurant_id": "10316176", + "delivery_fee": { + "amount": 149, + "currency": "USD", + "styled_text": null + }, + "delivery_fee_without_discounts": { + "amount": 149, + "currency": "USD", + "styled_text": null + }, + "delivery_fee_estimate": { + "amount": 149, + "currency": "USD", + "styled_text": null + }, + "delivery_fee_as_percentage": 0, + "delivery_fee_taxable": false, + "delivery_fee_allocation_info": { + "attribution": "GRUBHUB" + }, + "order_minimum": { + "amount": 0, + "currency": "USD", + "styled_text": null + }, + "sales_tax": 6.5, + "delivery_offered_to_diner_location": false, + "open": false, + "open_delivery": false, + "open_pickup": false, + "available_for_delivery": true, + "available_for_pickup": true, + "delivery_estimate": 30, + "delivery_estimate_range": "{\"maximum\":40,\"minimum\":30}", + "delivery_estimate_range_v2": { + "maximum": 40, + "minimum": 30 + }, + "pickup_estimate": 20, + "pickup_estimate_range": "{\"maximum\":30,\"minimum\":20}", + "pickup_estimate_range_v2": { + "maximum": 30, + "minimum": 20 + }, + "cash_accepted": false, + "credit_card_accepted": true, + "paypal_accepted": false, + "time_zone_id": "America/New_York", + "time_zone_offset": -14400000, + "tracker": true, + "delivery_cutoff": 15, + "pickup_cutoff": 30, + "delivery_type": "UNKNOWN", + "available_hours": [ + { + "day_of_week": 1, + "time_ranges": [ + "17:00-03:59" + ] + }, + { + "day_of_week": 2, + "time_ranges": [ + "17:00-03:59" + ] + }, + { + "day_of_week": 3, + "time_ranges": [ + "17:00-03:59" + ] + }, + { + "day_of_week": 4, + "time_ranges": [ + "17:00-03:59" + ] + }, + { + "day_of_week": 5, + "time_ranges": [ + "17:00-03:59" + ] + }, + { + "day_of_week": 6, + "time_ranges": [ + "17:00-03:59" + ] + }, + { + "day_of_week": 7, + "time_ranges": [ + "17:00-03:59" + ] + } + ], + "available_hours_pickup": [ + { + "day_of_week": 1, + "time_ranges": [ + "17:00-03:59" + ] + }, + { + "day_of_week": 2, + "time_ranges": [ + "17:00-03:59" + ] + }, + { + "day_of_week": 3, + "time_ranges": [ + "17:00-03:59" + ] + }, + { + "day_of_week": 4, + "time_ranges": [ + "17:00-03:59" + ] + }, + { + "day_of_week": 5, + "time_ranges": [ + "17:00-03:59" + ] + }, + { + "day_of_week": 6, + "time_ranges": [ + "17:00-03:59" + ] + }, + { + "day_of_week": 7, + "time_ranges": [ + "17:00-03:59" + ] + } + ], + "future_order_available_hours_delivery": [ + { + "day_of_week": 1, + "time_ranges": [ + "17:30-04:29" + ] + }, + { + "day_of_week": 2, + "time_ranges": [ + "17:30-04:29" + ] + }, + { + "day_of_week": 3, + "time_ranges": [ + "17:30-04:29" + ] + }, + { + "day_of_week": 4, + "time_ranges": [ + "17:30-04:29" + ] + }, + { + "day_of_week": 5, + "time_ranges": [ + "17:30-04:29" + ] + }, + { + "day_of_week": 6, + "time_ranges": [ + "17:30-04:29" + ] + }, + { + "day_of_week": 7, + "time_ranges": [ + "17:30-04:29" + ] + } + ], + "future_order_available_hours_pickup": [ + { + "day_of_week": 1, + "time_ranges": [ + "17:20-04:19" + ] + }, + { + "day_of_week": 2, + "time_ranges": [ + "17:20-04:19" + ] + }, + { + "day_of_week": 3, + "time_ranges": [ + "17:20-04:19" + ] + }, + { + "day_of_week": 4, + "time_ranges": [ + "17:20-04:19" + ] + }, + { + "day_of_week": 5, + "time_ranges": [ + "17:20-04:19" + ] + }, + { + "day_of_week": 6, + "time_ranges": [ + "17:20-04:19" + ] + }, + { + "day_of_week": 7, + "time_ranges": [ + "17:20-04:19" + ] + } + ], + "min_delivery_fee": { + "amount": 0, + "currency": "USD", + "styled_text": null + }, + "catering_info": { + "catering_sibling_id": null, + "order_thresholds": { + "currency": "USD", + "order_price_bucket_list": [ + { + "amount": 250, + "buffer_minutes": 30 + } + ] + }, + "catering": false + }, + "next_open_closed_info": { + "next_order_send_time_delivery": "2025-03-11T17:00:00.000Z", + "next_order_send_time_pickup": "2025-03-11T17:00:00.000Z", + "next_delivery_time": "2025-03-11T17:30:00.000Z", + "next_pickup_time": "2025-03-11T17:20:00.000Z", + "order_tiers": [ + { + "threshold_type": "ORDER_AMOUNT_CENTS", + "threshold": 15000, + "additional_prep_time_minutes": 20, + "next_delivery_time": "2025-03-11T17:50:00.000Z", + "next_order_send_time_delivery": "2025-03-11T17:00:00.000Z", + "next_pickup_time": "2025-03-11T17:40:00.000Z", + "next_order_send_time_pickup": "2025-03-11T17:00:00.000Z" + } + ] + }, + "allowable_order_types": [ + "standard" + ], + "service_fee": { + "name": "Service fee", + "description": "A service fee of 15.0% for delivery orders will be charged with Orlando China Ocean.", + "delivery_fee": { + "fee_type": "PERCENT", + "percent_value": 15, + "maximum_amount_for_percent": { + "amount": 1400, + "currency": "USD", + "styled_text": null + } + }, + "delivery_service_fee_allocation_info": { + "attribution": "GRUBHUB" + }, + "fee_allocation_info": { + "fee_allocation_type": "GRUBHUB" + } + }, + "small_order_fee": { + "name": "Small order delivery fee", + "description": "A small order delivery fee applies to your Orlando China Ocean subtotal of $8.69 or less.", + "minimum_order_value_cents": 1000, + "fee": { + "fee_type": "FLAT", + "flat_cents_value": { + "amount": 200, + "currency": "USD", + "styled_text": null + } + }, + "fee_allocation_info": { + "attribution": "GRUBHUB" + } + }, + "fee_display_setting": { + "search_display_setting": null, + "menu_display_setting": { + "id": "UniversalControl", + "subtitle_fee_styled_text": { + "text": "$1.49 delivery", + "text_style": "DEFAULT" + }, + "disclaimer": null + } + }, + "grouped_overrides_availability": { + "delivery_blacked_out": false, + "pickup_blacked_out": false, + "delivery_soft_blacked_out": false, + "pickup_soft_blacked_out": false, + "delivery_estimate_in_minutes": null, + "order_minimum_increase_in_cents": 0, + "inundated": false + }, + "contact_free_required": false, + "delivery_fees": [ + { + "fee_name": "DELIVERY", + "type": "DELIVERY", + "operand": "FLAT", + "amount": 149, + "non_adjusted_amount": null, + "adjustment": null, + "threshold": null, + "potential_adjustment": null, + "non_adjusted_values": null, + "potential_adjustment_values": null, + "applicable_hours": null, + "applicable_days_of_the_week": null, + "attribution": "GRUBHUB", + "fee_adjustment_category": "NONE", + "has_campus_subscription_specific_requirements": false, + "amount_benefits": null, + "non_adjusted_amount_benefits": null, + "potential_adjustment_values_benefits": null, + "non_adjusted_values_benefits": null, + "potential_adjustment_benefits": null + }, + { + "fee_name": "DRIVER_BENEFITS_FEE", + "type": "DRIVER_BENEFITS_FEE", + "operand": "FLAT", + "amount": 0, + "non_adjusted_amount": null, + "adjustment": null, + "threshold": null, + "potential_adjustment": null, + "non_adjusted_values": null, + "potential_adjustment_values": null, + "applicable_hours": null, + "applicable_days_of_the_week": null, + "attribution": "GRUBHUB", + "fee_adjustment_category": "NONE", + "has_campus_subscription_specific_requirements": false, + "amount_benefits": null, + "non_adjusted_amount_benefits": null, + "potential_adjustment_values_benefits": null, + "non_adjusted_values_benefits": null, + "potential_adjustment_benefits": null + }, + { + "fee_name": "PRIORITY_DELIVERY", + "type": "PRIORITY_DELIVERY", + "operand": "FLAT", + "amount": 249, + "non_adjusted_amount": null, + "adjustment": null, + "threshold": {}, + "potential_adjustment": null, + "non_adjusted_values": null, + "potential_adjustment_values": null, + "applicable_hours": null, + "applicable_days_of_the_week": null, + "attribution": "GRUBHUB", + "fee_adjustment_category": "NONE", + "has_campus_subscription_specific_requirements": false, + "amount_benefits": null, + "non_adjusted_amount_benefits": null, + "potential_adjustment_values_benefits": null, + "non_adjusted_values_benefits": null, + "potential_adjustment_benefits": null + }, + { + "fee_name": "SERVICE", + "type": "SERVICE", + "operand": "PERCENT", + "amount": 1500, + "non_adjusted_amount": null, + "adjustment": null, + "threshold": { + "maximum_amount_for_percentage": 1400 + }, + "potential_adjustment": null, + "non_adjusted_values": null, + "potential_adjustment_values": null, + "applicable_hours": null, + "applicable_days_of_the_week": null, + "attribution": "GRUBHUB", + "fee_adjustment_category": "NONE", + "has_campus_subscription_specific_requirements": false, + "amount_benefits": null, + "non_adjusted_amount_benefits": null, + "potential_adjustment_values_benefits": null, + "non_adjusted_values_benefits": null, + "potential_adjustment_benefits": null + }, + { + "fee_name": "SMALL", + "type": "SMALL", + "operand": "FLAT", + "amount": 200, + "non_adjusted_amount": null, + "adjustment": null, + "threshold": { + "threshold": 1000 + }, + "potential_adjustment": null, + "non_adjusted_values": null, + "potential_adjustment_values": null, + "applicable_hours": null, + "applicable_days_of_the_week": null, + "attribution": "GRUBHUB", + "fee_adjustment_category": "NONE", + "has_campus_subscription_specific_requirements": false, + "amount_benefits": null, + "non_adjusted_amount_benefits": null, + "potential_adjustment_values_benefits": null, + "non_adjusted_values_benefits": null, + "potential_adjustment_benefits": null + } + ], + "pickup_fees": [], + "cutoff_for_delivery": true, + "cutoff_for_pickup": true, + "white_in": false, + "inundated": false, + "blacked_out": false + }, + "restaurant": { + "id": "10316176", + "restaurant_hash": "30ceb46e88ede69efa34081e6b076e8b", + "merchant_uuid": "GLfVcNN1Ee-VcetVHBgGHQ", + "package_state_type_id": 2, + "available_restaurant_features": [], + "disclaimers": [], + "duplicate": false, + "name": "Orlando China Ocean", + "address": { + "locality": "Orlando", + "region": "FL", + "postal_code": "32822-2710", + "zip": "32822", + "street_address": "2508 S Semoran Blvd", + "country": "USA", + "time_zone_id": "America/New_York", + "phone_number_for_delivery": null, + "latitude": null, + "longitude": null + }, + "cross_street_required": false, + "premium": true, + "online_ordering_available": true, + "pickup_offered": true, + "phone_ordering_available": true, + "phone_number_for_delivery": "4078237799", + "suppress_diner_phone_contact": false, + "latitude": "28.51548767", + "longitude": "-81.31121064", + "city_id": 283, + "managed_delivery": true, + "delivery_mode": "FULL_GHD", + "minimum_tip_percent": 10.0, + "default_tip_percent": 20.0, + "minimum_tip": { + "amount": 200, + "currency": "USD", + "styled_text": null + }, + "logo": "https://media-cdn.grubhub.com/image/upload/v1737040004/iztzardvszedgbisytr1.png", + "group_ids": [ + "pauseByPartner:fd317fe0-2215-11ec-8fa6-f705ecbb3af7-partner-grp:GENERIC_GROUP_IDS", + "pauseByPartner:3aefd0b0-2217-11ec-8fe1-8bb6431a0c16-partner-grp:GENERIC_GROUP_IDS", + "1898fe81-0b40-4c7d-bf88-76b74f92a896:polygon:GENERIC_GROUP_IDS", + "pauseByPartner:63efd650-2216-11ec-8715-1b87ad3ba198-partner-grp:GENERIC_GROUP_IDS" + ], + "has_coupons": false, + "is_new": true, + "routing_number": "4078237799", + "cuisines": [ + "Chicken", + "Chinese", + "Noodles", + "Seafood", + "Soup" + ], + "restaurant_coupons": [], + "just_in_time_orders": false, + "restaurant_cdn_image_url": "http://s1.seamless.com/-/ri/gh/10316176", + "media_image": { + "base_url": "https://media-cdn.grubhub.com/image/upload/", + "public_id": "iztzardvszedgbisytr1", + "format": "png", + "tag": "logo", + "tags": [ + "primary_logo" + ], + "image_source": null, + "uploader_details": null, + "image_description": null, + "image_title": null, + "scale_mode": "FILL" + }, + "rating": { + "rating_count": "1", + "rating_value": "4" + }, + "price_rating": "2", + "rating_bayesian_half_point": { + "rating_count": "1", + "rating_value": "3.5" + }, + "rating_bayesian10_point": { + "rating_count": "1", + "rating_value": "3.5" + }, + "restaurant_managed_hours_list_v2": [ + { + "day": "Monday", + "hours": "6:00 AM - 11:59 PM", + "start_time": "06:00:00.000", + "end_time": "23:58:59.999" + }, + { + "day": "Tuesday", + "hours": "6:00 AM - 11:59 PM", + "start_time": "06:00:00.000", + "end_time": "23:58:59.999" + }, + { + "day": "Wednesday", + "hours": "6:00 AM - 11:59 PM", + "start_time": "06:00:00.000", + "end_time": "23:58:59.999" + }, + { + "day": "Thursday", + "hours": "6:00 AM - 11:59 PM", + "start_time": "06:00:00.000", + "end_time": "23:58:59.999" + }, + { + "day": "Friday", + "hours": "6:00 AM - 11:59 PM", + "start_time": "06:00:00.000", + "end_time": "23:58:59.999" + }, + { + "day": "Saturday", + "hours": "6:00 AM - 11:59 PM", + "start_time": "06:00:00.000", + "end_time": "23:58:59.999" + }, + { + "day": "Sunday", + "hours": "6:00 AM - 11:59 PM", + "start_time": "06:00:00.000", + "end_time": "23:58:59.999" + } + ], + "restaurant_intersected_managed_hours_list": [ + { + "day": "Monday", + "hours": "1:00 PM - 11:59 PM", + "start_time": "13:00:00.000", + "end_time": "23:58:59.999" + }, + { + "day": "Tuesday", + "hours": "1:00 PM - 11:59 PM", + "start_time": "13:00:00.000", + "end_time": "23:58:59.999" + }, + { + "day": "Wednesday", + "hours": "1:00 PM - 11:59 PM", + "start_time": "13:00:00.000", + "end_time": "23:58:59.999" + }, + { + "day": "Thursday", + "hours": "1:00 PM - 11:59 PM", + "start_time": "13:00:00.000", + "end_time": "23:58:59.999" + }, + { + "day": "Friday", + "hours": "1:00 PM - 11:59 PM", + "start_time": "13:00:00.000", + "end_time": "23:58:59.999" + }, + { + "day": "Saturday", + "hours": "1:00 PM - 11:59 PM", + "start_time": "13:00:00.000", + "end_time": "23:58:59.999" + }, + { + "day": "Sunday", + "hours": "1:00 PM - 11:59 PM", + "start_time": "13:00:00.000", + "end_time": "23:58:59.999" + } + ], + "managed_delivery_settings": { + "order_minimum": { + "amount": 0, + "currency": "USD", + "styled_text": null + } + }, + "order_fulfillment_methods": { + "SELF_DELIVERY": { + "allowable_order_types": null, + "fulfillment_tags": [] + }, + "PICKUP": { + "allowable_order_types": [ + "standard" + ], + "fulfillment_tags": [] + }, + "ORDER_BASED_ON_DEMAND_DELIVERY": { + "allowable_order_types": null, + "fulfillment_tags": [] + }, + "MANAGED_DELIVERY": { + "allowable_order_types": [ + "standard" + ], + "fulfillment_tags": [] + } + }, + "alcohol_enabled": false, + "alcohol_market_status": "DISABLED", + "faceted_rating_data": { + "review_data": { + "total_count": 0, + "valid_count": 0, + "top_review": { + "rating_value": null, + "review_text": null, + "reviewer_display_name": null, + "time_created": null + } + }, + "faceted_rating_list": [], + "faceted_rating_too_few": true + }, + "additional_media_images": { + "LOGO_HOME_PAGE": { + "base_url": "https://media-cdn.grubhub.com/image/upload/", + "public_id": "iztzardvszedgbisytr1", + "format": "png", + "tag": "logo", + "tags": [ + "primary_logo" + ], + "image_source": null, + "uploader_details": null, + "image_description": null, + "image_title": null, + "scale_mode": "FILL" + }, + "MENU_PAGE": { + "base_url": "https://media-cdn.grubhub.com/image/upload/", + "public_id": "iztzardvszedgbisytr1", + "format": "png", + "tag": "logo", + "tags": [ + "primary_logo" + ], + "image_source": null, + "uploader_details": null, + "image_description": null, + "image_title": null, + "scale_mode": "FILL" + }, + "SEARCH_HOME_PAGE": { + "base_url": "https://media-cdn.grubhub.com/image/upload/", + "public_id": "u5ffhbgs258fspctbfgh", + "format": "jpg", + "tag": "search", + "tags": [ + "primary_search" + ], + "image_source": null, + "uploader_details": null, + "image_description": null, + "image_title": null, + "scale_mode": "FILL" + }, + "SEARCH_RESULTS_PAGE": { + "base_url": "https://media-cdn.grubhub.com/image/upload/", + "public_id": "u5ffhbgs258fspctbfgh", + "format": "jpg", + "tag": "search", + "tags": [ + "primary_search" + ], + "image_source": null, + "uploader_details": null, + "image_description": null, + "image_title": null, + "scale_mode": "FILL" + }, + "HEADER_BACKGROUND": { + "base_url": "https://media-cdn.grubhub.com/image/upload/", + "public_id": "lhd8t0tiktjp1bif9tp8", + "format": "jpg", + "tag": "header_background", + "tags": [ + "primary_header" + ], + "image_source": null, + "uploader_details": null, + "image_description": null, + "image_title": null, + "scale_mode": "FILL" + } + }, + "tag_list": [], + "available_promo_codes": [], + "available_offers": [], + "available_progress_campaigns": [], + "merchant_url_path": "orlando-china-ocean-2508-s-semoran-blvd-orlando", + "order_type_settings": { + "service_fee": { + "name": "Service fee", + "description": "A service fee of 15.0% for delivery orders will be charged with Orlando China Ocean.", + "delivery_fee": { + "fee_type": "PERCENT", + "percent_value": 15, + "maximum_amount_for_percent": { + "amount": 1400, + "currency": "USD", + "styled_text": null + } + }, + "delivery_service_fee_allocation_info": { + "attribution": "GRUBHUB" + }, + "fee_allocation_info": { + "fee_allocation_type": "GRUBHUB" + } + }, + "small_order_fee": { + "name": "Small order delivery fee", + "description": "A small order delivery fee applies to your Orlando China Ocean subtotal of $8.69 or less.", + "minimum_order_value_cents": 1000, + "fee": { + "fee_type": "FLAT", + "flat_cents_value": { + "amount": 200, + "currency": "USD", + "styled_text": null + } + }, + "fee_allocation_info": { + "attribution": "GRUBHUB" + } + }, + "merchant_status": { + "category": "ACTIVE", + "category_description": "Active", + "description": "Premium", + "requires_attrition_reason": false, + "status": "PREMIUM" + }, + "delivery_estimate_minutes": 30, + "pickup_estimate_minutes": 20 + }, + "pickup_tips_disabled": false, + "special_instructions_disabled": true, + "utensils_selection_disabled": false, + "restaurant_tags": [], + "version_ids": { + "catalog": "v1:wrma6JfYXP4jQrYOidEWeIaIl041p7w4" + }, + "shared_cart": true, + "subscription_information": { + "order_minimum": null + }, + "excluded_menu_item_count": 0, + "aggregations": { + "menu_item_tags": { + "values": {} + } + }, + "menu_item_features": [ + "CHOICE_OPTION_MEDIA", + "CHOICE_CATEGORY_QUANTITIES", + "CHOICE_OPTION_QUANTITIES", + "SUBCATEGORIES" + ], + "pos_integrated": true, + "data_bytes": 0, + "menu_data_bytes": 0, + "template_type": "STANDARD", + "tax_engine_information": { + "tax_engine_calculation_enabled": false, + "tax_type_code": null + }, + "service_fee_taxable": false, + "service_fee_taxable_when_delivery_only": true, + "delivery_fee_taxable_when_delivery_only": true, + "cash_tip_allowed": false, + "is_too_few": true, + "too_few": true + } + }, + "menu_items": [] +} \ No newline at end of file diff --git a/web/grubhub/menu_id.json b/web/grubhub/menu_id.json new file mode 100644 index 0000000..a4f2521 --- /dev/null +++ b/web/grubhub/menu_id.json @@ -0,0 +1,4288 @@ +{ + "object": { + "request_id": "dd230c80-fe82-11ef-8c81-df1f8a8bb0b1", + "operation_id": "dd230c80-fe82-11ef-8c81-df1f8a8bb0b1", + "data": { + "content": [], + "feed": [], + "enhanced_feed": [ + { + "id": "None", + "name": "Category Navigation", + "description": "", + "representation": { + "tablet": { + "portrait": { + "layout": "CONTAINER", + "navigation_type": "SCROLL" + } + }, + "mobile": { + "portrait": { + "layout": "CONTAINER", + "navigation_type": "SCROLL" + }, + "landscape": { + "layout": "CONTAINER", + "navigation_type": "SCROLL" + } + } + }, + "sequence_order": { + "desktop": -1, + "tablet": { + "portrait": 0, + "landscape": -1 + }, + "mobile": { + "portrait": 0, + "landscape": 0 + } + }, + "data_type": "CATEGORY", + "feed_type": "HORIZONTAL_CATEGORY_ARRAY", + "retryable": false, + "request": { + "parameters": [] + }, + "top_nav": { + "desktop": { + "type": "DEFAULT" + }, + "tablet": { + "portrait": { + "type": "DEFAULT" + }, + "landscape": { + "type": "DEFAULT" + } + }, + "mobile": { + "portrait": { + "type": "DEFAULT" + }, + "landscape": { + "type": "DEFAULT" + } + } + }, + "routes": {} + }, + { + "id": "None", + "name": "Search", + "description": "Search for menu items on this menu", + "representation": { + "desktop": { + "layout": "CONTAINER", + "action_type": "FILTER", + "navigation_type": "SCROLL" + }, + "tablet": { + "portrait": { + "layout": "CONTAINER", + "action_type": "OVERLAY", + "navigation_type": "SCROLL" + }, + "landscape": { + "layout": "CONTAINER", + "action_type": "FILTER", + "navigation_type": "SCROLL" + } + }, + "mobile": { + "portrait": { + "layout": "CONTAINER", + "action_type": "OVERLAY", + "navigation_type": "SCROLL" + }, + "landscape": { + "layout": "CONTAINER", + "action_type": "OVERLAY", + "navigation_type": "SCROLL" + } + } + }, + "sequence_order": { + "desktop": 0, + "tablet": { + "portrait": 1, + "landscape": 0 + }, + "mobile": { + "portrait": 1, + "landscape": 1 + } + }, + "data_type": "MENU_ITEM_SEARCH", + "feed_type": "MENU_ITEM_SEARCH", + "retryable": false, + "request": { + "parameters": [] + }, + "top_nav": { + "desktop": { + "type": "DEFAULT" + }, + "tablet": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION" + }, + "landscape": { + "type": "DEFAULT" + } + }, + "mobile": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION" + } + } + }, + "routes": {} + }, + { + "id": "None", + "name": "Offers", + "description": "Offers available for this menu", + "representation": { + "desktop": { + "layout": "CONTAINER" + }, + "tablet": { + "portrait": { + "layout": "CONTAINER" + }, + "landscape": { + "layout": "CONTAINER" + } + }, + "mobile": { + "portrait": { + "layout": "CONTAINER" + }, + "landscape": { + "layout": "CONTAINER" + } + } + }, + "sequence_order": { + "desktop": 1, + "tablet": { + "portrait": 2, + "landscape": 1 + }, + "mobile": { + "portrait": 2, + "landscape": 2 + } + }, + "data_type": "OFFER_ITEM", + "feed_type": "OFFERS", + "retryable": false, + "request": { + "parameters": [] + }, + "top_nav": { + "desktop": { + "type": "SEARCH_BAR", + "action_type": "FILTER" + }, + "tablet": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + }, + "mobile": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + } + }, + "routes": {} + }, + { + "id": "None", + "name": "Best Sellers", + "description": "", + "representation": { + "desktop": { + "layout": "LIST", + "card_type": "XL_ITEM_CARD_1_0", + "navigation_type": "SCROLL" + }, + "tablet": { + "portrait": { + "layout": "LIST", + "card_type": "XL_ITEM_CARD_1_0", + "navigation_type": "SCROLL" + }, + "landscape": { + "layout": "LIST", + "card_type": "XL_ITEM_CARD_1_0", + "navigation_type": "SCROLL" + } + }, + "mobile": { + "portrait": { + "layout": "LIST", + "card_type": "XL_ITEM_CARD_1_0", + "navigation_type": "SCROLL" + }, + "landscape": { + "layout": "LIST", + "card_type": "XL_ITEM_CARD_1_0", + "navigation_type": "SCROLL" + } + } + }, + "sequence_order": { + "desktop": 2, + "tablet": { + "portrait": 3, + "landscape": 2 + }, + "mobile": { + "portrait": 3, + "landscape": 3 + } + }, + "data_type": "MENU_ITEM", + "feed_type": "POPULAR_ITEMS", + "retryable": false, + "request": { + "parameters": [ + { + "id": "time", + "value": "1741702348139" + }, + { + "id": "location" + }, + { + "id": "operationId", + "value": "dd230c80-fe82-11ef-8c81-df1f8a8bb0b1" + }, + { + "id": "isFutureOrder", + "value": "false" + }, + { + "id": "restaurantStatus", + "value": "ORDERABLE" + }, + { + "id": "isNonRestaurantMerchant", + "value": "false" + }, + { + "id": "merchantTypes", + "value": "" + }, + { + "id": "orderType", + "value": "STANDARD" + }, + { + "id": "task", + "value": "POPULAR_ITEMS" + } + ] + }, + "top_nav": { + "desktop": { + "type": "SEARCH_BAR", + "action_type": "FILTER" + }, + "tablet": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + }, + "mobile": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + } + }, + "routes": {} + }, + { + "id": "295249415616", + "name": "Appetizer", + "representation": { + "desktop": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "tablet": { + "portrait": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + } + }, + "mobile": { + "portrait": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "landscape": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + } + } + }, + "sequence_order": { + "desktop": 3, + "tablet": { + "portrait": 4, + "landscape": 3 + }, + "mobile": { + "portrait": 4, + "landscape": 4 + } + }, + "data_type": "MENU_ITEM", + "feed_type": "CATEGORY", + "retryable": true, + "request": { + "parameters": [ + { + "id": "time", + "value": "1741702348139" + }, + { + "id": "location" + }, + { + "id": "operationId", + "value": "dd230c80-fe82-11ef-8c81-df1f8a8bb0b1" + }, + { + "id": "isFutureOrder", + "value": "false" + }, + { + "id": "restaurantStatus", + "value": "ORDERABLE" + }, + { + "id": "isNonRestaurantMerchant", + "value": "false" + }, + { + "id": "merchantTypes", + "value": "" + }, + { + "id": "orderType", + "value": "STANDARD" + }, + { + "id": "agent", + "value": "false" + }, + { + "id": "task", + "value": "CATEGORY" + } + ] + }, + "top_nav": { + "desktop": { + "type": "SEARCH_BAR", + "action_type": "FILTER" + }, + "tablet": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + }, + "mobile": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + } + }, + "routes": { + "SINGLE_FEED": { + "id": "295249415616", + "name": "Appetizer", + "representation": { + "desktop": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "tablet": { + "portrait": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + } + }, + "mobile": { + "portrait": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + } + } + }, + "sequence_order": { + "desktop": 3, + "tablet": { + "portrait": 4, + "landscape": 3 + }, + "mobile": { + "portrait": 4, + "landscape": 4 + } + }, + "data_type": "MENU_ITEM", + "feed_type": "CATEGORY", + "retryable": true, + "request": { + "parameters": [ + { + "id": "time", + "value": "1741702348139" + }, + { + "id": "location" + }, + { + "id": "operationId", + "value": "dd230c80-fe82-11ef-8c81-df1f8a8bb0b1" + }, + { + "id": "isFutureOrder", + "value": "false" + }, + { + "id": "restaurantStatus", + "value": "ORDERABLE" + }, + { + "id": "isNonRestaurantMerchant", + "value": "false" + }, + { + "id": "merchantTypes", + "value": "" + }, + { + "id": "orderType", + "value": "STANDARD" + }, + { + "id": "agent", + "value": "false" + }, + { + "id": "task", + "value": "CATEGORY" + } + ] + }, + "top_nav": { + "tablet": { + "portrait": { + "type": "NO_OPERATION" + } + }, + "mobile": { + "portrait": { + "type": "NO_OPERATION" + }, + "landscape": { + "type": "NO_OPERATION" + } + } + }, + "max_number_of_items": 14 + } + }, + "max_number_of_items": 14 + }, + { + "id": "295249415696", + "name": "Soup", + "representation": { + "desktop": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "tablet": { + "portrait": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + } + }, + "mobile": { + "portrait": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "landscape": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + } + } + }, + "sequence_order": { + "desktop": 4, + "tablet": { + "portrait": 5, + "landscape": 4 + }, + "mobile": { + "portrait": 5, + "landscape": 5 + } + }, + "data_type": "MENU_ITEM", + "feed_type": "CATEGORY", + "retryable": true, + "request": { + "parameters": [ + { + "id": "time", + "value": "1741702348139" + }, + { + "id": "location" + }, + { + "id": "operationId", + "value": "dd230c80-fe82-11ef-8c81-df1f8a8bb0b1" + }, + { + "id": "isFutureOrder", + "value": "false" + }, + { + "id": "restaurantStatus", + "value": "ORDERABLE" + }, + { + "id": "isNonRestaurantMerchant", + "value": "false" + }, + { + "id": "merchantTypes", + "value": "" + }, + { + "id": "orderType", + "value": "STANDARD" + }, + { + "id": "agent", + "value": "false" + }, + { + "id": "task", + "value": "CATEGORY" + } + ] + }, + "top_nav": { + "desktop": { + "type": "SEARCH_BAR", + "action_type": "FILTER" + }, + "tablet": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + }, + "mobile": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + } + }, + "routes": { + "SINGLE_FEED": { + "id": "295249415696", + "name": "Soup", + "representation": { + "desktop": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "tablet": { + "portrait": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + } + }, + "mobile": { + "portrait": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + } + } + }, + "sequence_order": { + "desktop": 4, + "tablet": { + "portrait": 5, + "landscape": 4 + }, + "mobile": { + "portrait": 5, + "landscape": 5 + } + }, + "data_type": "MENU_ITEM", + "feed_type": "CATEGORY", + "retryable": true, + "request": { + "parameters": [ + { + "id": "time", + "value": "1741702348139" + }, + { + "id": "location" + }, + { + "id": "operationId", + "value": "dd230c80-fe82-11ef-8c81-df1f8a8bb0b1" + }, + { + "id": "isFutureOrder", + "value": "false" + }, + { + "id": "restaurantStatus", + "value": "ORDERABLE" + }, + { + "id": "isNonRestaurantMerchant", + "value": "false" + }, + { + "id": "merchantTypes", + "value": "" + }, + { + "id": "orderType", + "value": "STANDARD" + }, + { + "id": "agent", + "value": "false" + }, + { + "id": "task", + "value": "CATEGORY" + } + ] + }, + "top_nav": { + "tablet": { + "portrait": { + "type": "NO_OPERATION" + } + }, + "mobile": { + "portrait": { + "type": "NO_OPERATION" + }, + "landscape": { + "type": "NO_OPERATION" + } + } + }, + "max_number_of_items": 9 + } + }, + "max_number_of_items": 9 + }, + { + "id": "295249415672", + "name": "Chow Fun", + "representation": { + "desktop": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "tablet": { + "portrait": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + } + }, + "mobile": { + "portrait": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "landscape": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + } + } + }, + "sequence_order": { + "desktop": 5, + "tablet": { + "portrait": 6, + "landscape": 5 + }, + "mobile": { + "portrait": 6, + "landscape": 6 + } + }, + "data_type": "MENU_ITEM", + "feed_type": "CATEGORY", + "retryable": true, + "request": { + "parameters": [ + { + "id": "time", + "value": "1741702348139" + }, + { + "id": "location" + }, + { + "id": "operationId", + "value": "dd230c80-fe82-11ef-8c81-df1f8a8bb0b1" + }, + { + "id": "isFutureOrder", + "value": "false" + }, + { + "id": "restaurantStatus", + "value": "ORDERABLE" + }, + { + "id": "isNonRestaurantMerchant", + "value": "false" + }, + { + "id": "merchantTypes", + "value": "" + }, + { + "id": "orderType", + "value": "STANDARD" + }, + { + "id": "agent", + "value": "false" + }, + { + "id": "task", + "value": "CATEGORY" + } + ] + }, + "top_nav": { + "desktop": { + "type": "SEARCH_BAR", + "action_type": "FILTER" + }, + "tablet": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + }, + "mobile": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + } + }, + "routes": { + "SINGLE_FEED": { + "id": "295249415672", + "name": "Chow Fun", + "representation": { + "desktop": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "tablet": { + "portrait": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + } + }, + "mobile": { + "portrait": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + } + } + }, + "sequence_order": { + "desktop": 5, + "tablet": { + "portrait": 6, + "landscape": 5 + }, + "mobile": { + "portrait": 6, + "landscape": 6 + } + }, + "data_type": "MENU_ITEM", + "feed_type": "CATEGORY", + "retryable": true, + "request": { + "parameters": [ + { + "id": "time", + "value": "1741702348139" + }, + { + "id": "location" + }, + { + "id": "operationId", + "value": "dd230c80-fe82-11ef-8c81-df1f8a8bb0b1" + }, + { + "id": "isFutureOrder", + "value": "false" + }, + { + "id": "restaurantStatus", + "value": "ORDERABLE" + }, + { + "id": "isNonRestaurantMerchant", + "value": "false" + }, + { + "id": "merchantTypes", + "value": "" + }, + { + "id": "orderType", + "value": "STANDARD" + }, + { + "id": "agent", + "value": "false" + }, + { + "id": "task", + "value": "CATEGORY" + } + ] + }, + "top_nav": { + "tablet": { + "portrait": { + "type": "NO_OPERATION" + } + }, + "mobile": { + "portrait": { + "type": "NO_OPERATION" + }, + "landscape": { + "type": "NO_OPERATION" + } + } + }, + "max_number_of_items": 6 + } + }, + "max_number_of_items": 6 + }, + { + "id": "295249415624", + "name": "Mei Fun", + "representation": { + "desktop": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "tablet": { + "portrait": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + } + }, + "mobile": { + "portrait": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "landscape": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + } + } + }, + "sequence_order": { + "desktop": 6, + "tablet": { + "portrait": 7, + "landscape": 6 + }, + "mobile": { + "portrait": 7, + "landscape": 7 + } + }, + "data_type": "MENU_ITEM", + "feed_type": "CATEGORY", + "retryable": true, + "request": { + "parameters": [ + { + "id": "time", + "value": "1741702348139" + }, + { + "id": "location" + }, + { + "id": "operationId", + "value": "dd230c80-fe82-11ef-8c81-df1f8a8bb0b1" + }, + { + "id": "isFutureOrder", + "value": "false" + }, + { + "id": "restaurantStatus", + "value": "ORDERABLE" + }, + { + "id": "isNonRestaurantMerchant", + "value": "false" + }, + { + "id": "merchantTypes", + "value": "" + }, + { + "id": "orderType", + "value": "STANDARD" + }, + { + "id": "agent", + "value": "false" + }, + { + "id": "task", + "value": "CATEGORY" + } + ] + }, + "top_nav": { + "desktop": { + "type": "SEARCH_BAR", + "action_type": "FILTER" + }, + "tablet": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + }, + "mobile": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + } + }, + "routes": { + "SINGLE_FEED": { + "id": "295249415624", + "name": "Mei Fun", + "representation": { + "desktop": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "tablet": { + "portrait": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + } + }, + "mobile": { + "portrait": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + } + } + }, + "sequence_order": { + "desktop": 6, + "tablet": { + "portrait": 7, + "landscape": 6 + }, + "mobile": { + "portrait": 7, + "landscape": 7 + } + }, + "data_type": "MENU_ITEM", + "feed_type": "CATEGORY", + "retryable": true, + "request": { + "parameters": [ + { + "id": "time", + "value": "1741702348139" + }, + { + "id": "location" + }, + { + "id": "operationId", + "value": "dd230c80-fe82-11ef-8c81-df1f8a8bb0b1" + }, + { + "id": "isFutureOrder", + "value": "false" + }, + { + "id": "restaurantStatus", + "value": "ORDERABLE" + }, + { + "id": "isNonRestaurantMerchant", + "value": "false" + }, + { + "id": "merchantTypes", + "value": "" + }, + { + "id": "orderType", + "value": "STANDARD" + }, + { + "id": "agent", + "value": "false" + }, + { + "id": "task", + "value": "CATEGORY" + } + ] + }, + "top_nav": { + "tablet": { + "portrait": { + "type": "NO_OPERATION" + } + }, + "mobile": { + "portrait": { + "type": "NO_OPERATION" + }, + "landscape": { + "type": "NO_OPERATION" + } + } + }, + "max_number_of_items": 7 + } + }, + "max_number_of_items": 7 + }, + { + "id": "295249415704", + "name": "Tofu", + "representation": { + "desktop": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "tablet": { + "portrait": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + } + }, + "mobile": { + "portrait": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "landscape": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + } + } + }, + "sequence_order": { + "desktop": 7, + "tablet": { + "portrait": 8, + "landscape": 7 + }, + "mobile": { + "portrait": 8, + "landscape": 8 + } + }, + "data_type": "MENU_ITEM", + "feed_type": "CATEGORY", + "retryable": true, + "request": { + "parameters": [ + { + "id": "time", + "value": "1741702348139" + }, + { + "id": "location" + }, + { + "id": "operationId", + "value": "dd230c80-fe82-11ef-8c81-df1f8a8bb0b1" + }, + { + "id": "isFutureOrder", + "value": "false" + }, + { + "id": "restaurantStatus", + "value": "ORDERABLE" + }, + { + "id": "isNonRestaurantMerchant", + "value": "false" + }, + { + "id": "merchantTypes", + "value": "" + }, + { + "id": "orderType", + "value": "STANDARD" + }, + { + "id": "agent", + "value": "false" + }, + { + "id": "task", + "value": "CATEGORY" + } + ] + }, + "top_nav": { + "desktop": { + "type": "SEARCH_BAR", + "action_type": "FILTER" + }, + "tablet": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + }, + "mobile": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + } + }, + "routes": { + "SINGLE_FEED": { + "id": "295249415704", + "name": "Tofu", + "representation": { + "desktop": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "tablet": { + "portrait": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + } + }, + "mobile": { + "portrait": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + } + } + }, + "sequence_order": { + "desktop": 7, + "tablet": { + "portrait": 8, + "landscape": 7 + }, + "mobile": { + "portrait": 8, + "landscape": 8 + } + }, + "data_type": "MENU_ITEM", + "feed_type": "CATEGORY", + "retryable": true, + "request": { + "parameters": [ + { + "id": "time", + "value": "1741702348139" + }, + { + "id": "location" + }, + { + "id": "operationId", + "value": "dd230c80-fe82-11ef-8c81-df1f8a8bb0b1" + }, + { + "id": "isFutureOrder", + "value": "false" + }, + { + "id": "restaurantStatus", + "value": "ORDERABLE" + }, + { + "id": "isNonRestaurantMerchant", + "value": "false" + }, + { + "id": "merchantTypes", + "value": "" + }, + { + "id": "orderType", + "value": "STANDARD" + }, + { + "id": "agent", + "value": "false" + }, + { + "id": "task", + "value": "CATEGORY" + } + ] + }, + "top_nav": { + "tablet": { + "portrait": { + "type": "NO_OPERATION" + } + }, + "mobile": { + "portrait": { + "type": "NO_OPERATION" + }, + "landscape": { + "type": "NO_OPERATION" + } + } + }, + "max_number_of_items": 4 + } + }, + "max_number_of_items": 4 + }, + { + "id": "295249415728", + "name": "Daily Value Meal", + "representation": { + "desktop": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "tablet": { + "portrait": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + } + }, + "mobile": { + "portrait": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "landscape": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + } + } + }, + "sequence_order": { + "desktop": 8, + "tablet": { + "portrait": 9, + "landscape": 8 + }, + "mobile": { + "portrait": 9, + "landscape": 9 + } + }, + "data_type": "MENU_ITEM", + "feed_type": "CATEGORY", + "retryable": true, + "request": { + "parameters": [ + { + "id": "time", + "value": "1741702348139" + }, + { + "id": "location" + }, + { + "id": "operationId", + "value": "dd230c80-fe82-11ef-8c81-df1f8a8bb0b1" + }, + { + "id": "isFutureOrder", + "value": "false" + }, + { + "id": "restaurantStatus", + "value": "ORDERABLE" + }, + { + "id": "isNonRestaurantMerchant", + "value": "false" + }, + { + "id": "merchantTypes", + "value": "" + }, + { + "id": "orderType", + "value": "STANDARD" + }, + { + "id": "agent", + "value": "false" + }, + { + "id": "task", + "value": "CATEGORY" + } + ] + }, + "top_nav": { + "desktop": { + "type": "SEARCH_BAR", + "action_type": "FILTER" + }, + "tablet": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + }, + "mobile": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + } + }, + "routes": { + "SINGLE_FEED": { + "id": "295249415728", + "name": "Daily Value Meal", + "representation": { + "desktop": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "tablet": { + "portrait": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + } + }, + "mobile": { + "portrait": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + } + } + }, + "sequence_order": { + "desktop": 8, + "tablet": { + "portrait": 9, + "landscape": 8 + }, + "mobile": { + "portrait": 9, + "landscape": 9 + } + }, + "data_type": "MENU_ITEM", + "feed_type": "CATEGORY", + "retryable": true, + "request": { + "parameters": [ + { + "id": "time", + "value": "1741702348139" + }, + { + "id": "location" + }, + { + "id": "operationId", + "value": "dd230c80-fe82-11ef-8c81-df1f8a8bb0b1" + }, + { + "id": "isFutureOrder", + "value": "false" + }, + { + "id": "restaurantStatus", + "value": "ORDERABLE" + }, + { + "id": "isNonRestaurantMerchant", + "value": "false" + }, + { + "id": "merchantTypes", + "value": "" + }, + { + "id": "orderType", + "value": "STANDARD" + }, + { + "id": "agent", + "value": "false" + }, + { + "id": "task", + "value": "CATEGORY" + } + ] + }, + "top_nav": { + "tablet": { + "portrait": { + "type": "NO_OPERATION" + } + }, + "mobile": { + "portrait": { + "type": "NO_OPERATION" + }, + "landscape": { + "type": "NO_OPERATION" + } + } + }, + "max_number_of_items": 4 + } + }, + "max_number_of_items": 4 + }, + { + "id": "295249415600", + "name": "Fried Rice", + "representation": { + "desktop": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "tablet": { + "portrait": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + } + }, + "mobile": { + "portrait": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "landscape": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + } + } + }, + "sequence_order": { + "desktop": 9, + "tablet": { + "portrait": 10, + "landscape": 9 + }, + "mobile": { + "portrait": 10, + "landscape": 10 + } + }, + "data_type": "MENU_ITEM", + "feed_type": "CATEGORY", + "retryable": true, + "request": { + "parameters": [ + { + "id": "time", + "value": "1741702348139" + }, + { + "id": "location" + }, + { + "id": "operationId", + "value": "dd230c80-fe82-11ef-8c81-df1f8a8bb0b1" + }, + { + "id": "isFutureOrder", + "value": "false" + }, + { + "id": "restaurantStatus", + "value": "ORDERABLE" + }, + { + "id": "isNonRestaurantMerchant", + "value": "false" + }, + { + "id": "merchantTypes", + "value": "" + }, + { + "id": "orderType", + "value": "STANDARD" + }, + { + "id": "agent", + "value": "false" + }, + { + "id": "task", + "value": "CATEGORY" + } + ] + }, + "top_nav": { + "desktop": { + "type": "SEARCH_BAR", + "action_type": "FILTER" + }, + "tablet": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + }, + "mobile": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + } + }, + "routes": { + "SINGLE_FEED": { + "id": "295249415600", + "name": "Fried Rice", + "representation": { + "desktop": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "tablet": { + "portrait": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + } + }, + "mobile": { + "portrait": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + } + } + }, + "sequence_order": { + "desktop": 9, + "tablet": { + "portrait": 10, + "landscape": 9 + }, + "mobile": { + "portrait": 10, + "landscape": 10 + } + }, + "data_type": "MENU_ITEM", + "feed_type": "CATEGORY", + "retryable": true, + "request": { + "parameters": [ + { + "id": "time", + "value": "1741702348139" + }, + { + "id": "location" + }, + { + "id": "operationId", + "value": "dd230c80-fe82-11ef-8c81-df1f8a8bb0b1" + }, + { + "id": "isFutureOrder", + "value": "false" + }, + { + "id": "restaurantStatus", + "value": "ORDERABLE" + }, + { + "id": "isNonRestaurantMerchant", + "value": "false" + }, + { + "id": "merchantTypes", + "value": "" + }, + { + "id": "orderType", + "value": "STANDARD" + }, + { + "id": "agent", + "value": "false" + }, + { + "id": "task", + "value": "CATEGORY" + } + ] + }, + "top_nav": { + "tablet": { + "portrait": { + "type": "NO_OPERATION" + } + }, + "mobile": { + "portrait": { + "type": "NO_OPERATION" + }, + "landscape": { + "type": "NO_OPERATION" + } + } + }, + "max_number_of_items": 9 + } + }, + "max_number_of_items": 9 + }, + { + "id": "295249415664", + "name": "Lo Mein", + "representation": { + "desktop": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "tablet": { + "portrait": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + } + }, + "mobile": { + "portrait": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "landscape": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + } + } + }, + "sequence_order": { + "desktop": 10, + "tablet": { + "portrait": 11, + "landscape": 10 + }, + "mobile": { + "portrait": 11, + "landscape": 11 + } + }, + "data_type": "MENU_ITEM", + "feed_type": "CATEGORY", + "retryable": true, + "request": { + "parameters": [ + { + "id": "time", + "value": "1741702348139" + }, + { + "id": "location" + }, + { + "id": "operationId", + "value": "dd230c80-fe82-11ef-8c81-df1f8a8bb0b1" + }, + { + "id": "isFutureOrder", + "value": "false" + }, + { + "id": "restaurantStatus", + "value": "ORDERABLE" + }, + { + "id": "isNonRestaurantMerchant", + "value": "false" + }, + { + "id": "merchantTypes", + "value": "" + }, + { + "id": "orderType", + "value": "STANDARD" + }, + { + "id": "agent", + "value": "false" + }, + { + "id": "task", + "value": "CATEGORY" + } + ] + }, + "top_nav": { + "desktop": { + "type": "SEARCH_BAR", + "action_type": "FILTER" + }, + "tablet": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + }, + "mobile": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + } + }, + "routes": { + "SINGLE_FEED": { + "id": "295249415664", + "name": "Lo Mein", + "representation": { + "desktop": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "tablet": { + "portrait": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + } + }, + "mobile": { + "portrait": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + } + } + }, + "sequence_order": { + "desktop": 10, + "tablet": { + "portrait": 11, + "landscape": 10 + }, + "mobile": { + "portrait": 11, + "landscape": 11 + } + }, + "data_type": "MENU_ITEM", + "feed_type": "CATEGORY", + "retryable": true, + "request": { + "parameters": [ + { + "id": "time", + "value": "1741702348139" + }, + { + "id": "location" + }, + { + "id": "operationId", + "value": "dd230c80-fe82-11ef-8c81-df1f8a8bb0b1" + }, + { + "id": "isFutureOrder", + "value": "false" + }, + { + "id": "restaurantStatus", + "value": "ORDERABLE" + }, + { + "id": "isNonRestaurantMerchant", + "value": "false" + }, + { + "id": "merchantTypes", + "value": "" + }, + { + "id": "orderType", + "value": "STANDARD" + }, + { + "id": "agent", + "value": "false" + }, + { + "id": "task", + "value": "CATEGORY" + } + ] + }, + "top_nav": { + "tablet": { + "portrait": { + "type": "NO_OPERATION" + } + }, + "mobile": { + "portrait": { + "type": "NO_OPERATION" + }, + "landscape": { + "type": "NO_OPERATION" + } + } + }, + "max_number_of_items": 6 + } + }, + "max_number_of_items": 6 + }, + { + "id": "295249415656", + "name": "Vegetables", + "representation": { + "desktop": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "tablet": { + "portrait": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + } + }, + "mobile": { + "portrait": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "landscape": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + } + } + }, + "sequence_order": { + "desktop": 11, + "tablet": { + "portrait": 12, + "landscape": 11 + }, + "mobile": { + "portrait": 12, + "landscape": 12 + } + }, + "data_type": "MENU_ITEM", + "feed_type": "CATEGORY", + "retryable": true, + "request": { + "parameters": [ + { + "id": "time", + "value": "1741702348139" + }, + { + "id": "location" + }, + { + "id": "operationId", + "value": "dd230c80-fe82-11ef-8c81-df1f8a8bb0b1" + }, + { + "id": "isFutureOrder", + "value": "false" + }, + { + "id": "restaurantStatus", + "value": "ORDERABLE" + }, + { + "id": "isNonRestaurantMerchant", + "value": "false" + }, + { + "id": "merchantTypes", + "value": "" + }, + { + "id": "orderType", + "value": "STANDARD" + }, + { + "id": "agent", + "value": "false" + }, + { + "id": "task", + "value": "CATEGORY" + } + ] + }, + "top_nav": { + "desktop": { + "type": "SEARCH_BAR", + "action_type": "FILTER" + }, + "tablet": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + }, + "mobile": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + } + }, + "routes": { + "SINGLE_FEED": { + "id": "295249415656", + "name": "Vegetables", + "representation": { + "desktop": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "tablet": { + "portrait": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + } + }, + "mobile": { + "portrait": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + } + } + }, + "sequence_order": { + "desktop": 11, + "tablet": { + "portrait": 12, + "landscape": 11 + }, + "mobile": { + "portrait": 12, + "landscape": 12 + } + }, + "data_type": "MENU_ITEM", + "feed_type": "CATEGORY", + "retryable": true, + "request": { + "parameters": [ + { + "id": "time", + "value": "1741702348139" + }, + { + "id": "location" + }, + { + "id": "operationId", + "value": "dd230c80-fe82-11ef-8c81-df1f8a8bb0b1" + }, + { + "id": "isFutureOrder", + "value": "false" + }, + { + "id": "restaurantStatus", + "value": "ORDERABLE" + }, + { + "id": "isNonRestaurantMerchant", + "value": "false" + }, + { + "id": "merchantTypes", + "value": "" + }, + { + "id": "orderType", + "value": "STANDARD" + }, + { + "id": "agent", + "value": "false" + }, + { + "id": "task", + "value": "CATEGORY" + } + ] + }, + "top_nav": { + "tablet": { + "portrait": { + "type": "NO_OPERATION" + } + }, + "mobile": { + "portrait": { + "type": "NO_OPERATION" + }, + "landscape": { + "type": "NO_OPERATION" + } + } + }, + "max_number_of_items": 4 + } + }, + "max_number_of_items": 4 + }, + { + "id": "295249415680", + "name": "Chop Suey", + "representation": { + "desktop": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "tablet": { + "portrait": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + } + }, + "mobile": { + "portrait": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "landscape": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + } + } + }, + "sequence_order": { + "desktop": 12, + "tablet": { + "portrait": 13, + "landscape": 12 + }, + "mobile": { + "portrait": 13, + "landscape": 13 + } + }, + "data_type": "MENU_ITEM", + "feed_type": "CATEGORY", + "retryable": true, + "request": { + "parameters": [ + { + "id": "time", + "value": "1741702348139" + }, + { + "id": "location" + }, + { + "id": "operationId", + "value": "dd230c80-fe82-11ef-8c81-df1f8a8bb0b1" + }, + { + "id": "isFutureOrder", + "value": "false" + }, + { + "id": "restaurantStatus", + "value": "ORDERABLE" + }, + { + "id": "isNonRestaurantMerchant", + "value": "false" + }, + { + "id": "merchantTypes", + "value": "" + }, + { + "id": "orderType", + "value": "STANDARD" + }, + { + "id": "agent", + "value": "false" + }, + { + "id": "task", + "value": "CATEGORY" + } + ] + }, + "top_nav": { + "desktop": { + "type": "SEARCH_BAR", + "action_type": "FILTER" + }, + "tablet": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + }, + "mobile": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + } + }, + "routes": { + "SINGLE_FEED": { + "id": "295249415680", + "name": "Chop Suey", + "representation": { + "desktop": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "tablet": { + "portrait": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + } + }, + "mobile": { + "portrait": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + } + } + }, + "sequence_order": { + "desktop": 12, + "tablet": { + "portrait": 13, + "landscape": 12 + }, + "mobile": { + "portrait": 13, + "landscape": 13 + } + }, + "data_type": "MENU_ITEM", + "feed_type": "CATEGORY", + "retryable": true, + "request": { + "parameters": [ + { + "id": "time", + "value": "1741702348139" + }, + { + "id": "location" + }, + { + "id": "operationId", + "value": "dd230c80-fe82-11ef-8c81-df1f8a8bb0b1" + }, + { + "id": "isFutureOrder", + "value": "false" + }, + { + "id": "restaurantStatus", + "value": "ORDERABLE" + }, + { + "id": "isNonRestaurantMerchant", + "value": "false" + }, + { + "id": "merchantTypes", + "value": "" + }, + { + "id": "orderType", + "value": "STANDARD" + }, + { + "id": "agent", + "value": "false" + }, + { + "id": "task", + "value": "CATEGORY" + } + ] + }, + "top_nav": { + "tablet": { + "portrait": { + "type": "NO_OPERATION" + } + }, + "mobile": { + "portrait": { + "type": "NO_OPERATION" + }, + "landscape": { + "type": "NO_OPERATION" + } + } + }, + "max_number_of_items": 6 + } + }, + "max_number_of_items": 6 + }, + { + "id": "295249415608", + "name": "Pork", + "representation": { + "desktop": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "tablet": { + "portrait": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + } + }, + "mobile": { + "portrait": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "landscape": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + } + } + }, + "sequence_order": { + "desktop": 13, + "tablet": { + "portrait": 14, + "landscape": 13 + }, + "mobile": { + "portrait": 14, + "landscape": 14 + } + }, + "data_type": "MENU_ITEM", + "feed_type": "CATEGORY", + "retryable": true, + "request": { + "parameters": [ + { + "id": "time", + "value": "1741702348139" + }, + { + "id": "location" + }, + { + "id": "operationId", + "value": "dd230c80-fe82-11ef-8c81-df1f8a8bb0b1" + }, + { + "id": "isFutureOrder", + "value": "false" + }, + { + "id": "restaurantStatus", + "value": "ORDERABLE" + }, + { + "id": "isNonRestaurantMerchant", + "value": "false" + }, + { + "id": "merchantTypes", + "value": "" + }, + { + "id": "orderType", + "value": "STANDARD" + }, + { + "id": "agent", + "value": "false" + }, + { + "id": "task", + "value": "CATEGORY" + } + ] + }, + "top_nav": { + "desktop": { + "type": "SEARCH_BAR", + "action_type": "FILTER" + }, + "tablet": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + }, + "mobile": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + } + }, + "routes": { + "SINGLE_FEED": { + "id": "295249415608", + "name": "Pork", + "representation": { + "desktop": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "tablet": { + "portrait": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + } + }, + "mobile": { + "portrait": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + } + } + }, + "sequence_order": { + "desktop": 13, + "tablet": { + "portrait": 14, + "landscape": 13 + }, + "mobile": { + "portrait": 14, + "landscape": 14 + } + }, + "data_type": "MENU_ITEM", + "feed_type": "CATEGORY", + "retryable": true, + "request": { + "parameters": [ + { + "id": "time", + "value": "1741702348139" + }, + { + "id": "location" + }, + { + "id": "operationId", + "value": "dd230c80-fe82-11ef-8c81-df1f8a8bb0b1" + }, + { + "id": "isFutureOrder", + "value": "false" + }, + { + "id": "restaurantStatus", + "value": "ORDERABLE" + }, + { + "id": "isNonRestaurantMerchant", + "value": "false" + }, + { + "id": "merchantTypes", + "value": "" + }, + { + "id": "orderType", + "value": "STANDARD" + }, + { + "id": "agent", + "value": "false" + }, + { + "id": "task", + "value": "CATEGORY" + } + ] + }, + "top_nav": { + "tablet": { + "portrait": { + "type": "NO_OPERATION" + } + }, + "mobile": { + "portrait": { + "type": "NO_OPERATION" + }, + "landscape": { + "type": "NO_OPERATION" + } + } + }, + "max_number_of_items": 5 + } + }, + "max_number_of_items": 5 + }, + { + "id": "295249415632", + "name": "Chicken", + "representation": { + "desktop": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "tablet": { + "portrait": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + } + }, + "mobile": { + "portrait": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "landscape": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + } + } + }, + "sequence_order": { + "desktop": 14, + "tablet": { + "portrait": 15, + "landscape": 14 + }, + "mobile": { + "portrait": 15, + "landscape": 15 + } + }, + "data_type": "MENU_ITEM", + "feed_type": "CATEGORY", + "retryable": true, + "request": { + "parameters": [ + { + "id": "time", + "value": "1741702348139" + }, + { + "id": "location" + }, + { + "id": "operationId", + "value": "dd230c80-fe82-11ef-8c81-df1f8a8bb0b1" + }, + { + "id": "isFutureOrder", + "value": "false" + }, + { + "id": "restaurantStatus", + "value": "ORDERABLE" + }, + { + "id": "isNonRestaurantMerchant", + "value": "false" + }, + { + "id": "merchantTypes", + "value": "" + }, + { + "id": "orderType", + "value": "STANDARD" + }, + { + "id": "agent", + "value": "false" + }, + { + "id": "task", + "value": "CATEGORY" + } + ] + }, + "top_nav": { + "desktop": { + "type": "SEARCH_BAR", + "action_type": "FILTER" + }, + "tablet": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + }, + "mobile": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + } + }, + "routes": { + "SINGLE_FEED": { + "id": "295249415632", + "name": "Chicken", + "representation": { + "desktop": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "tablet": { + "portrait": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + } + }, + "mobile": { + "portrait": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + } + } + }, + "sequence_order": { + "desktop": 14, + "tablet": { + "portrait": 15, + "landscape": 14 + }, + "mobile": { + "portrait": 15, + "landscape": 15 + } + }, + "data_type": "MENU_ITEM", + "feed_type": "CATEGORY", + "retryable": true, + "request": { + "parameters": [ + { + "id": "time", + "value": "1741702348139" + }, + { + "id": "location" + }, + { + "id": "operationId", + "value": "dd230c80-fe82-11ef-8c81-df1f8a8bb0b1" + }, + { + "id": "isFutureOrder", + "value": "false" + }, + { + "id": "restaurantStatus", + "value": "ORDERABLE" + }, + { + "id": "isNonRestaurantMerchant", + "value": "false" + }, + { + "id": "merchantTypes", + "value": "" + }, + { + "id": "orderType", + "value": "STANDARD" + }, + { + "id": "agent", + "value": "false" + }, + { + "id": "task", + "value": "CATEGORY" + } + ] + }, + "top_nav": { + "tablet": { + "portrait": { + "type": "NO_OPERATION" + } + }, + "mobile": { + "portrait": { + "type": "NO_OPERATION" + }, + "landscape": { + "type": "NO_OPERATION" + } + } + }, + "max_number_of_items": 12 + } + }, + "max_number_of_items": 12 + }, + { + "id": "295249415640", + "name": "Beef", + "representation": { + "desktop": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "tablet": { + "portrait": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + } + }, + "mobile": { + "portrait": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "landscape": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + } + } + }, + "sequence_order": { + "desktop": 15, + "tablet": { + "portrait": 16, + "landscape": 15 + }, + "mobile": { + "portrait": 16, + "landscape": 16 + } + }, + "data_type": "MENU_ITEM", + "feed_type": "CATEGORY", + "retryable": true, + "request": { + "parameters": [ + { + "id": "time", + "value": "1741702348139" + }, + { + "id": "location" + }, + { + "id": "operationId", + "value": "dd230c80-fe82-11ef-8c81-df1f8a8bb0b1" + }, + { + "id": "isFutureOrder", + "value": "false" + }, + { + "id": "restaurantStatus", + "value": "ORDERABLE" + }, + { + "id": "isNonRestaurantMerchant", + "value": "false" + }, + { + "id": "merchantTypes", + "value": "" + }, + { + "id": "orderType", + "value": "STANDARD" + }, + { + "id": "agent", + "value": "false" + }, + { + "id": "task", + "value": "CATEGORY" + } + ] + }, + "top_nav": { + "desktop": { + "type": "SEARCH_BAR", + "action_type": "FILTER" + }, + "tablet": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + }, + "mobile": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + } + }, + "routes": { + "SINGLE_FEED": { + "id": "295249415640", + "name": "Beef", + "representation": { + "desktop": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "tablet": { + "portrait": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + } + }, + "mobile": { + "portrait": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + } + } + }, + "sequence_order": { + "desktop": 15, + "tablet": { + "portrait": 16, + "landscape": 15 + }, + "mobile": { + "portrait": 16, + "landscape": 16 + } + }, + "data_type": "MENU_ITEM", + "feed_type": "CATEGORY", + "retryable": true, + "request": { + "parameters": [ + { + "id": "time", + "value": "1741702348139" + }, + { + "id": "location" + }, + { + "id": "operationId", + "value": "dd230c80-fe82-11ef-8c81-df1f8a8bb0b1" + }, + { + "id": "isFutureOrder", + "value": "false" + }, + { + "id": "restaurantStatus", + "value": "ORDERABLE" + }, + { + "id": "isNonRestaurantMerchant", + "value": "false" + }, + { + "id": "merchantTypes", + "value": "" + }, + { + "id": "orderType", + "value": "STANDARD" + }, + { + "id": "agent", + "value": "false" + }, + { + "id": "task", + "value": "CATEGORY" + } + ] + }, + "top_nav": { + "tablet": { + "portrait": { + "type": "NO_OPERATION" + } + }, + "mobile": { + "portrait": { + "type": "NO_OPERATION" + }, + "landscape": { + "type": "NO_OPERATION" + } + } + }, + "max_number_of_items": 11 + } + }, + "max_number_of_items": 11 + }, + { + "id": "295249415648", + "name": "Seafood", + "representation": { + "desktop": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "tablet": { + "portrait": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + } + }, + "mobile": { + "portrait": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "landscape": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + } + } + }, + "sequence_order": { + "desktop": 16, + "tablet": { + "portrait": 17, + "landscape": 16 + }, + "mobile": { + "portrait": 17, + "landscape": 17 + } + }, + "data_type": "MENU_ITEM", + "feed_type": "CATEGORY", + "retryable": true, + "request": { + "parameters": [ + { + "id": "time", + "value": "1741702348139" + }, + { + "id": "location" + }, + { + "id": "operationId", + "value": "dd230c80-fe82-11ef-8c81-df1f8a8bb0b1" + }, + { + "id": "isFutureOrder", + "value": "false" + }, + { + "id": "restaurantStatus", + "value": "ORDERABLE" + }, + { + "id": "isNonRestaurantMerchant", + "value": "false" + }, + { + "id": "merchantTypes", + "value": "" + }, + { + "id": "orderType", + "value": "STANDARD" + }, + { + "id": "agent", + "value": "false" + }, + { + "id": "task", + "value": "CATEGORY" + } + ] + }, + "top_nav": { + "desktop": { + "type": "SEARCH_BAR", + "action_type": "FILTER" + }, + "tablet": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + }, + "mobile": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + } + }, + "routes": { + "SINGLE_FEED": { + "id": "295249415648", + "name": "Seafood", + "representation": { + "desktop": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "tablet": { + "portrait": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + } + }, + "mobile": { + "portrait": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + } + } + }, + "sequence_order": { + "desktop": 16, + "tablet": { + "portrait": 17, + "landscape": 16 + }, + "mobile": { + "portrait": 17, + "landscape": 17 + } + }, + "data_type": "MENU_ITEM", + "feed_type": "CATEGORY", + "retryable": true, + "request": { + "parameters": [ + { + "id": "time", + "value": "1741702348139" + }, + { + "id": "location" + }, + { + "id": "operationId", + "value": "dd230c80-fe82-11ef-8c81-df1f8a8bb0b1" + }, + { + "id": "isFutureOrder", + "value": "false" + }, + { + "id": "restaurantStatus", + "value": "ORDERABLE" + }, + { + "id": "isNonRestaurantMerchant", + "value": "false" + }, + { + "id": "merchantTypes", + "value": "" + }, + { + "id": "orderType", + "value": "STANDARD" + }, + { + "id": "agent", + "value": "false" + }, + { + "id": "task", + "value": "CATEGORY" + } + ] + }, + "top_nav": { + "tablet": { + "portrait": { + "type": "NO_OPERATION" + } + }, + "mobile": { + "portrait": { + "type": "NO_OPERATION" + }, + "landscape": { + "type": "NO_OPERATION" + } + } + }, + "max_number_of_items": 9 + } + }, + "max_number_of_items": 9 + }, + { + "id": "295249415720", + "name": "House Specials", + "representation": { + "desktop": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "tablet": { + "portrait": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + } + }, + "mobile": { + "portrait": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "landscape": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + } + } + }, + "sequence_order": { + "desktop": 17, + "tablet": { + "portrait": 18, + "landscape": 17 + }, + "mobile": { + "portrait": 18, + "landscape": 18 + } + }, + "data_type": "MENU_ITEM", + "feed_type": "CATEGORY", + "retryable": true, + "request": { + "parameters": [ + { + "id": "time", + "value": "1741702348139" + }, + { + "id": "location" + }, + { + "id": "operationId", + "value": "dd230c80-fe82-11ef-8c81-df1f8a8bb0b1" + }, + { + "id": "isFutureOrder", + "value": "false" + }, + { + "id": "restaurantStatus", + "value": "ORDERABLE" + }, + { + "id": "isNonRestaurantMerchant", + "value": "false" + }, + { + "id": "merchantTypes", + "value": "" + }, + { + "id": "orderType", + "value": "STANDARD" + }, + { + "id": "agent", + "value": "false" + }, + { + "id": "task", + "value": "CATEGORY" + } + ] + }, + "top_nav": { + "desktop": { + "type": "SEARCH_BAR", + "action_type": "FILTER" + }, + "tablet": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + }, + "mobile": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + } + }, + "routes": { + "SINGLE_FEED": { + "id": "295249415720", + "name": "House Specials", + "representation": { + "desktop": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "tablet": { + "portrait": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + } + }, + "mobile": { + "portrait": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + } + } + }, + "sequence_order": { + "desktop": 17, + "tablet": { + "portrait": 18, + "landscape": 17 + }, + "mobile": { + "portrait": 18, + "landscape": 18 + } + }, + "data_type": "MENU_ITEM", + "feed_type": "CATEGORY", + "retryable": true, + "request": { + "parameters": [ + { + "id": "time", + "value": "1741702348139" + }, + { + "id": "location" + }, + { + "id": "operationId", + "value": "dd230c80-fe82-11ef-8c81-df1f8a8bb0b1" + }, + { + "id": "isFutureOrder", + "value": "false" + }, + { + "id": "restaurantStatus", + "value": "ORDERABLE" + }, + { + "id": "isNonRestaurantMerchant", + "value": "false" + }, + { + "id": "merchantTypes", + "value": "" + }, + { + "id": "orderType", + "value": "STANDARD" + }, + { + "id": "agent", + "value": "false" + }, + { + "id": "task", + "value": "CATEGORY" + } + ] + }, + "top_nav": { + "tablet": { + "portrait": { + "type": "NO_OPERATION" + } + }, + "mobile": { + "portrait": { + "type": "NO_OPERATION" + }, + "landscape": { + "type": "NO_OPERATION" + } + } + }, + "max_number_of_items": 16 + } + }, + "max_number_of_items": 16 + }, + { + "id": "295249415688", + "name": "Combo Platters", + "representation": { + "desktop": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "tablet": { + "portrait": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + } + }, + "mobile": { + "portrait": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "landscape": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + } + } + }, + "sequence_order": { + "desktop": 18, + "tablet": { + "portrait": 19, + "landscape": 18 + }, + "mobile": { + "portrait": 19, + "landscape": 19 + } + }, + "data_type": "MENU_ITEM", + "feed_type": "CATEGORY", + "retryable": true, + "request": { + "parameters": [ + { + "id": "time", + "value": "1741702348139" + }, + { + "id": "location" + }, + { + "id": "operationId", + "value": "dd230c80-fe82-11ef-8c81-df1f8a8bb0b1" + }, + { + "id": "isFutureOrder", + "value": "false" + }, + { + "id": "restaurantStatus", + "value": "ORDERABLE" + }, + { + "id": "isNonRestaurantMerchant", + "value": "false" + }, + { + "id": "merchantTypes", + "value": "" + }, + { + "id": "orderType", + "value": "STANDARD" + }, + { + "id": "agent", + "value": "false" + }, + { + "id": "task", + "value": "CATEGORY" + } + ] + }, + "top_nav": { + "desktop": { + "type": "SEARCH_BAR", + "action_type": "FILTER" + }, + "tablet": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + }, + "mobile": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + } + }, + "routes": { + "SINGLE_FEED": { + "id": "295249415688", + "name": "Combo Platters", + "representation": { + "desktop": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "tablet": { + "portrait": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + } + }, + "mobile": { + "portrait": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + } + } + }, + "sequence_order": { + "desktop": 18, + "tablet": { + "portrait": 19, + "landscape": 18 + }, + "mobile": { + "portrait": 19, + "landscape": 19 + } + }, + "data_type": "MENU_ITEM", + "feed_type": "CATEGORY", + "retryable": true, + "request": { + "parameters": [ + { + "id": "time", + "value": "1741702348139" + }, + { + "id": "location" + }, + { + "id": "operationId", + "value": "dd230c80-fe82-11ef-8c81-df1f8a8bb0b1" + }, + { + "id": "isFutureOrder", + "value": "false" + }, + { + "id": "restaurantStatus", + "value": "ORDERABLE" + }, + { + "id": "isNonRestaurantMerchant", + "value": "false" + }, + { + "id": "merchantTypes", + "value": "" + }, + { + "id": "orderType", + "value": "STANDARD" + }, + { + "id": "agent", + "value": "false" + }, + { + "id": "task", + "value": "CATEGORY" + } + ] + }, + "top_nav": { + "tablet": { + "portrait": { + "type": "NO_OPERATION" + } + }, + "mobile": { + "portrait": { + "type": "NO_OPERATION" + }, + "landscape": { + "type": "NO_OPERATION" + } + } + }, + "max_number_of_items": 31 + } + }, + "max_number_of_items": 31 + }, + { + "id": "295249415712", + "name": "Beverage", + "representation": { + "desktop": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "tablet": { + "portrait": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + } + }, + "mobile": { + "portrait": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + }, + "landscape": { + "layout": "LIST", + "action_type": "VIEW_ALL", + "card_type": "LARGE_ITEM_CARD_2_0", + "navigation_type": "SCROLL" + } + } + }, + "sequence_order": { + "desktop": 19, + "tablet": { + "portrait": 20, + "landscape": 19 + }, + "mobile": { + "portrait": 20, + "landscape": 20 + } + }, + "data_type": "MENU_ITEM", + "feed_type": "CATEGORY", + "retryable": true, + "request": { + "parameters": [ + { + "id": "time", + "value": "1741702348139" + }, + { + "id": "location" + }, + { + "id": "operationId", + "value": "dd230c80-fe82-11ef-8c81-df1f8a8bb0b1" + }, + { + "id": "isFutureOrder", + "value": "false" + }, + { + "id": "restaurantStatus", + "value": "ORDERABLE" + }, + { + "id": "isNonRestaurantMerchant", + "value": "false" + }, + { + "id": "merchantTypes", + "value": "" + }, + { + "id": "orderType", + "value": "STANDARD" + }, + { + "id": "agent", + "value": "false" + }, + { + "id": "task", + "value": "CATEGORY" + } + ] + }, + "top_nav": { + "desktop": { + "type": "SEARCH_BAR", + "action_type": "FILTER" + }, + "tablet": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + }, + "mobile": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + } + }, + "routes": { + "SINGLE_FEED": { + "id": "295249415712", + "name": "Beverage", + "representation": { + "desktop": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "tablet": { + "portrait": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + } + }, + "mobile": { + "portrait": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + }, + "landscape": { + "layout": "LIST", + "card_type": "LARGE_ITEM_CARD_2_0" + } + } + }, + "sequence_order": { + "desktop": 19, + "tablet": { + "portrait": 20, + "landscape": 19 + }, + "mobile": { + "portrait": 20, + "landscape": 20 + } + }, + "data_type": "MENU_ITEM", + "feed_type": "CATEGORY", + "retryable": true, + "request": { + "parameters": [ + { + "id": "time", + "value": "1741702348139" + }, + { + "id": "location" + }, + { + "id": "operationId", + "value": "dd230c80-fe82-11ef-8c81-df1f8a8bb0b1" + }, + { + "id": "isFutureOrder", + "value": "false" + }, + { + "id": "restaurantStatus", + "value": "ORDERABLE" + }, + { + "id": "isNonRestaurantMerchant", + "value": "false" + }, + { + "id": "merchantTypes", + "value": "" + }, + { + "id": "orderType", + "value": "STANDARD" + }, + { + "id": "agent", + "value": "false" + }, + { + "id": "task", + "value": "CATEGORY" + } + ] + }, + "top_nav": { + "tablet": { + "portrait": { + "type": "NO_OPERATION" + } + }, + "mobile": { + "portrait": { + "type": "NO_OPERATION" + }, + "landscape": { + "type": "NO_OPERATION" + } + } + }, + "max_number_of_items": 18 + } + }, + "max_number_of_items": 18 + }, + { + "id": "None", + "name": "Similar options nearby", + "description": "Similar Restaurants for the current merchant", + "representation": { + "desktop": { + "layout": "CAROUSEL" + }, + "tablet": { + "portrait": { + "layout": "CAROUSEL" + }, + "landscape": { + "layout": "CAROUSEL" + } + }, + "mobile": { + "portrait": { + "layout": "CAROUSEL" + }, + "landscape": { + "layout": "CAROUSEL" + } + } + }, + "sequence_order": { + "desktop": 20, + "tablet": { + "portrait": 21, + "landscape": 20 + }, + "mobile": { + "portrait": 21, + "landscape": 21 + } + }, + "data_type": "SIMILAR_RESTAURANT", + "feed_type": "SIMILAR_RESTAURANTS", + "retryable": false, + "request": { + "parameters": [ + { + "id": "operationId", + "value": "dd230c80-fe82-11ef-8c81-df1f8a8bb0b1" + }, + { + "id": "location", + "value": "POINT(-81.31121064 28.51548767)" + }, + { + "id": "brandUuid" + }, + { + "id": "isFutureOrder", + "value": "false" + }, + { + "id": "task", + "value": "SIMILAR_RESTAURANTS" + } + ] + }, + "top_nav": { + "desktop": { + "type": "SEARCH_BAR", + "action_type": "FILTER" + }, + "tablet": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + }, + "mobile": { + "portrait": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + }, + "landscape": { + "type": "HORIZONTAL_CATEGORY_NAVIGATION", + "action_type": "OVERLAY" + } + } + }, + "routes": {}, + "metadata": { + "recommendation_name": "similar restaurants" + } + } + ] + } + }, + "status": "SUCCESS" +} \ No newline at end of file diff --git a/web/grubhub/menu_item.json b/web/grubhub/menu_item.json new file mode 100644 index 0000000..a92414d --- /dev/null +++ b/web/grubhub/menu_item.json @@ -0,0 +1,414 @@ +[ + { + "name": "Add Or No Add Or No (3rd)", + "list": [ + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": false, + "min": 0, + "max": 100 + }, + { + "name": "Rice Choice (3rd)", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + } + ], + "required": true, + "min": 1, + "max": 1 + }, + { + "name": "Buffalo Wings", + "list": [ + { + "name": "(Plain)", + "price": 0.0 + }, + { + "name": "(w. Fries)", + "price": 0.96 + }, + { + "name": "(w. Pork Fried Rice)", + "price": 0.96 + }, + { + "name": "(w. Chicken Fried Rice)", + "price": 0.96 + }, + { + "name": "(w. Beef Fried Rice)", + "price": 2.04 + }, + { + "name": "(w. Shrimp Fried Rice)", + "price": 2.04 + } + ], + "required": true, + "min": 1, + "max": 1 + }, + { + "name": "Chicken Nuggets (15)", + "list": [ + { + "name": "(Plain)", + "price": 0.0 + }, + { + "name": "(w. Fries)", + "price": 2.35 + }, + { + "name": "(w. Pork Fried Rice)", + "price": 2.35 + }, + { + "name": "(w. Chicken Fried Rice)", + "price": 2.59 + }, + { + "name": "(w. Beef Fried Rice)", + "price": 2.59 + }, + { + "name": "(w. Shrimp Fried Rice)", + "price": 2.59 + } + ], + "required": true, + "min": 1, + "max": 1 + }, + { + "name": "Fried Chicken Wings (3pcs wholewings)", + "list": [ + { + "name": "(Plain)", + "price": 0.0 + }, + { + "name": "(w. Fries)", + "price": 1.32 + }, + { + "name": "(w. Pork Fried Rice)", + "price": 1.32 + }, + { + "name": "(w. Chicken Fried Rice)", + "price": 2.4 + }, + { + "name": "(w. Beef Fried Rice)", + "price": 2.4 + }, + { + "name": "(w. Shrimp Fried Rice)", + "price": 2.4 + } + ], + "required": true, + "min": 1, + "max": 1 + }, + { + "name": "Chicken Wings w. Garlic Sauce", + "list": [ + { + "name": "(Plain)", + "price": 0.0 + }, + { + "name": "(w. Fries)", + "price": 0.96 + }, + { + "name": "(w. Pork Fried Rice)", + "price": 0.96 + }, + { + "name": "(w. Chicken Fried Rice)", + "price": 0.96 + }, + { + "name": "(w. Beef Fried Rice)", + "price": 2.04 + }, + { + "name": "(w. Shrimp Fried Rice)", + "price": 2.04 + } + ], + "required": true, + "min": 1, + "max": 1 + }, + { + "name": "LC Rice Choice (3rd)", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 0.0 + }, + { + "name": "w. Egg Fried Rice", + "price": 0.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 0.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 1.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 0.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.0 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.0 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.0 + }, + { + "name": "w. House Special Fried Rice", + "price": 2.5 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + } + ], + "required": false, + "min": 0, + "max": 1 + }, + { + "name": "Side Choice (3rd)", + "list": [ + { + "name": "w. Pork Egg Roll", + "price": 0.0 + }, + { + "name": "w. Veg Roll", + "price": 0.5 + }, + { + "name": "w. Coca Cola (can)", + "price": 0.0 + }, + { + "name": "w. Sprite (can)", + "price": 0.0 + }, + { + "name": "w. Brisk (can)", + "price": 0.0 + }, + { + "name": "w. MtnDew (can)", + "price": 0.0 + }, + { + "name": "w. Diet Coke (can)", + "price": 0.0 + }, + { + "name": "w. Pepsi (can)", + "price": 0.0 + }, + { + "name": "w. Orange (can)", + "price": 0.0 + }, + { + "name": "w. Ginger Ale (can)", + "price": 0.0 + }, + { + "name": "w. Dr Pepper (can)", + "price": 0.0 + }, + { + "name": "w. Water", + "price": 0.0 + }, + { + "name": "w. Wonton Soup", + "price": 0.0 + }, + { + "name": "w. Egg Drop Soup", + "price": 0.0 + }, + { + "name": "w. Hot Sour Soup", + "price": 0.5 + } + ], + "required": true, + "min": 1, + "max": 1 + }, + { + "name": "Extra Sauce (3rd)", + "list": [ + { + "name": "Extra Sauce", + "price": 0.0 + } + ], + "required": false, + "min": 0, + "max": 1 + } +] \ No newline at end of file diff --git a/web/kwaixiaodian/main.py b/web/kwaixiaodian/main.py new file mode 100644 index 0000000..9b1217c --- /dev/null +++ b/web/kwaixiaodian/main.py @@ -0,0 +1,47 @@ +import requests +import json + + +headers = { + "accept": "application/json, text/plain, */*", + "accept-language": "zh-CN,zh;q=0.9,en;q=0.8", + "cache-control": "no-cache", + "content-type": "application/json", + "kpf": "PC_WEB", + "kpn": "unknown", + "ktrace-str": "3|My40NTgzNjk4Mjg2NzM2NzY5LjgzNjE3OTE4LjE3NDkxMzM2MjIxNzcuMTAwMQ==|My40NTgzNjk4Mjg2NzM2NzY5LjMzMzYzNjg2LjE3NDkxMzM2MjIxNzcuMTAwMA==|0|plateco-kfx-service|plateco|true|src:Js,seqn:2087,rsi:2c7d8430-cd6d-4c8b-80dd-c6a1518eebf0,path:/merchant/shop/detail,rpi:343deb66b6", + "origin": "https://app.kwaixiaodian.com", + "pragma": "no-cache", + "priority": "u=1, i", + "referer": "https://app.kwaixiaodian.com/merchant/shop/detail?id=21778354852592", + "sec-ch-ua": "\"Google Chrome\";v=\"137\", \"Chromium\";v=\"137\", \"Not/A)Brand\";v=\"24\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "sec-fetch-dest": "empty", + "sec-fetch-mode": "cors", + "sec-fetch-site": "same-origin", + "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36" +} +cookies = { + "userId": "174759615", + "kuaishou.kwaishop.product.c_st": "Ch5rdWFpc2hvdS5rd2Fpc2hvcC5wcm9kdWN0LmMuc3QSkAEWKm0SWSgQUszOw5_W9GReLVtJ__7lCB6xQ1Qlfbfd81dAEnnOSq5gU0Ijh3QqenODyNcWdIuobvCbDR83ug0eq4cFFwm9ScqTIPSAA4Zq99J6rHi6PCh3Mm38K1NltvM5YrnOXydEbJ2zdRsT0g2Klq656NcKnyOwuniqMh3-S6AfoMog67Hoite3jms9QIEaEigBlj4JBnRnpU1V3Jl5YNDGwyIgdsFFzGOIZ7g29WWC8DIdtvG0cmtpyVe5oOhDcK0CpS8oBTAB", + "kuaishou.kwaishop.product.c_ph": "d36c1ef6d691f60e3d921de2af9ab9da0179", + "_did": "web_630470819D8BDA" +} +url = "https://app.kwaixiaodian.com/rest/app/kwaishop/product/c/detail/h5/componentized" +params = { + "caver": "2", + "__NS_hxfalcon": "HUDR_sFnX-DtsEEFXsbDPT3TMP-sk0is6Segc_xRclq7WsRCxYt9QLz_qrd3MALzfkMhkshbENDI1Bul8CEN_rqrzzbU23pRTmhJ9YA-aV0esm8P3lx6tKbF_LW9rzYhnVnQQWedDJlWPn72Ha1xT2QbETHvN6EJViN1L-bUlhQif$HE_3d22bbdfddef8d0a36e177f44a5fd0c28a7776767677a9eedacc6dfb50c5b55a40fee177ed2048ac0d20489e76" +} +data = { + "sourceType": "web", + "id": "21778354852592", + "itemId": "21778354852592", + "cashierParam": "{\"installWechat\":false,\"installAlipay\":false,\"installWechatSdk\":false,\"installAlipaySdk\":false,\"installUnionPaySdk\":false,\"installUnionPay\":false}", + "fromSource": "", + "_refer": "https://passport.kuaishou.com/" +} +data = json.dumps(data, separators=(',', ':')) +response = requests.post(url, headers=headers, cookies=cookies, params=params, data=data) + +print(response.json()) \ No newline at end of file diff --git a/web/qj050_com/Requests_Except.py b/web/qj050_com/Requests_Except.py new file mode 100644 index 0000000..5f55db8 --- /dev/null +++ b/web/qj050_com/Requests_Except.py @@ -0,0 +1,208 @@ +import json +import re +import requests +import logging +import time +from lxml import etree +from types import SimpleNamespace +from http.cookies import SimpleCookie + +logging.basicConfig(level=logging.DEBUG, format='%(asctime)s - %(levelname)s - %(message)s') + + +class ExtendedResponse(requests.Response): + def xpath(self): + try: + tree = etree.HTML(self.text) + return tree + except Exception as e: + raise ValueError("XPath解析错误: " + str(e)) + + def to_Dict(self): + try: + data = self.json() + return self.dict_to_obj(data) + except Exception as e: + raise ValueError("JSON转换错误: " + str(e)) + + def to_Re_findall(self, regex): + try: + data = self.text + return re.findall(regex, data) + except Exception as e: + raise ValueError("Re搜索错误: " + str(e)) + + def cookies_dict(self): + try: + # 获取原有的 cookies 字典 + cookie_dict = self.cookies.get_dict() + # 如果响应头中有 Set-Cookie,则解析并补充 cookies + if 'Set-Cookie' in self.headers: + from http.cookies import SimpleCookie + sc = SimpleCookie() + sc.load(self.headers['Set-Cookie']) + for key, morsel in sc.items(): + cookie_dict[key] = morsel.value + return cookie_dict + except Exception as e: + raise ValueError("Cookies转换错误: " + str(e)) + + def save_cookies(self, filepath, format='json'): + """ + 将当前响应中的cookie信息保存到指定文件中。 + + 参数: + filepath (str): 保存文件的路径 + format (str): 保存格式,支持 'json'、'pickle' 和 'txt' 三种格式,默认为 'json' + """ + try: + cookie_dict = self.cookies_dict() + if format.lower() == 'json': + with open(filepath, 'w', encoding='utf-8') as f: + json.dump(cookie_dict, f, ensure_ascii=False, indent=4) + elif format.lower() == 'pickle': + import pickle + with open(filepath, 'wb') as f: + pickle.dump(cookie_dict, f) + elif format.lower() == 'txt': + with open(filepath, 'w', encoding='utf-8') as f: + for key, value in cookie_dict.items(): + f.write(f"{key}: {value}\n") + else: + raise ValueError("不支持的格式,请选择 'json'、'pickle' 或 'txt'") + except Exception as e: + raise ValueError("保存cookies出错: " + str(e)) + + @staticmethod + def dict_to_obj(d): + if isinstance(d, dict): + return SimpleNamespace(**{k: ExtendedResponse.dict_to_obj(v) for k, v in d.items()}) + elif isinstance(d, list): + return [ExtendedResponse.dict_to_obj(item) for item in d] + else: + return d + + +class MyRequests: + def __init__(self, base_url, protocol='http', retries=3, proxy_options=True, default_timeout=10, + default_cookies=None): + """ + 初始化 MyRequests 对象,自动加载本地 cookies 文件(根据 base_url 生成文件名,如 "www_zhrczp_com_cookies.json")中的 cookies, + 如果文件存在,则将其加载到 session 中;否则使用 default_cookies(如果提供)更新 session。 + + 参数: + base_url (str): 基础 URL + protocol (str): 协议(默认为 'http') + retries (int): 请求重试次数 + proxy_options (bool): 是否使用代理 + default_timeout (int): 默认超时时间 + default_cookies (dict): 默认的 cookies 字典 + """ + self.base_url = base_url.rstrip('/') + self.protocol = protocol + self.retries = retries + self.default_timeout = default_timeout + self.session = requests.Session() + + if proxy_options: + self.session.proxies = {"http": "http://127.0.0.1:7890", "https": "http://127.0.0.1:7890"} + + # 优先使用传入的 default_cookies 更新 session + if default_cookies: + self.session.cookies.update(default_cookies) + + # 根据 base_url 生成 cookies 文件名,将 '.' 替换为 '_' + self.cookie_file = f"{self.base_url.replace('.', '_')}_cookies.json" + # 尝试加载本地已保存的 cookies 文件 + try: + with open(self.cookie_file, 'r', encoding='utf-8') as f: + loaded_cookies = json.load(f) + self.session.cookies.update(loaded_cookies) + logging.info("成功加载本地 cookies") + except FileNotFoundError: + logging.info("本地 cookies 文件不存在,将在请求后自动保存") + except Exception as e: + logging.error("加载本地 cookies 失败:" + str(e)) + + def _save_cookies(self): + """ + 将当前 session 中的 cookies 保存到本地文件(基于 base_url 的文件名),以 JSON 格式存储。 + """ + try: + with open(self.cookie_file, 'w', encoding='utf-8') as f: + json.dump(self.session.cookies.get_dict(), f, ensure_ascii=False, indent=4) + logging.info("cookies 已保存到本地文件:" + self.cookie_file) + except Exception as e: + logging.error("保存 cookies 文件失败:" + str(e)) + + def _build_url(self, url): + if url.startswith("http://") or url.startswith("https://"): + return url + return f"{self.protocol}://{self.base_url}/{url.lstrip('/')}" + + def set_default_headers(self, headers): + self.session.headers.update(headers) + + def set_default_cookies(self, cookies): + self.session.cookies.update(cookies) + self._save_cookies() + + def get(self, url, params=None, headers=None, cookies=None, **kwargs): + full_url = self._build_url(url) + return self._request("GET", full_url, params=params, headers=headers, cookies=cookies, **kwargs) + + def post(self, url, data=None, json=None, headers=None, cookies=None, **kwargs): + full_url = self._build_url(url) + return self._request("POST", full_url, data=data, json=json, headers=headers, cookies=cookies, **kwargs) + + def update(self, url, data=None, json=None, headers=None, cookies=None, **kwargs): + full_url = self._build_url(url) + return self._request("PUT", full_url, data=data, json=json, headers=headers, cookies=cookies, **kwargs) + + def delete(self, url, params=None, headers=None, cookies=None, **kwargs): + full_url = self._build_url(url) + return self._request("DELETE", full_url, params=params, headers=headers, cookies=cookies, **kwargs) + + def _request(self, method, url, retries=None, autosave=False, **kwargs): + if retries is None: + retries = self.retries + if 'timeout' not in kwargs: + kwargs['timeout'] = self.default_timeout + + try: + response = self.session.request(method, url, **kwargs) + response.raise_for_status() + self.session.cookies.update(response.cookies) + + if 'Set-Cookie' in response.headers: + from http.cookies import SimpleCookie + sc = SimpleCookie() + sc.load(response.headers['Set-Cookie']) + for key, morsel in sc.items(): + if morsel.value.lower() != 'deleted': + self.session.cookies.set(key, morsel.value) + + if autosave: + self._save_cookies() + + response.__class__ = ExtendedResponse + return response + + except Exception as e: + if retries > 0: + logging.warning(f"请求 {method} {url} 失败,剩余重试次数 {retries},错误: {e}") + time.sleep(2 ** (self.retries - retries)) + return self._request(method, url, retries=retries - 1, autosave=autosave, **kwargs) + else: + logging.error(f"请求 {method} {url} 重试次数用尽") + raise e + + def get_cookies(self): + try: + return self.session.cookies.get_dict() + except Exception as e: + raise ValueError("获取 cookies 失败:" + str(e)) + + +class MR(MyRequests): + pass diff --git a/web/qj050_com/main.py b/web/qj050_com/main.py new file mode 100644 index 0000000..cdbefed --- /dev/null +++ b/web/qj050_com/main.py @@ -0,0 +1,130 @@ +import datetime + +from Requests_Except import * +import pandas as pd + +base_url = 'www.qj050.com' +protocol = 'https' +headers = { + 'accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7', + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8', + 'cache-control': 'no-cache', + 'content-type': 'application/x-www-form-urlencoded', + 'origin': 'https://www.qj050.com', + 'pragma': 'no-cache', + 'priority': 'u=0, i', + 'referer': 'https://www.qj050.com/account/quick?login_type=1&ref=/?from=h5', + 'sec-ch-ua': '"Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-platform': '"Windows"', + 'sec-fetch-dest': 'iframe', + 'sec-fetch-mode': 'navigate', + 'sec-fetch-site': 'same-origin', + 'sec-fetch-user': '?1', + 'upgrade-insecure-requests': '1', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', +} +Requests = MR(base_url, protocol, headers) +_keyword = "" +pd_data = { + 'resume_id': [], + '姓名': [], + '年龄': [], + '生日': [], + '工作经验': [], + '最高学历': [], + '婚姻状态': [], + '电话': [], + '意向岗位': [], + '期望薪资': [], + '工作性质': [], + '求职状态': [], + '工作地点': [], + '工作经历1': [], + '工作经历2': [], + '工作经历3': [], + '工作经历4': [], +} + + +def login(): + url = '/account/login' + params = { + 'ref': '/?from=h5', + } + data = { + '_type': '1', + '_from': 'quick', + 'account': '真贤8888', + 'password': 'zhenxian8888', + } + response = Requests.post(url, params=params, data=data, autosave=True) + response.cookies_dict() + + +def get_page_for_keyword(keyword): + global _keyword + _keyword = keyword + url = '/api/v1/resumes' + params = { + '_': str(int(time.time() * 1000 - 10000)), + 'tab': 'resume', + 'keyword': keyword, + 't': str(int(time.time() * 1000)), + 'pageSize': '100', + 'pageIndex': '1', + 'showStatus': 'true', + } + response = Requests.get(url, params=params) + return response.to_Dict() + + +def get_resumes_info(resumes_id): + url = '/api/v1/resume/{}'.format(resumes_id) + params = { + '_': str(int(time.time() * 1000)), + 'view_type': 'resumeLibrary', + 'privacy_description': '1', + } + response = Requests.get(url, params=params) + info = response.to_Dict().data + data = { + 'resume_id': resumes_id, + '姓名': info.name, + '年龄': info.age, + '生日': info.birthday, + '工作经验': info.work_exp_value, + '最高学历': info.edu_value, + '婚姻状态': info.marriage_value, + '电话': info.phone, + '意向岗位': ','.join([item.name for item in info.infoCateforyArrObj]), + '期望薪资': info.salaryDesc, + '工作性质': info.work_type_value, + '求职状态': info.job_instant_value, + '工作地点': info.job_region_value, + } + for i in range(4): # 0, 1, 2, 3 + if i < len(info.works): + work = info.works[i] + data[f'工作经历{i + 1}'] = f"{work.company}:{work.content}" + else: + data[f'工作经历{i + 1}'] = '' + + return data + + +def integration(keyword): + global _keyword + _keyword = keyword + page = get_page_for_keyword(_keyword) + for item in page.data.items: + resumes_info = get_resumes_info(item.id) + for key, value in resumes_info.items(): + pd_data[key].append(value) + + df = pd.DataFrame(pd_data) + df.to_excel(f'{datetime.datetime.now().strftime("%Y%m%d_%H%M%S")}_{_keyword}.xlsx', index=False) + +if __name__ == '__main__': + integration("财务") + # get_resumes_info('36859') diff --git a/web/qj050_com/www_qj050_com_cookies.json b/web/qj050_com/www_qj050_com_cookies.json new file mode 100644 index 0000000..4b6f7c6 --- /dev/null +++ b/web/qj050_com/www_qj050_com_cookies.json @@ -0,0 +1,6 @@ +{ + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6NDgxNTMsInVzZXJuYW1lIjoi55yf6LSkODg4OCIsInB3ZCI6IjFiYmJjNzc5OGRkMTFiNTI2YWQ4ZTVmYTYyNWY5MjVkIiwiaWF0IjoxNzQ1NzMxNjEzLCJleHAiOjE3NzcyNjc2MTN9.2NS8XbpDB8kv4zJiwDUqz5259WQ8tLLfqIGy_xmiAnI", + "token.sig": "5VDLks18QUImA1K0NklDMuC28TBBTM44s646GwPrY-A", + "has_login_log": "yes", + "x-trace-id": "5c4888e20dc24d739a4490feccf0c291" +} \ No newline at end of file diff --git a/web/tsrcw/idlist.json b/web/tsrcw/idlist.json new file mode 100644 index 0000000..9d519a9 --- /dev/null +++ b/web/tsrcw/idlist.json @@ -0,0 +1,852 @@ +[ + { + "id": "3560", + "name": "计算机类", + "child": [ + { + "cid": "3561", + "cname": "系统分析员" + }, + { + "cid": "3562", + "cname": "软件开发与测试" + }, + { + "cid": "3563", + "cname": "系统维护/网络管理" + }, + { + "cid": "3564", + "cname": "网络工程" + }, + { + "cid": "3565", + "cname": "网站信息管理/内容编辑" + }, + { + "cid": "3566", + "cname": "网站策划" + }, + { + "cid": "3567", + "cname": "网页设计制作/网页美工" + }, + { + "cid": "3568", + "cname": "多媒体设计与开发" + }, + { + "cid": "3569", + "cname": "计算机辅助设计与绘图" + }, + { + "cid": "3570", + "cname": "数据库开发与管理" + }, + { + "cid": "3571", + "cname": "系统集成/技术支持" + }, + { + "cid": "3572", + "cname": "系统安全管理" + }, + { + "cid": "3573", + "cname": "计算机类" + }, + { + "cid": "3574", + "cname": "信息安全工程师" + }, + { + "cid": "3575", + "cname": "ERP技术/开发应用工程师" + }, + { + "cid": "3576", + "cname": "系统管理员/网络管理员" + }, + { + "cid": "3577", + "cname": "硬件测试工程师" + }, + { + "cid": "3578", + "cname": "信息系统分析员" + }, + { + "cid": "3579", + "cname": "工程师/软件测试工程师" + }, + { + "cid": "3580", + "cname": "硬件工程师" + }, + { + "cid": "3581", + "cname": "数据库工程师/管理员" + }, + { + "cid": "3582", + "cname": "系统集成工程师" + }, + { + "cid": "3583", + "cname": "系统架构师" + }, + { + "cid": "3584", + "cname": "ERP实施顾问" + }, + { + "cid": "3585", + "cname": "软件UI设计师/工程师" + }, + { + "cid": "3586", + "cname": "研发工程师 需求工程师" + }, + { + "cid": "3587", + "cname": "网站运营管理/运营专员" + }, + { + "cid": "3588", + "cname": "游戏设计/开发" + }, + { + "cid": "3589", + "cname": "游戏策划" + }, + { + "cid": "3590", + "cname": "游戏界面设计师" + }, + { + "cid": "3591", + "cname": "特效设计师" + }, + { + "cid": "3592", + "cname": "视觉设计师" + }, + { + "cid": "3593", + "cname": "语音/视频/图形开发工程师" + }, + { + "cid": "3594", + "cname": "Flash设计/开发" + }, + { + "cid": "3595", + "cname": "UI/UE设计师/顾问" + }, + { + "cid": "3596", + "cname": "三维/3D设计/制作" + }, + { + "cid": "3597", + "cname": "网络优化师/SEO" + } + ] + }, + { + "id": "3726", + "name": "财务类", + "child": [ + { + "cid": "3727", + "cname": "财务总监/经理/主任" + }, + { + "cid": "3728", + "cname": "财务" + }, + { + "cid": "3729", + "cname": "出纳/收银" + }, + { + "cid": "3730", + "cname": "统计" + }, + { + "cid": "3731", + "cname": "审计" + }, + { + "cid": "3732", + "cname": "税务师/税务专员" + }, + { + "cid": "3733", + "cname": "财务总监" + }, + { + "cid": "3734", + "cname": "融资经理" + }, + { + "cid": "3735", + "cname": "会计师/会计" + }, + { + "cid": "3736", + "cname": "总帐主管" + }, + { + "cid": "3737", + "cname": "财务分析经理/主管" + }, + { + "cid": "3738", + "cname": "财务顾问" + }, + { + "cid": "3739", + "cname": "成本会计" + }, + { + "cid": "3740", + "cname": "会计文员" + }, + { + "cid": "3741", + "cname": "资金专员" + }, + { + "cid": "3742", + "cname": "财务类" + } + ] + }, + { + "id": "3743", + "name": "工业/工厂类", + "child": [ + { + "cid": "3744", + "cname": "工业/工厂类" + }, + { + "cid": "3745", + "cname": "生产管理" + }, + { + "cid": "3746", + "cname": "工程管理" + }, + { + "cid": "3747", + "cname": "品质管理" + }, + { + "cid": "3748", + "cname": "物料管理" + }, + { + "cid": "3749", + "cname": "设备管理" + }, + { + "cid": "3750", + "cname": "仓库管理" + }, + { + "cid": "3751", + "cname": "计划员/调度" + }, + { + "cid": "3752", + "cname": "化验员" + }, + { + "cid": "3753", + "cname": "跟单员" + }, + { + "cid": "3754", + "cname": "生产经理/车间主任" + }, + { + "cid": "3755", + "cname": "工程师/副总工程师" + }, + { + "cid": "3756", + "cname": "质量管理/测试经理(QA/QC经理)" + }, + { + "cid": "3757", + "cname": "物料管理/物控" + }, + { + "cid": "3758", + "cname": "设备管理工程师" + }, + { + "cid": "3759", + "cname": "调度/生产计划协调员" + }, + { + "cid": "3760", + "cname": "工厂跟单员" + }, + { + "cid": "3761", + "cname": "采购专员" + }, + { + "cid": "3762", + "cname": "质量检验员/测试员" + }, + { + "cid": "3763", + "cname": "认证体系工程师/审核员" + }, + { + "cid": "3764", + "cname": "采购经理/主管" + }, + { + "cid": "3765", + "cname": "质量管理/测试主管(QA/QC主管)" + }, + { + "cid": "3766", + "cname": "质量管理/测试工程师(QA/QC工程师)" + }, + { + "cid": "3767", + "cname": "仓库经理/主管" + }, + { + "cid": "3768", + "cname": "生产助理" + }, + { + "cid": "3769", + "cname": "安全工程师" + }, + { + "cid": "3770", + "cname": "包装工程师" + }, + { + "cid": "3771", + "cname": "产品开发/技术/工艺" + }, + { + "cid": "3772", + "cname": "环境/健康/安全工程师(EHS)" + } + ] + }, + { + "id": "3793", + "name": "机械/设备维修类", + "child": [ + { + "cid": "3794", + "cname": "铸造/锻造工程师" + }, + { + "cid": "3795", + "cname": "机械工程师" + }, + { + "cid": "3796", + "cname": "注塑工程师" + }, + { + "cid": "3797", + "cname": "机械/设备维修类" + }, + { + "cid": "3798", + "cname": "塑性加工/铸造/焊接/切割" + }, + { + "cid": "3799", + "cname": "精密机械/精密仪器/仪器仪表" + }, + { + "cid": "3800", + "cname": "机械设计/制造/制图" + }, + { + "cid": "3801", + "cname": "机电一体化工程师" + }, + { + "cid": "3802", + "cname": "机床工程师" + }, + { + "cid": "3803", + "cname": "液压传动工程师" + }, + { + "cid": "3804", + "cname": "机械自动化/工业自动化" + }, + { + "cid": "3805", + "cname": "船舶工程师" + }, + { + "cid": "3806", + "cname": "压力容器/锅炉工程师" + }, + { + "cid": "3807", + "cname": "工程/设备工程师" + }, + { + "cid": "3808", + "cname": "金属制品" + }, + { + "cid": "3809", + "cname": "模具工程师" + }, + { + "cid": "3810", + "cname": "传感器工程师/光电" + }, + { + "cid": "3811", + "cname": "检测技术及仪器/计量测试工程师" + }, + { + "cid": "3812", + "cname": "机械设备与汽车、摩托维修工程师" + }, + { + "cid": "3813", + "cname": "焊接工程师" + } + ] + }, + { + "id": "3870", + "name": "设计/广告类", + "child": [ + { + "cid": "3871", + "cname": "设计/广告类" + }, + { + "cid": "3872", + "cname": "广告设计/策划" + }, + { + "cid": "3873", + "cname": "广告制作/平面设计与制作" + }, + { + "cid": "3874", + "cname": "美术/图形设计" + }, + { + "cid": "3875", + "cname": "工业设计/产品设计师" + }, + { + "cid": "3876", + "cname": "服装设计" + }, + { + "cid": "3877", + "cname": "家具设计师" + }, + { + "cid": "3878", + "cname": "珠宝设计师" + }, + { + "cid": "3879", + "cname": "玩具设计师" + }, + { + "cid": "3880", + "cname": "电脑绘图员" + }, + { + "cid": "3881", + "cname": "产品包装设计师" + }, + { + "cid": "3882", + "cname": "形象设计师" + }, + { + "cid": "3883", + "cname": "策划总监/总经理" + }, + { + "cid": "3884", + "cname": "陈列/橱窗设计" + }, + { + "cid": "3885", + "cname": "展览设计" + }, + { + "cid": "3886", + "cname": "工业品设计师" + }, + { + "cid": "3887", + "cname": "动画/3D设计" + }, + { + "cid": "3888", + "cname": "平面设计师" + }, + { + "cid": "3889", + "cname": "排版设计员" + }, + { + "cid": "3890", + "cname": "电话采编" + }, + { + "cid": "3891", + "cname": "广告创意总监" + }, + { + "cid": "3892", + "cname": "媒介策划/管理" + }, + { + "cid": "3893", + "cname": "活动策划" + }, + { + "cid": "3894", + "cname": "活动执行" + }, + { + "cid": "3895", + "cname": "舞美设计" + }, + { + "cid": "3896", + "cname": "后期制作/音效师" + } + ] + }, + { + "id": "3897", + "name": "行政/人事类", + "child": [ + { + "cid": "3898", + "cname": "行政/人事类" + }, + { + "cid": "3899", + "cname": "人力资源经理" + }, + { + "cid": "3900", + "cname": "行政经理/主任/主管" + }, + { + "cid": "3901", + "cname": "招聘经理/主管" + }, + { + "cid": "3902", + "cname": "培训经理/主管" + }, + { + "cid": "3903", + "cname": "薪酬福利经理/主管" + }, + { + "cid": "3904", + "cname": "绩效考核经理/主管" + }, + { + "cid": "3905", + "cname": "人力资源总监" + }, + { + "cid": "3906", + "cname": "行政总监" + }, + { + "cid": "3907", + "cname": "人事专员" + }, + { + "cid": "3908", + "cname": "行政专员/助理" + }, + { + "cid": "3909", + "cname": "前台接待/总机/接待生" + }, + { + "cid": "3910", + "cname": "高级秘书" + }, + { + "cid": "3911", + "cname": "ISO专员" + }, + { + "cid": "3912", + "cname": "文案策划/资料编写" + }, + { + "cid": "3913", + "cname": "人力资源主管" + }, + { + "cid": "3914", + "cname": "招聘专员/助理" + }, + { + "cid": "3915", + "cname": "猎头顾问/助理" + }, + { + "cid": "3916", + "cname": "人力资源信息系统专员" + }, + { + "cid": "3917", + "cname": "后勤人员" + }, + { + "cid": "3918", + "cname": "合同管理" + } + ] + }, + { + "id": "3919", + "name": "房地产/建筑/物业管理", + "child": [ + { + "cid": "3920", + "cname": "房地产/建筑/物业管理" + }, + { + "cid": "3921", + "cname": "结构土木/土建工程师" + }, + { + "cid": "3922", + "cname": "水电管理" + }, + { + "cid": "3923", + "cname": "工程预决算/造价师" + }, + { + "cid": "3924", + "cname": "房地产开发/策划经理/主管" + }, + { + "cid": "3925", + "cname": "给排水工程师" + }, + { + "cid": "3926", + "cname": "暖通工程师" + }, + { + "cid": "3927", + "cname": "物业管理经理/主管" + }, + { + "cid": "3928", + "cname": "路桥工程师" + }, + { + "cid": "3929", + "cname": "房地产中介/交易" + }, + { + "cid": "3930", + "cname": "室内外装潢设计" + }, + { + "cid": "3931", + "cname": "绘图/建筑制图员" + }, + { + "cid": "3932", + "cname": "工程监理" + }, + { + "cid": "3933", + "cname": "物业顾问" + }, + { + "cid": "3934", + "cname": "管道" + }, + { + "cid": "3935", + "cname": "建筑施工管理" + }, + { + "cid": "3936", + "cname": "基础地下工程/岩土工程" + }, + { + "cid": "3937", + "cname": "港口与航道工程" + }, + { + "cid": "3938", + "cname": "城镇规划/土地规划" + }, + { + "cid": "3939", + "cname": "物业管理专员/助理" + }, + { + "cid": "3940", + "cname": "物业维修人员" + }, + { + "cid": "3941", + "cname": "物业设施管理人员" + }, + { + "cid": "3942", + "cname": "房产项目配套工程师" + }, + { + "cid": "3943", + "cname": "房地产销售人员" + }, + { + "cid": "3944", + "cname": "房地产评估" + }, + { + "cid": "3945", + "cname": "施工人员" + }, + { + "cid": "3946", + "cname": "规划设计师" + }, + { + "cid": "3947", + "cname": "测绘员/测量员" + }, + { + "cid": "3948", + "cname": "资料员" + }, + { + "cid": "3949", + "cname": "安全主任" + }, + { + "cid": "3950", + "cname": "铁路工程" + }, + { + "cid": "3951", + "cname": "智能大厦/布线/弱电/安防" + }, + { + "cid": "3952", + "cname": "房地产项目/开发/策划经理" + }, + { + "cid": "3953", + "cname": "高级物业顾问" + } + ] + }, + { + "id": "3983", + "name": "交通运输(海陆空)类", + "child": [ + { + "cid": "3984", + "cname": "交通运输(海陆空)类" + }, + { + "cid": "3985", + "cname": "调度员" + }, + { + "cid": "3986", + "cname": "船员" + }, + { + "cid": "3987", + "cname": "乘务员" + }, + { + "cid": "3988", + "cname": "司机" + }, + { + "cid": "3989", + "cname": "航空/列车/船舶操作维修" + }, + { + "cid": "3990", + "cname": "公交/地铁" + }, + { + "cid": "3991", + "cname": "空乘人员" + }, + { + "cid": "3992", + "cname": "船务/空运陆运操作" + } + ] + }, + { + "id": "4088", + "name": "地矿冶金类", + "child": [ + { + "cid": "4089", + "cname": "地矿冶金类" + }, + { + "cid": "4090", + "cname": "采矿工程师" + }, + { + "cid": "4091", + "cname": "选矿工程师" + }, + { + "cid": "4092", + "cname": "矿物加工工程师" + }, + { + "cid": "4093", + "cname": "矿山管理/采矿管理" + }, + { + "cid": "4094", + "cname": "矿山/采矿安全管理" + }, + { + "cid": "4095", + "cname": "爆破技术" + } + ] + } +] \ No newline at end of file diff --git a/web/tsrcw/index.html b/web/tsrcw/index.html new file mode 100644 index 0000000..6da618b --- /dev/null +++ b/web/tsrcw/index.html @@ -0,0 +1,2011 @@ + + + + + + + + + + + 唐山人才网 + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + +
+ +
+
+
+
+
+ 职位分类 +
+ + +
+
+ 行业分类 +
+
+ + +
+
+
+ +
+
+ 职位/公司 + 文章 +
+
+
+ + +
+
+
+

扫码进公众号

+

扫码下载app

+
+
+ +
+
+
+
+ +

+ + 热门搜索: + + + + +

+
+
+
+ +
+
+ + + + +
+
+
+
+
+
+

个人登录

+

企业登录

+
+
+ + +
+ + +
+ + + + +

+ + +

+

+ 忘记密码 + | 找回账户 + 免费注册 + +

+ +
+ + +
    +
+ + +
+ + +
+ + + +
+
+
+
+
+
    +
  • 招聘速递
  • +
  • 公告通知
  • +
+
+
    + +
      +
      +

      更多

      +
      + + + + + + + + +
      +
      + + +
      + + + +
      +
      +
      +

      +
      +
      +

      + + 活动专区 + +

      +
      + +

      +
      +
      +
      +
      +

      +
      +
      +

      + + 品牌招聘 + +

      +
      + +

      + +
      + + + + + +
      +
      +
      + +

      +

      + + 推荐招聘 + +

      +

      +
        +
      +
      + + +
      +
      +
      + +

      + + +

      + + 最新招聘 + +

      +
      + 查看更多 +

      + +
      +
      + + +
      +
      + + + + + +
      + + +
      +
        +
      • 人事信息
      • +
      • 人才工程
      • +
      • 招考信息
      • +
      +
      +
        +
      • 1
      • +
      +
      +

      更多

      +
      +
      +
      + +
      +
        +
      • 求职指导
      • +
      • 政策法规
      • +
      • 相关下载
      • +
      +
      + +
        +
      +
      +

      更多

      +
      +
      +
      + + +
      + + + + + + + + + +
      +
      • 唐山人才发展集团主办的专业人才网站
      • +
      + +
        +
      • 未经本网站同意,
      • +
      • 不得转载本网站之所有招聘信息及作品
      • +
      +
        +
      • 举报邮箱:358589625@qq.com
      • +
      +
        +
        • 招聘求职服务0315-5370018、2803756      研究生引进0315-2806041     专家智力服务0315-2803049    凤凰英才卡、青年人才奖补申领 0315-2801001  2801709     人事代理(档案保管) 0315-2806012/36    流动党员管理0315-2806008    人才培训 0315-2806018    现场人才交流会0315-2806039     驻京工作处 0315-2806028、010-84896681
        • +
        + +
        + +
        +

        +

        在线客服

        +

        + +
        +
        + +
        +
        + +
        + + + + + + + + + + + +
        + + + + + + + + + + diff --git a/web/tsrcw/job_info.json b/web/tsrcw/job_info.json new file mode 100644 index 0000000..37a9a68 --- /dev/null +++ b/web/tsrcw/job_info.json @@ -0,0 +1,16479 @@ +[ + { + "id": "3560", + "name": "计算机类", + "child": [ + { + "cid": "3561", + "cname": "系统分析员", + "position_list": [] + }, + { + "cid": "3562", + "cname": "软件开发与测试", + "position_list": [ + { + "position_name": " 软件开发岗(劳务派遣)", + "position_url": "/companyhome/post.aspx?comp=em1rZ3RzeQ%3d%3d&id=581999", + "company_name": "中煤科工集团唐山研究院有限公司", + "company_url": "/companyhome/company.aspx?comp=em1rZ3RzeQ%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "18--40岁", + "学历要求:": "本科", + "工作地区:": "路北区路北区", + "工作经验:": "不限", + "职位类别:": "软件开发与测试", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/6/4", + "有效期限:": "2025/5/25", + "福利": [ + "每周有两天休息时间", + "企业给缴纳住房公积金", + "有带薪年休假", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "企业给缴纳保险" + ], + "要求": [ + "1.仪表产品或智能系统开发、科研攻关、技术资料制定;", + "2.为公司提供仪表产品或智能系统技术支持;", + "3.211或985本科以上学历;2年以上工作经验。", + "4.具备HTML、c#、数据库或C语言、Verilog?HDL语言等嵌入式编程知识。" + ], + "联系": { + "联系人": "夏金强", + "联系方式": "0315-5818831", + "Email": "cctegts@163.com", + "公司地址": "唐山市路北区新华西道21号" + } + } + }, + { + "position_name": " 软件工程师", + "position_url": "/companyhome/post.aspx?comp=RFJaREg%3d&id=215236", + "company_name": "唐山东润自动化工程股份有限公司", + "company_url": "/companyhome/company.aspx?comp=RFJaREg%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "22--55岁", + "学历要求:": "本科", + "工作地区:": "高新开发区高新开发区", + "工作经验:": "1-2年", + "职位类别:": "软件开发与测试", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/5/17", + "有效期限:": "2025/5/19", + "福利": [], + "要求": [ + "岗位职责:", + "1.负责公司嵌入式系统软件的设计和开发;", + "2.配合项目负责人完成智能自动化设备的开发工作。", + "任职要求:", + "1.熟悉C/C++语言,计算机科学功底、模拟/数字电子电路基础扎实;", + "2.熟悉嵌入式系统开发及相关的8/16/32位MCU单片机,熟练使用电路板制图工具;", + "3.具备一定的编程能力、解决问题能力,思维敏捷,创新能力强;", + "4.本科及以上学历" + ], + "联系": { + "联系人": "马龙印", + "联系方式": "18532655319", + "Email": "longyin1001@163.com", + "公司地址": "河北省唐山市高新区李官屯村东" + } + } + } + ] + }, + { + "cid": "3563", + "cname": "系统维护/网络管理", + "position_list": [ + { + "position_name": " 网宣", + "position_url": "/companyhome/post.aspx?comp=amhsdzEwMDI%3d&id=194485", + "company_name": "唐山市建华自动控制设备厂", + "company_url": "/companyhome/company.aspx?comp=amhsdzEwMDI%3d", + "job_info": { + "招聘专业:": "计算机类", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "25--40岁", + "学历要求:": "本科", + "工作地区:": "河北省河北", + "工作经验:": "2-3年", + "职位类别:": "系统维护/网络管理", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2025/7/25", + "福利": [], + "要求": [ + "负责网站维护及网络宣传,要求有网络推广工作经验" + ], + "联系": { + "联系人": "高女士", + "联系方式": "13292433965", + "Email": "jhlw1002@163.com", + "公司地址": "唐山市五家庄大街13号" + } + } + }, + { + "position_name": " 驻厂维保", + "position_url": "/companyhome/post.aspx?comp=aHVheWFu&id=8506", + "company_name": "唐山市华岩网络工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aHVheWFu", + "job_info": { + "招聘专业:": "电子技术", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "18--60岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "系统维护/网络管理", + "外语要求:": "英语", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2024/12/17", + "有效期限:": "2025/6/17", + "福利": [], + "要求": [ + "有计算机维护与操作经验、有网络通讯经验、吃苦耐劳积极肯干、服从安排有强的执行力。" + ], + "联系": { + "联系人": "王营杰", + "联系方式": "13831595169", + "Email": "tshuayan@263.net", + "公司地址": "唐山市华岩北路7号" + } + } + }, + { + "position_name": " 网络维修", + "position_url": "/companyhome/post.aspx?comp=eHV5dWppbmt1bi04ODg%3d&id=165161", + "company_name": "河北旭宇金坤药业有限公司", + "company_url": "/companyhome/company.aspx?comp=eHV5dWppbmt1bi04ODg%3d", + "job_info": { + "招聘专业:": "计算机类", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "2001--3500", + "要求性别:": "男", + "年龄要求:": "25--40岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "系统维护/网络管理", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2024/11/26", + "有效期限:": "2025/10/22", + "福利": [ + "每周有两天休息时间", + "提供免费工作餐或餐补", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "计算机或IT相关专业大专以上学历,三年以上网络管理、网络维修,服务器网管经验,熟悉路由器、交换机、防火墙的网络设备与管理。学习能力强,较好的沟通、协调能力及极强的执行力,具备良好的服务意识。有消防设施操作证、锅炉操作证等优先录用。", + "公司福利待遇:", + "公司福利体系健全,晋升空间广阔;试用期1-3个月,工作时间:8:00-17:00,午休1小时;公司为员工缴纳五险、双休、法定假日、带薪培训、免费住宿、免费工作餐、节日礼品、员工聚餐等。" + ], + "联系": { + "联系人": "马女士", + "联系方式": "0315-3101978", + "Email": "xuyujinkun@163.com", + "公司地址": "工业园区电瓷路15号" + } + } + } + ] + }, + { + "cid": "3564", + "cname": "网络工程", + "position_list": [ + { + "position_name": " 监控系统工程师", + "position_url": "/companyhome/post.aspx?comp=Ymprag%3d%3d&id=168864", + "company_name": "河北博嘉科技有限公司", + "company_url": "/companyhome/company.aspx?comp=Ymprag%3d%3d", + "job_info": { + "招聘专业:": "电气自动化", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "男", + "年龄要求:": "18--60岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "2-3年", + "职位类别:": "网络工程", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2024/6/20", + "有效期限:": "2025/6/5", + "福利": [], + "要求": [ + "岗位职责:", + "负责大、小项目的施工组织、管理、协调方面的工作。", + "任职要求:", + "1.  具有三年以上的行业工作经验。", + "2.具有项目管理经验,熟悉门禁、监控、对讲、报警、网络、计算机和办公设备等弱电基础技术知识。", + "3.熟悉弱电系统的施工规范、验收标准。", + "4.具有良好的职业素养和水准。  思维敏捷、有较强的语言表达和沟通能力,有很强的项目现场协调能力。", + "5.工作积极主动,好学上进,良好的团队合作意识。吃苦耐劳,工作踏实。", + "6.能适应五区十县短期出差。", + "三、福利待遇:", + "1.周休1天,法定假日全休    。", + "2.试用期1个月,3个月后上五险,基本工资+补助+话补(实报实销)  ,年底奖金,团队旅游。", + "3.根据个人能力工资有上调空间。", + "4.可提供住宿。" + ], + "联系": { + "联系人": "倪女士", + "联系方式": "15931510117", + "Email": "HYC966@163.com", + "公司地址": "高新技术产业园区火炬路60号" + } + } + } + ] + }, + { + "cid": "3565", + "cname": "网站信息管理/内容编辑", + "position_list": [] + }, + { + "cid": "3566", + "cname": "网站策划", + "position_list": [] + }, + { + "cid": "3567", + "cname": "网页设计制作/网页美工", + "position_list": [] + }, + { + "cid": "3568", + "cname": "多媒体设计与开发", + "position_list": [] + }, + { + "cid": "3569", + "cname": "计算机辅助设计与绘图", + "position_list": [] + }, + { + "cid": "3570", + "cname": "数据库开发与管理", + "position_list": [] + }, + { + "cid": "3571", + "cname": "系统集成/技术支持", + "position_list": [ + { + "position_name": " 网络及软硬件维护人员", + "position_url": "/companyhome/post.aspx?comp=emhhbmdodWF3ZWk%3d&id=20968", + "company_name": "唐山市鑫炜驰科技有限公司", + "company_url": "/companyhome/company.aspx?comp=emhhbmdodWF3ZWk%3d", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "4人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "男", + "年龄要求:": "20--35岁", + "学历要求:": "", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "系统集成/技术支持", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/17", + "有效期限:": "2025/9/9", + "福利": [], + "要求": [ + "有计算机软硬件维护能力、勤奋、诚实敬业、表达能力清楚,有上门服务经验;有实践经验的应往届毕业生均可,有相关认证的优先录用;有出差工作能力。试用期后缴纳五险一金。" + ], + "联系": { + "联系人": "刘女士", + "联系方式": "15931548778", + "Email": "xinweichi@163.com", + "公司地址": "建设南路77号" + } + } + }, + { + "position_name": " 技术", + "position_url": "/companyhome/post.aspx?comp=dHNqbGR6MDg%3d&id=51395", + "company_name": "唐山市巨龙电子中心", + "company_url": "/companyhome/company.aspx?comp=dHNqbGR6MDg%3d", + "job_info": { + "招聘专业:": "计算机类", + "招聘人数:": "3人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "男", + "年龄要求:": "20--45岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "系统集成/技术支持", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/17", + "有效期限:": "2025/5/13", + "福利": [], + "要求": [ + "1、计算机专业、计算机科学与技术、软件工程、电子信息工程等相关专业优先考虑。", + "2、精通编程语言:C、C++、汇编等优先考虑。", + "3、智能机器人教学等相关经验优先考虑。", + "4、有驾照会开车优先考虑。", + "5、福利待遇:每周双休,五险一金,法定节假日休。" + ], + "联系": { + "联系人": "李女士", + "联系方式": "3205824", + "Email": "tsjldz@126.com", + "公司地址": "唐山市路北区龙泉北里新景楼底商" + } + } + }, + { + "position_name": " 网络运维技术", + "position_url": "/companyhome/post.aspx?comp=eXV5YW5na2VqaQ%3d%3d&id=585108", + "company_name": "唐山玉洋科技服务有限公司", + "company_url": "/companyhome/company.aspx?comp=eXV5YW5na2VqaQ%3d%3d" + } + ] + }, + { + "cid": "3572", + "cname": "系统安全管理", + "position_list": [] + }, + { + "cid": "3573", + "cname": "计算机类" + }, + { + "cid": "3574", + "cname": "信息安全工程师", + "position_list": [] + }, + { + "cid": "3575", + "cname": "ERP技术/开发应用工程师", + "position_list": [] + }, + { + "cid": "3576", + "cname": "系统管理员/网络管理员", + "position_list": [] + }, + { + "cid": "3577", + "cname": "硬件测试工程师", + "position_list": [] + }, + { + "cid": "3578", + "cname": "信息系统分析员", + "position_list": [] + }, + { + "cid": "3579", + "cname": "工程师/软件测试工程师", + "position_list": [] + }, + { + "cid": "3580", + "cname": "硬件工程师", + "position_list": [] + }, + { + "cid": "3581", + "cname": "数据库工程师/管理员", + "position_list": [ + { + "position_name": " 数采工程师", + "position_url": "/companyhome/post.aspx?comp=YmdndDcyMDUwODk%3d&id=585027", + "company_name": "秦皇岛佰工钢铁有限公司", + "company_url": "/companyhome/company.aspx?comp=YmdndDcyMDUwODk%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "不限", + "年龄要求:": "18--45岁", + "学历要求:": "本科", + "工作地区:": "河北省秦皇岛", + "工作经验:": "1-2年", + "职位类别:": "数据库工程师/管理员", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/2/7", + "有效期限:": "2026/2/6", + "福利": [ + "薪资高于同行业平均水平", + "提供免费工作餐或餐补", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "计算机、电子、自动化、机械工程等相关专业;熟悉常见的数据采集技术与设备,了解传感器、仪器设备等硬件设施的工作原理;熟悉常见的数据采集技术与设备,了解传感器、仪器设备等硬件设施的工作原理;掌握常用的编程语言,如  Python、C/C++、Java  等,能够独立编写数据采集脚本与程序;?有一定的数据清洗、处理与分析能力,能够对采集的数据进行质量检测与优化;熟悉常见的数据传输协议(如  MQTT、Modbus、HTTP  等)及数据格式(如  JSON、XML  等)。" + ], + "联系": { + "联系人": "任婷玉", + "联系方式": "17732900432", + "Email": "bggt7205089", + "公司地址": "秦皇岛市卢龙县石门镇" + } + } + } + ] + }, + { + "cid": "3582", + "cname": "系统集成工程师", + "position_list": [] + }, + { + "cid": "3583", + "cname": "系统架构师", + "position_list": [] + }, + { + "cid": "3584", + "cname": "ERP实施顾问", + "position_list": [ + { + "position_name": " ERP工程师", + "position_url": "/companyhome/post.aspx?comp=YmdndDcyMDUwODk%3d&id=585028", + "company_name": "秦皇岛佰工钢铁有限公司", + "company_url": "/companyhome/company.aspx?comp=YmdndDcyMDUwODk%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "不限", + "年龄要求:": "18--45岁", + "学历要求:": "本科", + "工作地区:": "河北省秦皇岛", + "工作经验:": "1-2年", + "职位类别:": "ERP实施顾问", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/2/7", + "有效期限:": "2026/2/6", + "福利": [ + "薪资高于同行业平均水平", + "提供免费工作餐或餐补", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "计算机、信息管理等相关专业;至少1年以上信息化项目管理经验,具备信息化系统的需求分析、设计、实施、运维全流程管理经验;熟悉项目管理流程,具备  PMP  认证优先。" + ], + "联系": { + "联系人": "任婷玉", + "联系方式": "17732900432", + "Email": "bggt7205089", + "公司地址": "秦皇岛市卢龙县石门镇" + } + } + } + ] + }, + { + "cid": "3585", + "cname": "软件UI设计师/工程师", + "position_list": [] + }, + { + "cid": "3586", + "cname": "研发工程师 需求工程师", + "position_list": [ + { + "position_name": " 软件工程师", + "position_url": "/companyhome/post.aspx?comp=amhsdzEwMDI%3d&id=575356", + "company_name": "唐山市建华自动控制设备厂", + "company_url": "/companyhome/company.aspx?comp=amhsdzEwMDI%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "25--50岁", + "学历要求:": "本科", + "工作地区:": "路北区路北区", + "工作经验:": "2-3年", + "职位类别:": "研发工程师 需求工程师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2025/7/25", + "福利": [], + "要求": [ + "岗位职责:1.  \t建立产品系统架构,参与产品需求与设计;2.  \t熟悉数据操作及应用;3.\t负责移动端应用程序开发;4.\t负责运维产品平台设计及开发;", + "5.\t解决与硬件之间协调的问题。", + "岗位要求:1.\t具备编程思想;2.\t熟悉计算机体系架构;3.  \t精通一门面向对象编程语言;4.\t精通算法优化;5.\t掌握辅助设计工具:MATLAB、AutoCAD、HyperLynx等;6.\t熟悉研发的开发流程。" + ], + "联系": { + "联系人": "高女士", + "联系方式": "13292433965", + "Email": "jhlw1002@163.com", + "公司地址": "唐山市五家庄大街13号" + } + } + }, + { + "position_name": " 软件开发工程师", + "position_url": "/companyhome/post.aspx?comp=YmdndDcyMDUwODk%3d&id=585029", + "company_name": "秦皇岛佰工钢铁有限公司", + "company_url": "/companyhome/company.aspx?comp=YmdndDcyMDUwODk%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "不限", + "年龄要求:": "18--45岁", + "学历要求:": "本科", + "工作地区:": "河北省秦皇岛", + "工作经验:": "1-2年", + "职位类别:": "研发工程师 需求工程师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/2/7", + "有效期限:": "2026/2/6", + "福利": [ + "薪资高于同行业平均水平", + "提供免费工作餐或餐补", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "计算机科学与技术、软件工程、信息技术、电子工程等相关专业;熟练掌握至少一种编程语言,如Java、C++、Python、JavaScript、C#等。对于特定岗位,可能还要求掌握前端开发语言(如HTML/CSS/JavaScript)、后端开发语言(如Node.js、Ruby、Go等)或移动端开发语言(如Swift、Kotlin等);具备扎实的计算机基础,熟悉常见的数据结构与算法,能够高效解决问题,优化代码性能;熟悉常见的软件开发框架(如Spring、Django、React、Angular、Vue等),掌握版本控制工具(如Git),熟悉集成开发环境(IDE,如IntelliJ  IDEA、Visual  Studio等);熟悉关系型数据库(如MySQL、PostgreSQL、Oracle等)与非关系型数据库(如MongoDB、Redis等),能够进行数据库设计、查询优化、索引管理等;了解云计算平台(如AWS、Azure、Google  Cloud)及分布式系统的设计和实现,掌握常见的微服务架构、容器化技术(如Docker、Kubernetes等)和CI/CD流程。" + ], + "联系": { + "联系人": "任婷玉", + "联系方式": "17732900432", + "Email": "bggt7205089", + "公司地址": "秦皇岛市卢龙县石门镇" + } + } + } + ] + }, + { + "cid": "3587", + "cname": "网站运营管理/运营专员", + "position_list": [] + }, + { + "cid": "3588", + "cname": "游戏设计/开发", + "position_list": [] + }, + { + "cid": "3589", + "cname": "游戏策划", + "position_list": [] + }, + { + "cid": "3590", + "cname": "游戏界面设计师", + "position_list": [] + }, + { + "cid": "3591", + "cname": "特效设计师", + "position_list": [] + }, + { + "cid": "3592", + "cname": "视觉设计师", + "position_list": [] + }, + { + "cid": "3593", + "cname": "语音/视频/图形开发工程师", + "position_list": [] + }, + { + "cid": "3594", + "cname": "Flash设计/开发", + "position_list": [] + }, + { + "cid": "3595", + "cname": "UI/UE设计师/顾问", + "position_list": [] + }, + { + "cid": "3596", + "cname": "三维/3D设计/制作", + "position_list": [] + }, + { + "cid": "3597", + "cname": "网络优化师/SEO", + "position_list": [ + { + "position_name": " 电脑网管员", + "position_url": "/companyhome/post.aspx?comp=dGZ3eg%3d%3d&id=578563", + "company_name": "唐山市金正钢板有限公司", + "company_url": "/companyhome/company.aspx?comp=dGZ3eg%3d%3d", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "18--40岁", + "学历要求:": "大专", + "工作地区:": "丰南区丰南区", + "工作经验:": "1-2年", + "职位类别:": "网络优化师/SEO", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/9/2", + "福利": [], + "要求": [ + "计算机专业,有网络维护经验,,,,,,,,,,," + ], + "联系": { + "联系人": "郑先生", + "联系方式": "13933358470", + "Email": "tsjzwz@163.com", + "公司地址": "丰南区朝阳大街" + } + } + } + ] + } + ] + }, + { + "id": "3726", + "name": "财务类", + "child": [ + { + "cid": "3727", + "cname": "财务总监/经理/主任", + "position_list": [ + { + "position_name": " 财务副部长", + "position_url": "/companyhome/post.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d&id=585799", + "company_name": "唐山天鸿建设集团有限责任公司", + "company_url": "/companyhome/company.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "35--45岁", + "学历要求:": "大专", + "工作地区:": "开平区开平区", + "工作经验:": "5-8年", + "职位类别:": "财务总监/经理/主任", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/14", + "有效期限:": "2025/8/14", + "福利": [], + "要求": [ + "岗位职责:", + "1.负责协助财务部长做好公司全面财务管理与监控工作。", + "2.  参与资产证券化和资金融通项目,提供全面的财务支持。", + "3.  协助财务部长制定完善公司内部控制标准,并组织实施内部体系。", + "4.负责完成财务部长交办的其他工作。", + "任职资格:", + "1.年龄35-45周岁,本科及以上学历,财务、会计、经济等相关专业。", + "2.十年以上大中型建筑企业财务管理经验。具有丰富的财务决策、风险控制以及融资经验。", + "3.精通各种金融产品,对市场变化敏感,有较强的风险意识及分析能力。中级会计师及以上职称或取得税务师证书。" + ], + "联系": { + "联系人": "黄先生", + "联系方式": "0315-5256986", + "Email": "tianhongjianan@163.com", + "公司地址": "开平区税务庄北街" + } + } + }, + { + "position_name": " 财务经理", + "position_url": "/companyhome/post.aspx?comp=dHlybDEyMzQ1Ng%3d%3d&id=583513", + "company_name": "河北唐银钢铁有限公司", + "company_url": "/companyhome/company.aspx?comp=dHlybDEyMzQ1Ng%3d%3d", + "job_info": { + "招聘专业:": "财会", + "招聘人数:": "4人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "35--48岁", + "学历要求:": "本科", + "工作地区:": "曹妃甸工业区曹妃甸工业区", + "工作经验:": "5-8年", + "职位类别:": "财务总监/经理/主任", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/1/9", + "有效期限:": "2025/4/10", + "福利": [ + "薪资高于同行业平均水平", + "每周有两天休息时间", + "企业给缴纳住房公积金", + "有带薪年休假", + "年底有奖金或13/14月薪", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "招聘要求:", + "1、成本核算岗位,对产品成本每月进行预算与实际差异分析;", + "2、每月对各项财务指标进行计算,并出具财务状况分析;", + "3、统筹管理公司资金并做好风险控制;", + "4、熟悉固定资产贷款、流动贷款、国内信用证等各类融资贷款形式;", + "5、研究和掌握国家税收政策变化情况,做好公司各项税务工作,编制公司税务筹划方案。", + "有过钢铁企业财务管理经验的人员,优先面试、录用。" + ], + "联系": { + "联系人": "刘女士", + "联系方式": "13832871207", + "Email": "1654311129@qq.com", + "公司地址": "唐山市曹妃甸区工业园区" + } + } + }, + { + "position_name": " 财务部主任", + "position_url": "/companyhome/post.aspx?comp=dHNqZHJqMjAwOA%3d%3d&id=581325", + "company_name": "中溶科技股份有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNqZHJqMjAwOA%3d%3d", + "job_info": { + "招聘专业:": "会计、财务管理等", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "30--45岁", + "学历要求:": "本科", + "工作地区:": "迁安市迁安市", + "工作经验:": "2-3年", + "职位类别:": "财务总监/经理/主任", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/12/18", + "有效期限:": "2025/5/17", + "福利": [], + "要求": [ + "岗位内容:", + "1.  全面负责公司的日常财务管理和记账工作,及时反馈财务信息,及时处理各种财务问题。", + "2.  统筹公司的财务资源,负责预算制定、成本控制、现金流管理等工作,有效提升公司财务水平。", + "3.  协助上级领导对公司财务决策进行分析和评估并制定合理的财务方案。", + "4.  协调银行、审计、税务等各类外部机构,维护公司的声誉。", + "任职要求:", + "1.  本科及以上学历,财务、会计等相关专业。", + "2.  具备3年以上的财务管理经验,熟练运用Word、Excel等办公软件。", + "3.  熟悉国家相关财务法规及会计准则,能够独立编写财务报表。", + "4.  具备较强的沟通协调能力,能够与各部门有效配合。", + "5、中级及以上资格证书。" + ], + "联系": { + "联系人": "卢先生", + "联系方式": "15632533696", + "Email": "327935366@qq.com", + "公司地址": "唐山市丰润区厂前路5号" + } + } + } + ] + }, + { + "cid": "3728", + "cname": "财务", + "position_list": [ + { + "position_name": " 内账会计", + "position_url": "/companyhome/post.aspx?comp=aGVuZ2hlc2h1bjEyMw%3d%3d&id=585005", + "company_name": "天津恒合顺新材料科技有限公司", + "company_url": "/companyhome/company.aspx?comp=aGVuZ2hlc2h1bjEyMw%3d%3d", + "job_info": { + "招聘专业:": "会计电算化", + "招聘人数:": "3人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "18--45岁", + "学历要求:": "大专", + "工作地区:": "丰润区丰润区", + "工作经验:": "2-3年", + "职位类别:": "财务", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/2/9", + "有效期限:": "2026/1/22", + "福利": [ + "薪资高于同行业平均水平", + "企业给缴纳保险" + ], + "要求": [ + "负责公司内部往来账目工作,有成本核算工作  经验优先。" + ], + "联系": { + "联系人": "邵经理", + "联系方式": "13582563515", + "Email": "2251173913@qq.com", + "公司地址": "唐山市丰润区任各庄镇后泥河村" + } + } + }, + { + "position_name": " 预算员4000-8000", + "position_url": "/companyhome/post.aspx?comp=aG9uZzEwMDMx&id=566904", + "company_name": "唐山方舟实业有限公司", + "company_url": "/companyhome/company.aspx?comp=aG9uZzEwMDMx", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "男", + "年龄要求:": "18--40岁", + "学历要求:": "大专", + "工作地区:": "滦南县滦南县", + "工作经验:": "不限", + "职位类别:": "财务", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/9/18", + "有效期限:": "2025/9/18", + "福利": [], + "要求": [ + "配合完成修船的预算报价工作,生产部结合现场实际的勘察。然后是完成维修项目的整理汇总,跟踪到交船儿时的维修结算工作。" + ], + "联系": { + "联系人": "桑女士", + "联系方式": "13513255615", + "Email": "37223112@qq.com", + "公司地址": "唐山市滦南县嘴东经济开发区" + } + } + } + ] + }, + { + "cid": "3729", + "cname": "出纳/收银", + "position_list": [ + { + "position_name": " 出纳", + "position_url": "/companyhome/post.aspx?comp=dHN5dHpoYg%3d%3d&id=569289", + "company_name": "唐山远通实业有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN5dHpoYg%3d%3d", + "job_info": { + "招聘专业:": "会计专业", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "2001--3500", + "要求性别:": "不限", + "年龄要求:": "23--40岁", + "学历要求:": "大专", + "工作地区:": "唐海县唐海县", + "工作经验:": "2-3年", + "职位类别:": "出纳/收银", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2025/4/4", + "福利": [], + "要求": [ + "大专及以上学历,2年以上的出纳岗位工作经验,有会计证、初级会计师证者优先,会使用财会软件办公,具有良好的工作执行能力和较强的工作责任心。", + "以上岗位:五险、免费健身游泳、24小时空调、标间住宿、公司提供员工餐。" + ], + "联系": { + "联系人": "苏先生", + "联系方式": "18131531769", + "Email": "tsytzhb@163.com", + "公司地址": "曹妃甸区唐海镇唐海路西侧74-1号(如意快捷酒店西行50米)" + } + } + }, + { + "position_name": " 会计(出纳)", + "position_url": "/companyhome/post.aspx?comp=eHV5dWppbmt1bi04ODg%3d&id=208060", + "company_name": "河北旭宇金坤药业有限公司", + "company_url": "/companyhome/company.aspx?comp=eHV5dWppbmt1bi04ODg%3d", + "job_info": { + "招聘专业:": "财经类", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "2001--3500", + "要求性别:": "不限", + "年龄要求:": "18--40岁", + "学历要求:": "大专", + "工作地区:": "开平区开平区", + "工作经验:": "不限", + "职位类别:": "出纳/收银", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/12", + "有效期限:": "2025/10/22", + "福利": [ + "每周有两天休息时间", + "提供免费工作餐或餐补", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "任职资格要求:", + "1、会计专业毕业,大专以上学历;", + "2、1年以上会计工作经验;", + "3、有会计证。", + "公司福利待遇:", + "公司福利体系健全,晋升空间广阔;试用期1-3个月,工作时间:8:00-17:00,午休1小时;公司为员工缴纳五险、双休、法定假日、带薪培训、免费住宿、免费工作餐、节日礼品、员工聚餐等。" + ], + "联系": { + "联系人": "马女士", + "联系方式": "0315-3101978", + "Email": "xuyujinkun@163.com", + "公司地址": "工业园区电瓷路15号" + } + } + }, + { + "position_name": " 出纳", + "position_url": "/companyhome/post.aspx?comp=emp0YzEyMw%3d%3d&id=198557", + "company_name": "唐山市中建天诚建筑装饰工程有限公司", + "company_url": "/companyhome/company.aspx?comp=emp0YzEyMw%3d%3d", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "3人", + "工作类型:": "全职", + "月薪:": "2001--3500", + "要求性别:": "不限", + "年龄要求:": "25--40岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "3-5年", + "职位类别:": "出纳/收银", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/12", + "有效期限:": "2025/5/27", + "福利": [], + "要求": [ + "主要负责公司费用报销,现金保管银行业务,日记账登记,资金周报等,领导交办的其他事项" + ], + "联系": { + "联系人": "赵女士", + "联系方式": "0315-7824444", + "Email": "23356247@qq.com", + "公司地址": "7824444" + } + } + }, + { + "position_name": " 出纳", + "position_url": "/companyhome/post.aspx?comp=dGFuZ3NoYW5zaHVzZW4%3d&id=579901", + "company_name": "唐山市树森商贸有限公司", + "company_url": "/companyhome/company.aspx?comp=dGFuZ3NoYW5zaHVzZW4%3d", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "30--50岁", + "学历要求:": "大专", + "工作地区:": "河北以外省份内蒙古", + "工作经验:": "1-2年", + "职位类别:": "出纳/收银", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/6", + "有效期限:": "2026/2/24", + "福利": [ + "薪资高于同行业平均水平", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "1、按规定每日登记现金日记账和银行存款日记账,每日报告资金情况表;", + "2、认直审查报销单据的金额和批准手续,按照费用报销流程的有关规定,办理费用报销务", + "3、跟进业务收款,并及时进行汇报;", + "4、月末与会计清点现金,及核对银行帐户余额:", + "5、登记和跟进借支还款报销情况;", + "6、负责及时更新应收跟踪表,并提醒收款人员跟进应收未收项目;", + "7、定期盘点在管资金,确保资金账户应收应付资金满足日堂正党开支:", + "8、负责各公司各证件的更换及年审工作", + "9、完成上级交代的其他事项。", + "10、工作地点内蒙古乌兰察布商都县长盛工业园区;" + ], + "联系": { + "联系人": "王绍伟", + "联系方式": "13832556767", + "Email": "tangshanchaotou", + "公司地址": "(河北)自由贸易试验区曹妃甸片区曹妃甸工业区市政服务大厦B座临港商务区管委会办公楼4026-62" + } + } + }, + { + "position_name": " 出纳", + "position_url": "/companyhome/post.aspx?comp=dHNocA%3d%3d&id=239926", + "company_name": "慧鹏建设集团有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNocA%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "23--35岁", + "学历要求:": "大专", + "工作地区:": "河北省河北", + "工作经验:": "1-2年", + "职位类别:": "出纳/收银", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/2/12", + "有效期限:": "2025/6/6", + "福利": [], + "要求": [ + "岗位职责:", + "1、负责日常收支的管理和核对;", + "2、办公室基本账务的核对;", + "3、负责收集和审核原始凭证,保证报销手续及原始单据的合法性、准确性;", + "4、负责登记现金、银行存款日记账并准确录入系统,按时编制银行存款余额调节表;", + "5、负责记账凭证的编号、装订;保存、归档财务相关资料;", + "6、负责开具各项票据;", + "7、配合总会负责办公室财务管理统计汇总。", + "任职资格:", + "1、大学专科以上学历,会计学或财务管理专业毕业;", + "2、具有1年以上出纳工作经验;", + "3、熟悉操作财务软件、Excel、Word等办公软件;", + "4、记账要求字迹清晰、准确、及时,账目日清月结,报表编制准确、及时;", + "5、工作认真,态度端正;", + "6、了解国家财经政策和会计、税务法规,熟悉银行结算业务。", + "在建筑行业有相关工作经验者优先,会开车。" + ], + "联系": { + "联系人": "崔经理", + "联系方式": "14703253827", + "Email": "tshpjz@163.com", + "公司地址": "唐山市路南区西电路549号" + } + } + }, + { + "position_name": " 出纳", + "position_url": "/companyhome/post.aspx?comp=dG9uZ3hpbmdvbmdzaQ%3d%3d&id=583517", + "company_name": "唐山曹妃甸区通鑫再生资源回收利用有限公司", + "company_url": "/companyhome/company.aspx?comp=dG9uZ3hpbmdvbmdzaQ%3d%3d", + "job_info": { + "招聘专业:": "会计", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "18--45岁", + "学历要求:": "大专", + "工作地区:": "河北以外省份辽宁", + "工作经验:": "2-3年", + "职位类别:": "出纳/收银", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/11/14", + "有效期限:": "2025/3/27", + "福利": [ + "企业给缴纳住房公积金", + "提供免费工作餐或餐补", + "企业给缴纳保险" + ], + "要求": [ + "学历大专以上,会计专业,踏实肯干,人品过关。有两年以上相关的工作经验。" + ], + "联系": { + "联系人": "张女士", + "联系方式": "15633926086", + "Email": "1007153430@qq.com", + "公司地址": "路北区梧桐大厦" + } + } + }, + { + "position_name": " 现金会计", + "position_url": "/companyhome/post.aspx?comp=enAyODIzMDIy&id=581053", + "company_name": "河北中磐建设工程有限公司", + "company_url": "/companyhome/company.aspx?comp=enAyODIzMDIy", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "25--35岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "1-2年", + "职位类别:": "出纳/收银", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/5/9", + "有效期限:": "2025/5/10", + "福利": [ + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "企业给缴纳保险" + ], + "要求": [ + "1、要求有现金会计经验,建筑业经验有限;、", + "2、要求认真负责,谨慎稳重。" + ], + "联系": { + "联系人": "尹女士", + "联系方式": "0315-2823022", + "Email": "tscdszyl@163.com", + "公司地址": "唐山市路南区南湖影视基地沿街商业C6栋" + } + } + } + ] + }, + { + "cid": "3730", + "cname": "统计", + "position_list": [ + { + "position_name": " 统计员", + "position_url": "/companyhome/post.aspx?comp=eHV5dWppbmt1bi04ODg%3d&id=208061", + "company_name": "河北旭宇金坤药业有限公司", + "company_url": "/companyhome/company.aspx?comp=eHV5dWppbmt1bi04ODg%3d", + "job_info": { + "招聘专业:": "会计相关", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "2001--3500", + "要求性别:": "不限", + "年龄要求:": "18--40岁", + "学历要求:": "大专", + "工作地区:": "开平区开平区", + "工作经验:": "1-2年", + "职位类别:": "统计", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2024/12/30", + "有效期限:": "2025/10/22", + "福利": [ + "每周有两天休息时间", + "提供免费工作餐或餐补", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "1.能够独立完成指定数据统计分析工作", + "2.能够编制并上报统计表,建立和健全统计台账及制度", + "3.对统计数据资料进行保密、归档及录入工作", + "任职要求:", + "1.财务类相关专业大专以上学历,有会计证优先", + "2.熟悉财务部门的相关工作、规章制度及流程", + "3.具有良好的职业操守及团队合作精神,有较强的沟通、理解及分析能力。", + "4.能够熟练的操作各种办公软件", + "公司福利待遇:", + "公司福利体系健全,晋升空间广阔;试用期1-3个月,工作时间:8:00-17:00,午休1小时;公司为员工缴纳五险、双休、法定假日、带薪培训、免费住宿、免费工作餐、节日礼品、员工聚餐等。" + ], + "联系": { + "联系人": "综合部", + "联系方式": "0315-3101978", + "Email": "xuyujinkun@163.com", + "公司地址": "工业园区电瓷路15号" + } + } + }, + { + "position_name": " 预算员", + "position_url": "/companyhome/post.aspx?comp=Z2pseWQxMjM%3d&id=581880", + "company_name": "唐山国际旅游岛文化旅游运营管理有限公司", + "company_url": "/companyhome/company.aspx?comp=Z2pseWQxMjM%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "18--35岁", + "学历要求:": "本科", + "工作地区:": "海港开发区海港开发区", + "工作经验:": "2-3年", + "职位类别:": "统计", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/5/10", + "有效期限:": "2025/5/9", + "福利": [ + "有带薪年休假", + "提供免费工作餐或餐补", + "企业给缴纳保险" + ], + "要求": [ + "负责工程预算的编制及对项目月目标成本的符合", + "参与分包工程承包合同的起草工作计划书", + "掌握计算预算和施工预算管理。" + ], + "联系": { + "联系人": "赵艳丽", + "联系方式": "15027655515", + "Email": "gjlyd123", + "公司地址": "国际旅游岛" + } + } + } + ] + }, + { + "cid": "3731", + "cname": "审计", + "position_list": [ + { + "position_name": " 审计项目经理", + "position_url": "/companyhome/post.aspx?comp=NTMwMTIxOA%3d%3d&id=192349", + "company_name": "唐山市合衡会计师事务所(普通合伙)", + "company_url": "/companyhome/company.aspx?comp=NTMwMTIxOA%3d%3d", + "job_info": { + "招聘专业:": "财经类", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "28--60岁", + "学历要求:": "大专", + "工作地区:": "河北省河北", + "工作经验:": "不限", + "职位类别:": "审计", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/4/23", + "福利": [ + "薪资高于同行业平均水平", + "每周有两天休息时间", + "企业给缴纳住房公积金", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "1)热爱注册会计师行业工作,遵守职业道德,具有敬业精神。", + "2)取得注册会计师资格,3年以上审计行业从业经验。或注会考试3科(含)以", + "上合格,5年以上工作经验。", + "3)2年以上项目经理经验,如果资质很好,参与项目较多,可放宽到1年。", + "4)掌握专业工具和运作方法,理解审计原理。灵活运用审计方法、程序及处理", + "技巧,并能有效整合运用,发现、评估企业财务、经营风险。", + "5)良好的责任心,沟通协调能力和团队意识。" + ], + "联系": { + "联系人": "许迎燕", + "联系方式": "5301218", + "Email": "TSHH5301218@163.COM", + "公司地址": "凤城国际1号楼1单元G层" + } + } + }, + { + "position_name": " 审计助理", + "position_url": "/companyhome/post.aspx?comp=NTMwMTIxOA%3d%3d&id=192352", + "company_name": "唐山市合衡会计师事务所(普通合伙)", + "company_url": "/companyhome/company.aspx?comp=NTMwMTIxOA%3d%3d", + "job_info": { + "招聘专业:": "财经类", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "25--60岁", + "学历要求:": "本科", + "工作地区:": "河北省河北", + "工作经验:": "不限", + "职位类别:": "审计", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/4/23", + "福利": [ + "薪资高于同行业平均水平", + "每周有两天休息时间", + "企业给缴纳住房公积金", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "财经类、法律类、土建类本科及以上学历,勤学上进,有团队合作精神,热爱注册会计师工作,具有会计工作经验,参加注册会计师考试全科合格或部分科目合格者优先。" + ], + "联系": { + "联系人": "许迎燕", + "联系方式": "5301218", + "Email": "TSHH5301218@163.COM", + "公司地址": "凤城国际1号楼1单元G层" + } + } + }, + { + "position_name": " 注册会计师", + "position_url": "/companyhome/post.aspx?comp=NTMwMTIxOA%3d%3d&id=192353", + "company_name": "唐山市合衡会计师事务所(普通合伙)", + "company_url": "/companyhome/company.aspx?comp=NTMwMTIxOA%3d%3d", + "job_info": { + "招聘专业:": "财经类", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "25--45岁", + "学历要求:": "本科", + "工作地区:": "河北省河北", + "工作经验:": "不限", + "职位类别:": "审计", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/4/23", + "福利": [ + "薪资高于同行业平均水平", + "每周有两天休息时间", + "企业给缴纳住房公积金", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "条件要求:", + "1.取得注册会计师全科合格证书,财经类、法律类、土建类专业本科以上学", + "历,具有企业财务工作经历优先考虑", + "2.已经取得注册会计师资格者优先", + "3.具有财务、审计等相关工作经验者优先", + "4.精通国家财税法规,熟悉企业会计审计税务等业务", + "5.较强的沟通能力及协调能力,优秀的书面写作和口头表达能力", + "6.具有团队合作精神" + ], + "联系": { + "联系人": "许迎燕", + "联系方式": "5301218", + "Email": "TSHH5301218@163.COM", + "公司地址": "凤城国际1号楼1单元G层" + } + } + }, + { + "position_name": " 注册造价师", + "position_url": "/companyhome/post.aspx?comp=NTMwMTIxOA%3d%3d&id=581949", + "company_name": "唐山市合衡会计师事务所(普通合伙)", + "company_url": "/companyhome/company.aspx?comp=NTMwMTIxOA%3d%3d", + "job_info": { + "招聘专业:": "工民建、电气、造价咨询相关专业", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "20--60岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "3-5年", + "职位类别:": "审计", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/4/23", + "福利": [ + "薪资高于同行业平均水平", + "每周有两天休息时间", + "企业给缴纳住房公积金", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "1、具有大专及大专以上学历。", + "1、工民建、电气、造价咨询等相关专业毕业,熟练使用广联达等工程造价相关计", + "价、计量及办公软件。", + "2、有造价员、注册造价师证书优先考虑。", + "3、2年以上工作经验,有造价事务所经验优先。" + ], + "联系": { + "联系人": "许女士", + "联系方式": "5301218", + "Email": "TSHH5301218@163.COM", + "公司地址": "凤城国际1号楼1单元G层" + } + } + }, + { + "position_name": " 注册会计师及会计审计助理", + "position_url": "/companyhome/post.aspx?comp=VFNZRDAx&id=191689", + "company_name": "唐山永大会计师事务所有限公司", + "company_url": "/companyhome/company.aspx?comp=VFNZRDAx", + "job_info": { + "招聘专业:": "财经类", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "18--60岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "应届毕业生", + "职位类别:": "审计", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2024/6/26", + "有效期限:": "2025/6/26", + "福利": [], + "要求": [ + "要求:本科以上学历,评估专业专科以上学历,应届毕业生优先录取。", + "待遇:试用期3个月,业务熟练后月均工资不低于5000元。正式入职后缴纳五险一金,双休,法定节假日全休。" + ], + "联系": { + "联系人": "马先生", + "联系方式": "0315-5188198", + "Email": "1062631443@qq.com", + "公司地址": "路北区君瑞花园商业楼1门554号" + } + } + } + ] + }, + { + "cid": "3732", + "cname": "税务师/税务专员", + "position_list": [] + }, + { + "cid": "3733", + "cname": "财务总监", + "position_list": [ + { + "position_name": " 工程会计", + "position_url": "/companyhome/post.aspx?comp=YmVpc2hhbmc%3d&id=584894", + "company_name": "河北北上节能科技有限公司", + "company_url": "/companyhome/company.aspx?comp=YmVpc2hhbmc%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "不限", + "年龄要求:": "20--60岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "3-5年", + "职位类别:": "财务总监", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2025/5/21", + "福利": [ + "薪资高于同行业平均水平", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "每月月底最后一天发放当月工资,不拖欠。", + "岗位职责:", + "1、日常账务处理:需要处理日常的经济业务,包括收入、支出、成本等的核算和记录。", + "2、成本核算:需要特别关注成本核算,包括直接成本如材料费、人工费等", + "等。这些成本信息对于项目盈利能力的分析和成本控制至关重要。", + "3、项目开工前做好税务筹划,合理控制进项票比例。", + "任职要求:", + "1.  具备会计学或财务管理相关专业背景。", + "2.  拥有5年以上工程会计工作经验,最好是水利市政工程经验,和国企、央企有过直接对接,熟悉行业财务流程。", + "3.可以接受短期出差(如有对账需要)" + ], + "联系": { + "联系人": "高女士", + "联系方式": "15630586212", + "Email": "beifang1998@126.com", + "公司地址": "唐山市高新技术开发区学院北路1716号" + } + } + } + ] + }, + { + "cid": "3734", + "cname": "融资经理", + "position_list": [] + }, + { + "cid": "3735", + "cname": "会计师/会计", + "position_list": [ + { + "position_name": " 会计主管", + "position_url": "/companyhome/post.aspx?comp=dHN5dHpoYg%3d%3d&id=217986", + "company_name": "唐山远通实业有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN5dHpoYg%3d%3d", + "job_info": { + "招聘专业:": "会计专业", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "28--45岁", + "学历要求:": "大专", + "工作地区:": "唐海县唐海县", + "工作经验:": "10年以上", + "职位类别:": "会计师/会计", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2025/4/4", + "福利": [], + "要求": [ + "1、十年以上年会计工作经验", + "2、从事过建筑型企业、农业企业、房地产企业的优先考虑", + "3、熟悉会计准则、税法及相关法规政策", + "4、熟练操作EXCEL办公软件及用友财务软件", + "5、有中级以上会计职称证书、注会证书者优先。", + "福利待遇:五险、单休、免费健身游泳、24小时空调、标间住宿、公司提供员工餐。" + ], + "联系": { + "联系人": "苏先生", + "联系方式": "18131531769", + "Email": "tsytzhb@163.com", + "公司地址": "曹妃甸区唐海镇唐海路西侧74-1号(如意快捷酒店西行50米)" + } + } + }, + { + "position_name": " 会计", + "position_url": "/companyhome/post.aspx?comp=dHN5dHpoYg%3d%3d&id=579679", + "company_name": "唐山远通实业有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN5dHpoYg%3d%3d", + "job_info": { + "招聘专业:": "会计专业", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "30--40岁", + "学历要求:": "大专", + "工作地区:": "唐海县唐海县", + "工作经验:": "5-8年", + "职位类别:": "会计师/会计", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2025/4/4", + "福利": [], + "要求": [ + "单位全称:唐山远通实业有限公司", + "岗位(人数):会计2名", + "要求(岗位职责):财会专业,男女不限,年龄40周岁以下。5年以上会计工作经验,会计初级以上职称;熟悉会计准则、税法及相关法规政策;  熟练操作EXCEL办公软件及用友财务软件。", + "薪酬待遇:5000元-8000元/月,交纳保险、免费健身游泳、24小时空调、无线网、标间住宿。", + "联系方式:18131531769(微信同号),tsytzhb@163.com", + "地址:唐海镇唐海路西侧" + ], + "联系": { + "联系人": "苏先生", + "联系方式": "18131531769(微信同号)", + "Email": "tsytzhb@163.com", + "公司地址": "曹妃甸区唐海镇唐海路西侧74-1号(如意快捷酒店西行50米)" + } + } + }, + { + "position_name": " 三级账", + "position_url": "/companyhome/post.aspx?comp=enF6ZzY2NjY%3d&id=220158", + "company_name": "中起重工机械有限公司", + "company_url": "/companyhome/company.aspx?comp=enF6ZzY2NjY%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "3人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "女", + "年龄要求:": "25--50岁", + "学历要求:": "大专", + "工作地区:": "路南区路南区", + "工作经验:": "2-3年", + "职位类别:": "会计师/会计", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/4", + "有效期限:": "2026/1/17", + "福利": [ + "薪资高于同行业平均水平", + "有带薪年休假", + "提供免费工作餐或餐补", + "企业给缴纳保险" + ], + "要求": [ + "岗位职责:", + "完成公司的会计记帐、开票及其他日常事务性工作。", + "任职资格:", + "1、财务,会计,经济等相关专业大专以上学历,具有会计任职资格;", + "2、具有扎实的会计基础知识,有经验者优先;", + "3、熟悉金蝶或其他财务软件的操作;有商贸和生产企业会计经验者优先;", + "4、具有较强的独立学习和工作的能力,工作踏实,认真细心,积极主动;", + "5、具有良好的职业操守及团队合作精神,较强的沟通、理解和分析能力。" + ], + "联系": { + "联系人": "毕红军", + "联系方式": "15369585069", + "Email": "zqzg6666", + "公司地址": "河北省唐山市路南区侯边庄工业园区三号路以西警曹路以南" + } + } + }, + { + "position_name": " 主管会计一名", + "position_url": "/companyhome/post.aspx?comp=dHNzdHkxMTE%3d&id=585101", + "company_name": "唐山市庭源会计咨询有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNzdHkxMTE%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "20--45岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "1-2年", + "职位类别:": "会计师/会计", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/2/18", + "有效期限:": "2025/3/21", + "福利": [], + "要求": [ + "要求成手会计,能独立记帐报税,工作认真仔细,沟通能力较强,", + "试用期2个月,试用期工资3000,年限达到、能力合格者可以晋升为合伙人,参与利润分配", + "双休,国家法定节假日,五险" + ], + "联系": { + "联系人": "周经理", + "联系方式": "18831539072", + "Email": "517847283@qq.com", + "公司地址": "河北省唐山市路北区朝阳道24号公司办公住楼三层315房间" + } + } + }, + { + "position_name": " 管理会计(劳务派遣)", + "position_url": "/companyhome/post.aspx?comp=em1rZ3RzeQ%3d%3d&id=581452", + "company_name": "中煤科工集团唐山研究院有限公司", + "company_url": "/companyhome/company.aspx?comp=em1rZ3RzeQ%3d%3d", + "job_info": { + "招聘专业:": "财务类专业", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "不限", + "年龄要求:": "24--45岁", + "学历要求:": "本科", + "工作地区:": "路北区路北区", + "工作经验:": "3-5年", + "职位类别:": "会计师/会计", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/8/19", + "有效期限:": "2025/5/25", + "福利": [ + "每周有两天休息时间", + "企业给缴纳住房公积金", + "有带薪年休假", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "企业给缴纳保险" + ], + "要求": [ + "1.学历:全日制大学本科及以上学历", + "2.专业:财务管理、会计学等财经类专业", + "3.职称:中级会计师及以上职称或注册会计师", + "4.年龄:45周岁以下", + "5.从业经历:制造业企业3年以上工作经历", + "6.业务要求:", + "熟悉制造业企业会计核算流程;具有制造业成本核算管理经验;", + "熟练掌握月度、年度报表报告编制;具有全面预算管理相关经验;", + "具有国际国内常用财务软件使用经验(SAP优先);", + "具有较强的财务数据统计分析能力,业务财务融合能力,相关分析报告的编制能力。", + "7.综合能力较为突出的,以上条件可适当放宽。" + ], + "联系": { + "联系人": "夏金强", + "联系方式": "0315-5818831", + "Email": "cctegts@163.com", + "公司地址": "唐山市路北区新华西道21号" + } + } + } + ] + }, + { + "cid": "3736", + "cname": "总帐主管", + "position_list": [] + }, + { + "cid": "3737", + "cname": "财务分析经理/主管", + "position_list": [] + }, + { + "cid": "3738", + "cname": "财务顾问", + "position_list": [] + }, + { + "cid": "3739", + "cname": "成本会计", + "position_list": [ + { + "position_name": " 成本会计", + "position_url": "/companyhome/post.aspx?comp=Q0NLSjE5MTk%3d&id=581346", + "company_name": "创超科技(唐山)有限公司", + "company_url": "/companyhome/company.aspx?comp=Q0NLSjE5MTk%3d", + "job_info": { + "招聘专业:": "会计", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "女", + "年龄要求:": "35--55岁", + "学历要求:": "大专", + "工作地区:": "路北区路北区", + "工作经验:": "5-8年", + "职位类别:": "成本会计", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2025/4/18", + "福利": [ + "薪资高于同行业平均水平" + ], + "要求": [ + "一、基本要求", + "1.工业企业成本会计", + "2.熟悉国家政策和法规", + "3.负责各种报表的审核、申报", + "4.有工业企业成本会计5年以上工作经验", + "5.工作地点:唐山市高新区京唐智慧港产业园区", + "二、综合素质", + "1.有良好的职业道德保守企业秘密", + "2.有良好的沟通协调能力", + "3.能独立开展工作", + "4.为人大方、作风正、工作严谨、细致,具有高度的工作责任感和敬业精神", + "单休及国定节假日。" + ], + "联系": { + "联系人": "饶经理", + "联系方式": "13315591802", + "Email": "CCKJ1919", + "公司地址": "唐山市高新区京唐智慧港产业园区" + } + } + }, + { + "position_name": " 建筑施工财务", + "position_url": "/companyhome/post.aspx?comp=aGVuZ3l1eml4dW4%3d&id=584920", + "company_name": "唐山市恒誉工程技术咨询有限责任公司", + "company_url": "/companyhome/company.aspx?comp=aGVuZ3l1eml4dW4%3d", + "job_info": { + "招聘专业:": "会计专业", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "25--45岁", + "学历要求:": "本科", + "工作地区:": "路北区路北区", + "工作经验:": "3-5年", + "职位类别:": "成本会计", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2025/6/11", + "福利": [ + "薪资高于同行业平均水平", + "年底有奖金或13/14月薪", + "企业给缴纳保险" + ], + "要求": [ + "1.有3年以上会计工作经验;2.熟悉建筑施工企业相关财税经验;" + ], + "联系": { + "联系人": "张先生", + "联系方式": "17713188951", + "Email": "hyjdzx@126.com", + "公司地址": "唐山市路北区陶瓷文化创业中心" + } + } + }, + { + "position_name": " 成本会计", + "position_url": "/companyhome/post.aspx?comp=amlhaGVuZw%3d%3d&id=585793", + "company_name": "唐山市嘉恒实业有限公司", + "company_url": "/companyhome/company.aspx?comp=amlhaGVuZw%3d%3d", + "job_info": { + "招聘专业:": "会计相关专业", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "25--35岁", + "学历要求:": "本科", + "工作地区:": "路南区路南区", + "工作经验:": "3-5年", + "职位类别:": "成本会计", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2025/7/30", + "福利": [ + "薪资高于同行业平均水平", + "每周有两天休息时间", + "企业给缴纳住房公积金", + "有带薪年休假", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "具有2年以上地产公司或物业公司成本会计经验。" + ], + "联系": { + "联系人": "李经理", + "联系方式": "13000000000", + "Email": "msb1608@163.com", + "公司地址": "唐山市路南区世博大厦" + } + } + }, + { + "position_name": " 主管会计", + "position_url": "/companyhome/post.aspx?comp=dGZ3eg%3d%3d&id=151839", + "company_name": "唐山市金正钢板有限公司", + "company_url": "/companyhome/company.aspx?comp=dGZ3eg%3d%3d", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "18--60岁", + "学历要求:": "高中", + "工作地区:": "丰南区丰南区", + "工作经验:": "1-2年", + "职位类别:": "成本会计", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/9/2", + "福利": [], + "要求": [ + "有工作经验。财会专业,,,,,,吗,,,,,,," + ], + "联系": { + "联系人": "郑先生13933358470", + "联系方式": "0315-8168811", + "Email": "tsjzwz@163.com", + "公司地址": "丰南区朝阳大街" + } + } + }, + { + "position_name": " 成本会计", + "position_url": "/companyhome/post.aspx?comp=eHV5dWppbmt1bi04ODg%3d&id=167432", + "company_name": "河北旭宇金坤药业有限公司", + "company_url": "/companyhome/company.aspx?comp=eHV5dWppbmt1bi04ODg%3d", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "28--50岁", + "学历要求:": "大专", + "工作地区:": "开平区开平区", + "工作经验:": "不限", + "职位类别:": "成本会计", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/12", + "有效期限:": "2025/10/22", + "福利": [ + "每周有两天休息时间", + "提供免费工作餐或餐补", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "任职资格要求:", + "1、会计专业毕业,大专以上学历;", + "2、3年以上工业企业成本会计工作经验;", + "3、有会计证。", + "公司福利待遇:", + "公司福利体系健全,晋升空间广阔;试用期1-3个月,工作时间:8:00-17:00,午休1小时;公司为员工缴纳五险、双休、法定假日、带薪培训、免费住宿、免费工作餐、节日礼品、员工聚餐等。" + ], + "联系": { + "联系人": "马女士", + "联系方式": "0315-3101978", + "Email": "xuyujinkun@163.com", + "公司地址": "工业园区电瓷路15号" + } + } + }, + { + "position_name": " 会计", + "position_url": "/companyhome/post.aspx?comp=dHNocA%3d%3d&id=239927", + "company_name": "慧鹏建设集团有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNocA%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "23--35岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "1-2年", + "职位类别:": "成本会计", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/12", + "有效期限:": "2025/6/6", + "福利": [], + "要求": [ + "岗位职责:", + "1、协助制定并严格执行公司的财务核算制度、费用报销制度等;", + "2、分公司费用报销的审核、资金支付及资金调度、代收代付的审核及凭证处理;", + "3、编制财务报表及月度、季度、年度工作总结报告;", + "4、分公司预算方案的编制及审核;", + "5、上级领导安排的其他工作。", + "任职要求:", + "1、大专及以上学历,财会类专业;", + "2、熟悉国内会计准则,熟悉国家各项相关财务、税务、审计法规和政策;", + "3、有3年以上全盘会计岗位工作经验;", + "4、工作严谨、细致,具有高度的工作责任感和敬业精神;", + "5、具备财务报表分析能力;", + "6、熟练使用财务软件和其它办公软件。", + "有在建筑行业工作经验者优先,会开车。" + ], + "联系": { + "联系人": "崔经理", + "联系方式": "14703253827", + "Email": "tshpjz@163.com", + "公司地址": "唐山市路南区西电路549号" + } + } + }, + { + "position_name": " 成本会计", + "position_url": "/companyhome/post.aspx?comp=cmNwcQ%3d%3d&id=585000", + "company_name": "唐山市人才派遣中心", + "company_url": "/companyhome/company.aspx?comp=cmNwcQ%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "30--50岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "成本会计", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/5", + "有效期限:": "2025/10/9", + "福利": [], + "要求": [ + "大专以上学历,30-50岁左右,具有建筑工程类5年以上工作经验优先,熟知各项税务政策,独立完成各项税款的申报和社会保险的申报,能够精准的核算各项工程成本。本岗位为唐山众兴晟业建筑安装工程有限公司招聘,有意者请电话联系!", + "电话:15175555815", + "邮箱:15033336543@163.com" + ], + "联系": { + "联系人": "董女士", + "联系方式": "15175555815", + "Email": "15033336543@163.com", + "公司地址": "唐山市民服务中心" + } + } + }, + { + "position_name": " 成本会计", + "position_url": "/companyhome/post.aspx?comp=dHN4ZGpz&id=582526", + "company_name": "河北鑫鼎建设工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN4ZGpz", + "job_info": { + "招聘专业:": "建筑业会计专业优先", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "30--40岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "3-5年", + "职位类别:": "成本会计", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/1/27", + "有效期限:": "2025/9/5", + "福利": [], + "要求": [ + "财务相关专业,有建筑业会计从业经验,大专以上学历", + "有一般纳税人企业工作经验,熟练应用财务及办公软件,具有会计核算、财务分析、沟通协调能力;已婚已育优先", + "工作地点:路北区竹安北路288号" + ], + "联系": { + "联系人": "单小蕊", + "联系方式": "15230935020", + "Email": "tsxdjs@163.com", + "公司地址": "路北区竹安北路" + } + } + } + ] + }, + { + "cid": "3740", + "cname": "会计文员", + "position_list": [ + { + "position_name": " 开票专员《已婚已育》", + "position_url": "/companyhome/post.aspx?comp=enF6ZzY2NjY%3d&id=580260", + "company_name": "中起重工机械有限公司", + "company_url": "/companyhome/company.aspx?comp=enF6ZzY2NjY%3d", + "job_info": { + "招聘专业:": "会计", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "女", + "年龄要求:": "30--45岁", + "学历要求:": "大专", + "工作地区:": "路南区路南区", + "工作经验:": "2-3年", + "职位类别:": "会计文员", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/12", + "有效期限:": "2026/1/17", + "福利": [ + "薪资高于同行业平均水平", + "有带薪年休假", + "提供免费工作餐或餐补", + "企业给缴纳保险" + ], + "要求": [ + "1.根据客户需求准确无误的开具专票.普票.电子发票。  2.负责专票.普票.电子发票的申购和保管。  3.负责保管发票专用章.税控盘.票据整理。  4.负责邮寄或移交发票给客户。" + ], + "联系": { + "联系人": "毕红军", + "联系方式": "15369585069", + "Email": "zqzg6666", + "公司地址": "河北省唐山市路南区侯边庄工业园区三号路以西警曹路以南" + } + } + }, + { + "position_name": " 财务人员", + "position_url": "/companyhome/post.aspx?comp=dG9uZ2FpOTk5&id=584949", + "company_name": "河北彤爱商贸有限责任公司", + "company_url": "/companyhome/company.aspx?comp=dG9uZ2FpOTk5", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "女", + "年龄要求:": "22--35岁", + "学历要求:": "本科", + "工作地区:": "路北区路北区", + "工作经验:": "1-2年", + "职位类别:": "会计文员", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/12/30", + "有效期限:": "2025/4/1", + "福利": [ + "每周有两天休息时间", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "有工作经验者优先。稳重大方,踏实肯干。能熟练操作电脑" + ], + "联系": { + "联系人": "曹经理", + "联系方式": "17731510799", + "Email": "hbmdph@163.com", + "公司地址": "唐山市路北区城山艺境小区201楼底商12号" + } + } + }, + { + "position_name": " 统计", + "position_url": "/companyhome/post.aspx?comp=aG9uZzEwMDMx&id=582557", + "company_name": "唐山方舟实业有限公司", + "company_url": "/companyhome/company.aspx?comp=aG9uZzEwMDMx", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "男", + "年龄要求:": "18--40岁", + "学历要求:": "大专", + "工作地区:": "曹妃甸工业区曹妃甸工业区", + "工作经验:": "1-2年", + "职位类别:": "会计文员", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/9/18", + "有效期限:": "2025/9/18", + "福利": [], + "要求": [ + "1.负责结算统计2.工资发放3.库房物资发放4.各种收据的整理归档" + ], + "联系": { + "联系人": "桑女士", + "联系方式": "13513255615", + "Email": "37223112@qq.com", + "公司地址": "唐山市滦南县嘴东经济开发区" + } + } + } + ] + }, + { + "cid": "3741", + "cname": "资金专员", + "position_list": [] + }, + { + "cid": "3742", + "cname": "财务类" + } + ] + }, + { + "id": "3743", + "name": "工业/工厂类", + "child": [ + { + "cid": "3744", + "cname": "工业/工厂类" + }, + { + "cid": "3745", + "cname": "生产管理", + "position_list": [ + { + "position_name": " 质检工程师", + "position_url": "/companyhome/post.aspx?comp=endsag%3d%3d&id=565037", + "company_name": "中物杭萧绿建科技股份有限公司", + "company_url": "/companyhome/company.aspx?comp=endsag%3d%3d", + "job_info": { + "招聘专业:": "建筑、机械、工程、材料相关专业", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "18--45岁", + "学历要求:": "大专", + "工作地区:": "曹妃甸工业区曹妃甸工业区", + "工作经验:": "2-3年", + "职位类别:": "生产管理", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/12/20", + "有效期限:": "2025/12/20", + "福利": [], + "要求": [ + "统招大专及以上学历,建筑、机械、工程、材料相关专业;从事工程施工、生产管理、质检管理,至少八年以上,能看懂相关钢结构加工图纸,明白构件关键尺寸,熟悉现行行业国家标准。" + ], + "联系": { + "联系人": "徐女士", + "联系方式": "0315-5078734/19131592969", + "Email": "hr@cclicgb.com", + "公司地址": "河北省唐山市曹妃甸工业区装备东路北侧、装备七道西侧" + } + } + }, + { + "position_name": " 修船主管", + "position_url": "/companyhome/post.aspx?comp=aG9uZzEwMDMx&id=567776", + "company_name": "唐山方舟实业有限公司", + "company_url": "/companyhome/company.aspx?comp=aG9uZzEwMDMx", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "男", + "年龄要求:": "28--45岁", + "学历要求:": "中专", + "工作地区:": "滦南县滦南县", + "工作经验:": "应届毕业生", + "职位类别:": "生产管理", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/9/18", + "有效期限:": "2025/9/18", + "福利": [], + "要求": [ + "1、要求电气或机械专业,有电气或机械生产工作经验者优先。", + "2、应届电气或机械专业毕业生采取定向培养机制。", + "3、唐山本地电气或机械专业毕业生优先。" + ], + "联系": { + "联系人": "桑女士", + "联系方式": "13513255615", + "Email": "37223112@qq.com", + "公司地址": "唐山市滦南县嘴东经济开发区" + } + } + } + ] + }, + { + "cid": "3746", + "cname": "工程管理", + "position_list": [] + }, + { + "cid": "3747", + "cname": "品质管理", + "position_list": [ + { + "position_name": " 品质检验员", + "position_url": "/companyhome/post.aspx?comp=dHNsaw%3d%3d&id=220543", + "company_name": "唐山陆凯科技有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNsaw%3d%3d", + "job_info": { + "招聘专业:": "机械制造类", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "25--45岁", + "学历要求:": "中专", + "工作地区:": "高新开发区高新开发区", + "工作经验:": "2-3年", + "职位类别:": "品质管理", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/2/15", + "有效期限:": "2025/9/27", + "福利": [ + "薪资高于同行业平均水平", + "每周有两天休息时间", + "企业给缴纳住房公积金", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "岗位职责:", + "1、原材料、半成品的入厂检验、成品检验等;", + "2、生产、过程异常反馈、收集、分析、处理、跟进。", + "3.对质量问题及时发现上报,并沟通处理,积极与质量、技术部门配合", + "5.完成领导交与的其他任务。", + "招聘要求:", + "1.要求中专及以上学历,会使用检验量具;", + "2.能够独立完成机加、铆焊件的检验工作。", + "3.根据图纸和标准,完成各种进厂物资的检验。", + "4..对不合格品进行判定,提出解决方案。", + "5.做好各种检验记录。" + ], + "联系": { + "联系人": "郭女士", + "联系方式": "0315-3859958/3859838", + "Email": "lkhr@lk-t.com.cn", + "公司地址": "唐山市高新技术开发区火炬路208号" + } + } + } + ] + }, + { + "cid": "3748", + "cname": "物料管理", + "position_list": [ + { + "position_name": " 轴承管理、轧辊管理", + "position_url": "/companyhome/post.aspx?comp=anhocjAwMQ%3d%3d&id=584962", + "company_name": "河北津西钢铁集团股份有限公司", + "company_url": "/companyhome/company.aspx?comp=anhocjAwMQ%3d%3d", + "job_info": { + "招聘专业:": "机械、冶金相关专业", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "18--45岁", + "学历要求:": "本科", + "工作地区:": "迁西县迁西县", + "工作经验:": "5-8年", + "职位类别:": "物料管理", + "外语要求:": "英语", + "外语等级:": "良好", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/12/31", + "有效期限:": "2025/4/22", + "福利": [ + "薪资高于同行业平均水平", + "企业给缴纳住房公积金", + "企业给缴纳保险" + ], + "要求": [ + "1、热轧带钢轴承管理相关经历、中级工程师及以上专业", + "2、薪资待遇双方面试时确定;", + "3、公司享受五险一金待遇;", + "4、招聘报名要求姓名、原工作单位、工作经历、技术职称、", + "工作年限、薪资要求等以微信或邮件形式发送", + "5、英语4级以上者优先" + ], + "联系": { + "联系人": "付女士", + "联系方式": "15932500319", + "Email": "gezi.06319@163.com", + "公司地址": "迁西县三屯营镇" + } + } + } + ] + }, + { + "cid": "3749", + "cname": "设备管理", + "position_list": [ + { + "position_name": " 设备机动部部长", + "position_url": "/companyhome/post.aspx?comp=dHlybDEyMzQ1Ng%3d%3d&id=583834", + "company_name": "河北唐银钢铁有限公司", + "company_url": "/companyhome/company.aspx?comp=dHlybDEyMzQ1Ng%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "40--55岁", + "学历要求:": "大专", + "工作地区:": "曹妃甸工业区曹妃甸工业区", + "工作经验:": "不限", + "职位类别:": "设备管理", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/4", + "有效期限:": "2025/4/10", + "福利": [ + "薪资高于同行业平均水平", + "每周有两天休息时间", + "企业给缴纳住房公积金", + "有带薪年休假", + "年底有奖金或13/14月薪", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "1  在钢铁行业从事本岗位工作8年以上", + "2、负责制定、完善各项设备管理规章制度、设备维修工作管理工作", + "3  负责设备资产管理", + "4  参与设备的选型及设备技术改造工作", + "5  定期对生产设备进行监督管理", + "6  负责设备维修费用的控制", + "7负责设备部内部日常管理工作" + ], + "联系": { + "联系人": "马云峰", + "联系方式": "13932589566", + "Email": "tyrl123456", + "公司地址": "唐山市曹妃甸区工业园区" + } + } + }, + { + "position_name": " 磨床维护保养管理", + "position_url": "/companyhome/post.aspx?comp=anhocjAwMQ%3d%3d&id=584963", + "company_name": "河北津西钢铁集团股份有限公司", + "company_url": "/companyhome/company.aspx?comp=anhocjAwMQ%3d%3d", + "job_info": { + "招聘专业:": "机械、冶金等相关专业", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "18--45岁", + "学历要求:": "本科", + "工作地区:": "迁西县迁西县", + "工作经验:": "5-8年", + "职位类别:": "设备管理", + "外语要求:": "英语", + "外语等级:": "良好", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/1/6", + "有效期限:": "2025/4/22", + "福利": [ + "薪资高于同行业平均水平", + "企业给缴纳住房公积金", + "企业给缴纳保险" + ], + "要求": [ + "1、热轧带钢车磨床管理相关经历", + "2、薪资待遇双方面试时确定;", + "3、公司享受五险一金待遇;", + "4、招聘报名要求姓名、原工作单位、工作经历、技术职称、", + "工作年限、薪资要求等以微信或邮件形式发送", + "5、英语4级以上者优先" + ], + "联系": { + "联系人": "付女士", + "联系方式": "15932500319", + "Email": "gezi.06319@163.com", + "公司地址": "迁西县三屯营镇" + } + } + }, + { + "position_name": " 设备主任", + "position_url": "/companyhome/post.aspx?comp=YmFpc2hhbjIwMjE%3d&id=583488", + "company_name": "河北百善医药科技有限公司", + "company_url": "/companyhome/company.aspx?comp=YmFpc2hhbjIwMjE%3d", + "job_info": { + "招聘专业:": "机电一体化、机械、仪器仪表等相关专业", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "25--45岁", + "学历要求:": "大专", + "工作地区:": "迁安市迁安市", + "工作经验:": "3-5年", + "职位类别:": "设备管理", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/10/15", + "有效期限:": "2025/10/16", + "福利": [ + "提供免费工作餐或餐补", + "企业给缴纳保险" + ], + "要求": [ + "机电一体化、机械、仪器仪表等相关专业学历;3年以上设备管理经验,扎实的专业知识,较强的学习能力,能够快速掌握新设备、仪器的调试重点及修理要领,承担设备技术指导职责;具备良好的项目管理和人员管理经验;有制药企业生产设备管理经验者优先。", + "岗位职责:", + "1、负责车间的设备管理与维护,保证设备处于良好运行状态。", + "2、制定车间年度检修计划,并按计划落实实施。", + "3、车间维修费用管控。", + "4、车间维修工管理。", + "5、负责车间设备相关SOP的审核。", + "6、负责车间设备日常维保与检修。", + "7、负责备品备件计划的上报。", + "负责对设备使用情况及备件消耗情况进行统计分析。" + ], + "联系": { + "联系人": "综合办", + "联系方式": "18932523682", + "Email": "12093361@qq.com", + "公司地址": "唐山市高新区大庆西道637号" + } + } + }, + { + "position_name": " 设备部经理", + "position_url": "/companyhome/post.aspx?comp=YmFpc2hhbjIwMjE%3d&id=583498", + "company_name": "河北百善医药科技有限公司", + "company_url": "/companyhome/company.aspx?comp=YmFpc2hhbjIwMjE%3d", + "job_info": { + "招聘专业:": "机电一体化、机械、仪器仪表等相关专业", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "25--45岁", + "学历要求:": "大专", + "工作地区:": "迁安市迁安市", + "工作经验:": "3-5年", + "职位类别:": "设备管理", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/10/15", + "有效期限:": "2025/10/16", + "福利": [ + "提供免费工作餐或餐补", + "企业给缴纳保险" + ], + "要求": [ + "机电一体化、机械、仪器仪表等相关专业学历;3年以上设备管理经验,扎实的专业知识,较强的学习能力,能够快速掌握新设备、仪器的调试重点及修理要领,承担设备技术指导职责;具备良好的项目管理和人员管理经验;有制药企业生产设备管理经验者优先", + "岗位职责:", + "1、负责保证生产设备、设施的维护与运转是在GMP文件规定的条件下进行的。", + "2、负责本部各岗位人员的合理调配。", + "3、负责组织起草、修订设备、设施的管理文件和设备标准操作规程及记录。", + "4、负责设备、设施的选型、购置、安装、调试、验收、使用、维护、检修、改造、更新,全过程管理工作。", + "5、负责协同办公室对公司厂房、设施、设备的维护、保养工作", + "6、负责完成全厂安全、环保的监督、检查管理工作。", + "7、负责大、中、小修,日常维修工作的定期执行,确保设备、设施的正常完好,稳定运行。", + "8、负责编制零件、配件及五金材料的采购计划,报总经理审核,总经理批准实施。", + "9、负责组织设备、设施、故障、事故的抢修处理工作。", + "10、负责设备的使用说明书、合格证、安装定位图的清理、归档工作。", + "11、参与公司及本部门的GMP自检工作。" + ], + "联系": { + "联系人": "综合办", + "联系方式": "18932523682", + "Email": "12093361@qq.com", + "公司地址": "唐山市高新区大庆西道637号" + } + } + }, + { + "position_name": " 现场运维", + "position_url": "/companyhome/post.aspx?comp=Z3VvemlyZW5saQ%3d%3d&id=581235", + "company_name": "唐山国资人力资源服务有限责任公司", + "company_url": "/companyhome/company.aspx?comp=Z3VvemlyZW5saQ%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "3人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "男", + "年龄要求:": "18--28岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "设备管理", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/4/8", + "有效期限:": "2025/4/9", + "福利": [ + "企业给缴纳保险" + ], + "要求": [ + "国企单位现场运维工作,要求大专及以上学历,年龄18-28岁", + "工作时间:8:30-17:30,双休", + "薪资待遇:月薪4000,缴纳五险一金,年底有奖金" + ], + "联系": { + "联系人": "张女士", + "联系方式": "17603152999", + "Email": "guozirenli@163.com", + "公司地址": "唐山市路南区车站路169号" + } + } + } + ] + }, + { + "cid": "3750", + "cname": "仓库管理", + "position_list": [ + { + "position_name": " 库工", + "position_url": "/companyhome/post.aspx?comp=eHV5dWppbmt1bi04ODg%3d&id=201442", + "company_name": "河北旭宇金坤药业有限公司", + "company_url": "/companyhome/company.aspx?comp=eHV5dWppbmt1bi04ODg%3d", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "2001--3500", + "要求性别:": "男", + "年龄要求:": "20--50岁", + "学历要求:": "中专", + "工作地区:": "开平区开平区", + "工作经验:": "不限", + "职位类别:": "仓库管理", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/12", + "有效期限:": "2025/10/22", + "福利": [ + "每周有两天休息时间", + "提供免费工作餐或餐补", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "身体健康,爱岗敬业,有责任心,吃苦耐劳,要求男士", + "公司福利待遇:", + "公司福利体系健全,晋升空间广阔;试用期1-3个月,工作时间:8:00-17:00,午休1小时;公司为员工缴纳五险、双休、法定假日、带薪培训、免费住宿、免费工作餐、节日礼品、员工聚餐等。" + ], + "联系": { + "联系人": "综合部", + "联系方式": "0315-3101978", + "Email": "xuyujinkun@163.com", + "公司地址": "工业园区电瓷路15号" + } + } + }, + { + "position_name": " 库房主管/库管", + "position_url": "/companyhome/post.aspx?comp=WlRIVA%3d%3d&id=221320", + "company_name": "唐山中铁亨通道岔有限公司", + "company_url": "/companyhome/company.aspx?comp=WlRIVA%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "28--50岁", + "学历要求:": "高中", + "工作地区:": "丰南沿海工业区丰南沿海工业区", + "工作经验:": "3-5年", + "职位类别:": "仓库管理", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/11", + "有效期限:": "2026/3/11", + "福利": [ + "提供免费工作餐或餐补", + "企业公费组织员工培训", + "企业给缴纳保险" + ], + "要求": [ + "1.认可公司管理理念,能接受并执行公司管理制度;", + "2.有责任心,对工作认真负责;", + "3.会简单的计算机操作,会做EXCEL表,会用金蝶管理软件的优先录用;", + "4.男女不限,有库管管理工作经验者优先" + ], + "联系": { + "联系人": "庞先生", + "联系方式": "15031579000", + "Email": "tszthtdc@163.com", + "公司地址": "丰南沿海工业区" + } + } + }, + { + "position_name": " 库管员", + "position_url": "/companyhome/post.aspx?comp=MTUzMzMyNTU4Mjk%3d&id=582029", + "company_name": "河北西博曼电气设备有限公司", + "company_url": "/companyhome/company.aspx?comp=MTUzMzMyNTU4Mjk%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "男", + "年龄要求:": "35--45岁", + "学历要求:": "中专", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "仓库管理", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/2/5", + "有效期限:": "2025/4/13", + "福利": [ + "每周有两天休息时间", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "1、仓库设备台账的统计;", + "2、负责仓库日常物资的验收、入库、码放、保管、盘点、对账等工作;", + "3、负责仓库日常物资的拣选、复核、装车及发运工作;", + "4、负责保持仓内货品和环境的清洁、整齐和卫生工作;", + "5、负责相关单证的保管与存档;", + "6、仓库数据的统计、存档、帐务和系统数据的输入;", + "7、部门主管交办的其它事宜。要求大专以上学历,有库管经验者优先,年龄28-38岁,薪资3500-4000元/月,双休五险,法定节假日休,13薪" + ], + "联系": { + "联系人": "董女士", + "联系方式": "15333255829", + "Email": "15333255829", + "公司地址": "河北省唐山市路北区高新技术开发区火炬北路410号联东U谷" + } + } + }, + { + "position_name": " 收发质检员", + "position_url": "/companyhome/post.aspx?comp=endsag%3d%3d&id=582913", + "company_name": "中物杭萧绿建科技股份有限公司", + "company_url": "/companyhome/company.aspx?comp=endsag%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "3人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "20--45岁", + "学历要求:": "中专", + "工作地区:": "曹妃甸工业区曹妃甸工业区", + "工作经验:": "不限", + "职位类别:": "仓库管理", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/12/20", + "有效期限:": "2025/12/20", + "福利": [], + "要求": [ + "根据生产计划、货物特性、装卸要求、工属具特性,完成货物装卸工艺、配置管理装卸工属具、制定工艺标准、协同与其他科室的联系工作;进行备品备件的管理工作。具有在码头属具组装、收发质检的工作经历。具备叉车操作证者优先考虑。" + ], + "联系": { + "联系人": "孙先生/徐女士", + "联系方式": "19131592969/0315-5078734", + "Email": "hr@cclicgb.com", + "公司地址": "河北省唐山市曹妃甸工业区装备东路北侧、装备七道西侧" + } + } + } + ] + }, + { + "cid": "3751", + "cname": "计划员/调度", + "position_list": [] + }, + { + "cid": "3752", + "cname": "化验员", + "position_list": [ + { + "position_name": " 化验员", + "position_url": "/companyhome/post.aspx?comp=dG9uZ3hpbmdvbmdzaQ%3d%3d&id=584199", + "company_name": "唐山曹妃甸区通鑫再生资源回收利用有限公司", + "company_url": "/companyhome/company.aspx?comp=dG9uZ3hpbmdvbmdzaQ%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "3人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "18--30岁", + "学历要求:": "大专", + "工作地区:": "唐海县唐海县", + "工作经验:": "1年及以下", + "职位类别:": "化验员", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/2/15", + "有效期限:": "2025/3/27", + "福利": [ + "企业给缴纳住房公积金", + "提供免费工作餐或餐补", + "企业给缴纳保险" + ], + "要求": [ + "岗位内容:1.根据工艺流程要求,完成相应的样品化验和质量检测工作;2.负责检验分析样品,准确记录数据和结果,并进行数据统计、分析和报告编制;3检验仪器的操作维护和保养,及时发现仪器故障问题;", + "任职要求:1.大专以上学历,化学相关专业;2.熟练掌握基础化学知识,具备一定的化学分析和质量检测操作能力;3.具备团队协作精神,有较好的沟通能力和学习能力;4.认真负责,有严谨的工作作风和细致的工作态度。5.能适应倒班工作制度" + ], + "联系": { + "联系人": "王先生", + "联系方式": "15555084413", + "Email": "18531532851@163.com", + "公司地址": "曹妃甸八农场韩庄子北" + } + } + }, + { + "position_name": " 化验员", + "position_url": "/companyhome/post.aspx?comp=YmFpc2hhbjIwMjE%3d&id=583496", + "company_name": "河北百善医药科技有限公司", + "company_url": "/companyhome/company.aspx?comp=YmFpc2hhbjIwMjE%3d", + "job_info": { + "招聘专业:": "医药相关专业", + "招聘人数:": "10人", + "工作类型:": "全职", + "月薪:": "2001--3500", + "要求性别:": "不限", + "年龄要求:": "25--45岁", + "学历要求:": "大专", + "工作地区:": "迁安市迁安市", + "工作经验:": "1年及以下", + "职位类别:": "化验员", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/10/15", + "有效期限:": "2025/10/16", + "福利": [ + "提供免费工作餐或餐补", + "企业给缴纳保险" + ], + "要求": [ + "药学、中药学、微生物、化工分析检验等相关专业,有相关工作经验者优先,接受应届毕业生", + "岗位职责:", + "1、负责原辅料,半成品,成品检验。", + "2、负责工艺及清洁验证的检验支持,支持分析技术及分析方法改进,协助实施实验室管理改进。", + "3、回顾与修订SOP,  对所使用的仪器进行日常校正维护及简单的故障排除。" + ], + "联系": { + "联系人": "综合办", + "联系方式": "18932523682", + "Email": "12093361@qq.com", + "公司地址": "唐山市高新区大庆西道637号" + } + } + } + ] + }, + { + "cid": "3753", + "cname": "跟单员", + "position_list": [] + }, + { + "cid": "3754", + "cname": "生产经理/车间主任", + "position_list": [ + { + "position_name": " 生产管理(劳务派遣)", + "position_url": "/companyhome/post.aspx?comp=em1rZ3RzeQ%3d%3d&id=582003", + "company_name": "中煤科工集团唐山研究院有限公司", + "company_url": "/companyhome/company.aspx?comp=em1rZ3RzeQ%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "18--40岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "生产经理/车间主任", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/6/5", + "有效期限:": "2025/5/25", + "福利": [ + "每周有两天休息时间", + "企业给缴纳住房公积金", + "有带薪年休假", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "企业给缴纳保险" + ], + "要求": [ + "1.岗位要求:211或985本科以上学历;5年以上工作经验。", + "2.岗位职责:负责公司智能仪表工厂的生产管理工作,包括制度建设、生产管理、安全管理。" + ], + "联系": { + "联系人": "夏金强", + "联系方式": "0315-5818831", + "Email": "cctegts@163.com", + "公司地址": "唐山市路北区新华西道21号" + } + } + } + ] + }, + { + "cid": "3755", + "cname": "工程师/副总工程师", + "position_list": [ + { + "position_name": " 技术支持", + "position_url": "/companyhome/post.aspx?comp=dHN6bmVj&id=559677", + "company_name": "唐山智能电子有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN6bmVj", + "job_info": { + "招聘专业:": "", + "招聘人数:": "3人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "男", + "年龄要求:": "20--40岁", + "学历要求:": "中专", + "工作地区:": "中国中国", + "工作经验:": "1-2年", + "职位类别:": "工程师/副总工程师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "唐山", + "发布日期:": "2025/2/27", + "有效期限:": "2025/8/24", + "福利": [ + "企业给缴纳住房公积金", + "提供免费工作餐或餐补", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "职位要求:", + "1、机电一体化相关专业", + "2、年龄40周岁以内", + "3、能接受全国范围内出差", + "4、懂电、懂plc者优先", + "薪资待遇:", + "1、月收入万元以上", + "2、五险一金、底薪+奖金+补助" + ], + "联系": { + "联系人": "郭女士", + "联系方式": "0315-3175636转6878", + "Email": "tszndz@163.com", + "公司地址": "开平区现代工业装备园区电瓷道7号" + } + } + } + ] + }, + { + "cid": "3756", + "cname": "质量管理/测试经理(QA/QC经理)", + "position_list": [] + }, + { + "cid": "3757", + "cname": "物料管理/物控", + "position_list": [] + }, + { + "cid": "3758", + "cname": "设备管理工程师", + "position_list": [ + { + "position_name": " 设备工程师", + "position_url": "/companyhome/post.aspx?comp=amlhaGVuZw%3d%3d&id=584189", + "company_name": "唐山市嘉恒实业有限公司", + "company_url": "/companyhome/company.aspx?comp=amlhaGVuZw%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "男", + "年龄要求:": "28--40岁", + "学历要求:": "大专", + "工作地区:": "路南区路南区", + "工作经验:": "2-3年", + "职位类别:": "设备管理工程师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/1/6", + "有效期限:": "2025/7/30", + "福利": [ + "薪资高于同行业平均水平", + "每周有两天休息时间", + "企业给缴纳住房公积金", + "有带薪年休假", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "1、全日制大专及以上学历,机械相关专业。", + "2、3年以上工作经验,二建、工程师证优先。", + "3、负责唐山及以外工程项目管理(要求能出差)。" + ], + "联系": { + "联系人": "李女士", + "联系方式": "13000000000", + "Email": "msb1608@163.com", + "公司地址": "唐山市路南区世博大厦" + } + } + } + ] + }, + { + "cid": "3759", + "cname": "调度/生产计划协调员", + "position_list": [] + }, + { + "cid": "3760", + "cname": "工厂跟单员", + "position_list": [] + }, + { + "cid": "3761", + "cname": "采购专员", + "position_list": [ + { + "position_name": " 采购员", + "position_url": "/companyhome/post.aspx?comp=amlhaGVuZw%3d%3d&id=584175", + "company_name": "唐山市嘉恒实业有限公司", + "company_url": "/companyhome/company.aspx?comp=amlhaGVuZw%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "25--40岁", + "学历要求:": "大专", + "工作地区:": "路南区路南区", + "工作经验:": "2-3年", + "职位类别:": "采购专员", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/12/17", + "有效期限:": "2025/7/30", + "福利": [ + "薪资高于同行业平均水平", + "每周有两天休息时间", + "企业给缴纳住房公积金", + "有带薪年休假", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "1、大专及以上学历,机械、物流等相关专业。", + "2、会看简单图纸,有2年以上冶金、工业品采购经验。", + "3、负责执行各项粒化渣采购计划,业务合同签订、付款及售后问题协调处理。完成各类资金、计划报表。" + ], + "联系": { + "联系人": "李女士", + "联系方式": "13000000000", + "Email": "msb1608@163.com", + "公司地址": "唐山市路南区世博大厦" + } + } + } + ] + }, + { + "cid": "3762", + "cname": "质量检验员/测试员", + "position_list": [ + { + "position_name": " 质量检验员", + "position_url": "/companyhome/post.aspx?comp=dHNqeWIxMjM0NTY%3d&id=211632", + "company_name": "唐山金裕博精密机械技术有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNqeWIxMjM0NTY%3d", + "job_info": { + "招聘专业:": "仪器仪表类", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "30--50岁", + "学历要求:": "中专", + "工作地区:": "高新开发区高新开发区", + "工作经验:": "不限", + "职位类别:": "质量检验员/测试员", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/10", + "有效期限:": "2025/4/19", + "福利": [ + "薪资高于同行业平均水平", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "1、懂检验规则和质检程序", + "2、负责检验、测量和实验设备的控制、确保检验、测量和实验设备的精密度和准确度。", + "3、会使用三坐标、轮廓仪和粗糙度仪等测量设备。" + ], + "联系": { + "联系人": "陈女士", + "联系方式": "13315506067", + "Email": "2533386273@qq.com", + "公司地址": "唐山高新技术开发区西昌路4号" + } + } + }, + { + "position_name": " 质检员", + "position_url": "/companyhome/post.aspx?comp=dHNqeWIxMjM0NTY%3d&id=581329", + "company_name": "唐山金裕博精密机械技术有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNqeWIxMjM0NTY%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "28--50岁", + "学历要求:": "大专", + "工作地区:": "高新开发区高新开发区", + "工作经验:": "3-5年", + "职位类别:": "质量检验员/测试员", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/10", + "有效期限:": "2025/4/19", + "福利": [ + "薪资高于同行业平均水平", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "1、懂检验规则和质检程序", + "2、负责检验、测量和实验设备的控制、确保检验、测量和实验设备的精密度和准确度。", + "3、会使用三坐标、轮廓仪和粗糙度仪等测量设备。" + ], + "联系": { + "联系人": "陈女士", + "联系方式": "13315506067", + "Email": "2533386273@qq.com", + "公司地址": "唐山高新技术开发区西昌路4号" + } + } + }, + { + "position_name": " 质检员", + "position_url": "/companyhome/post.aspx?comp=dGFuZ3NoYW5uYWlzaHVu&id=170088", + "company_name": "唐山耐顺金属制品有限公司", + "company_url": "/companyhome/company.aspx?comp=dGFuZ3NoYW5uYWlzaHVu", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "18--60岁", + "学历要求:": "大专", + "工作地区:": "新区(丰润区)新区(丰润区)", + "工作经验:": "不限", + "职位类别:": "质量检验员/测试员", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/1/24", + "有效期限:": "2025/11/1", + "福利": [], + "要求": [ + "有责任心,工作认真严谨,有相关工作经验者优先。" + ], + "联系": { + "联系人": "李女士", + "联系方式": "0315-3242104", + "Email": "naishunjinshu@163.com", + "公司地址": "唐山市丰润区新区" + } + } + } + ] + }, + { + "cid": "3763", + "cname": "认证体系工程师/审核员", + "position_list": [] + }, + { + "cid": "3764", + "cname": "采购经理/主管", + "position_list": [ + { + "position_name": " 招采询价经理", + "position_url": "/companyhome/post.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d&id=585800", + "company_name": "唐山天鸿建设集团有限责任公司", + "company_url": "/companyhome/company.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "35--45岁", + "学历要求:": "大专", + "工作地区:": "开平区开平区", + "工作经验:": "5-8年", + "职位类别:": "采购经理/主管", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/14", + "有效期限:": "2025/8/14", + "福利": [], + "要求": [ + "工作内容:", + "1、根据项目生产需用计划,负责市场物资采购的询价、批价工作。", + "2、负责市场部和经营部的商务投标和工程造价预算各项费用的询价工作。", + "2、根据需求走访市场,了解市场动态,拓展供应渠道。", + "3、不定期对现有供应商进行评价及供应商名录更新,负责新供应商推荐和筛选工作。", + "4、协助副部长根据需要组织公司物资采购的招投标工作。", + "岗位要求:", + "1、35-45岁,大专及以上学历,工程类专业,本科以上学历优先。", + "2、行业工作5年以上,同岗位工作经验3年以上。", + "3、具备一定的物资方面专业知识,爱岗敬业、勤奋好学、积极进取。", + "3、具有良好的沟通协调能力及业务洽谈能力。", + "4、能接受适量加班和低频短期出差。" + ], + "联系": { + "联系人": "黄先生", + "联系方式": "0315-5256986", + "Email": "tianhongjianan@163.com", + "公司地址": "开平区税务庄北街" + } + } + } + ] + }, + { + "cid": "3765", + "cname": "质量管理/测试主管(QA/QC主管)", + "position_list": [ + { + "position_name": " QA质管员", + "position_url": "/companyhome/post.aspx?comp=eHV5dWppbmt1bi04ODg%3d&id=208039", + "company_name": "河北旭宇金坤药业有限公司", + "company_url": "/companyhome/company.aspx?comp=eHV5dWppbmt1bi04ODg%3d", + "job_info": { + "招聘专业:": "医药", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "23--40岁", + "学历要求:": "本科", + "工作地区:": "开平区开平区", + "工作经验:": "不限", + "职位类别:": "质量管理/测试主管(QA/QC主管)", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/12", + "有效期限:": "2025/10/22", + "福利": [ + "每周有两天休息时间", + "提供免费工作餐或餐补", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "1.执行国家有关药品监督管理法律、法规及行政规定;加强公司全面质量管理工作,有效实施质量裁决权、质量否决权;", + "2.负责组织制定公司质量管理体系文件,并指导、督促、检查各部门实施落实情况;", + "3.负责产品放行前完成审批记录的审核;审核和批准产品工艺规程;", + "4.承担产品放行前的职责,确保每批放行产品生产、检验均符合相关法规、药品注册要求和质量标准;", + "5.参与公司药品研发和技术改进。中药学或相关专业本科学历,中药执业医师资格,五年以上药品生产和质量管理的实践经验,接受过与所生产产品相关的专业知识培训。", + "6、专业要求为中药学,且具有相应资格证书", + "7、熟悉制药相关法规和GMP相关知识;具有较强的责任心和执行能力;有良好的团队合作精神和组织沟通能力。", + "公司福利体系健全,晋升空间广阔;试用期1-3个月,工作时间:8:00-17:00,午休1小时;公司为员工缴纳五险、双休、法定假日、带薪培训、免费住宿、免费工作餐、节日礼品、员工聚餐等。" + ], + "联系": { + "联系人": "综合部", + "联系方式": "0315-3101978", + "Email": "xuyujinkun@163.com", + "公司地址": "工业园区电瓷路15号" + } + } + } + ] + }, + { + "cid": "3766", + "cname": "质量管理/测试工程师(QA/QC工程师)", + "position_list": [ + { + "position_name": " 质检员", + "position_url": "/companyhome/post.aspx?comp=dHNseWhia2p5eGdz&id=580111", + "company_name": "唐山绿源环保科技有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNseWhia2p5eGdz", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "男", + "年龄要求:": "25--45岁", + "学历要求:": "大专", + "工作地区:": "路北区路北区", + "工作经验:": "3-5年", + "职位类别:": "质量管理/测试工程师(QA/QC工程师)", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/12/19", + "有效期限:": "2025/12/18", + "福利": [ + "企业给缴纳住房公积金", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "企业给缴纳保险" + ], + "要求": [ + "岗位职责:", + "1、供应商上货检验;", + "2、设备制造、出厂检验;", + "3、设备安装施工质量检验;", + "4、对质检所用计量等器具进行日常维护。", + "任职要求:", + "1、有焊接、钣金及机加工类零件的质量管控经验,了解机械制造企业的质检工作;", + "2、懂机械图纸,能熟练使用量具;", + "3、做事积极主动,有责任感,注重沟通协作;", + "4、会开车,需对设备安装施工质量进行跟踪质检,要求能接受全国范围内3天左右的短期出差。" + ], + "联系": { + "联系人": "办公室", + "联系方式": "15613494224", + "Email": "610758629@qq.com", + "公司地址": "国矿路与东新南街交叉口东行50米" + } + } + }, + { + "position_name": " 检测技术员", + "position_url": "/companyhome/post.aspx?comp=eWluZ21laWtlamk%3d&id=583831", + "company_name": "唐山曹妃甸映美科技有限公司", + "company_url": "/companyhome/company.aspx?comp=eWluZ21laWtlamk%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "男", + "年龄要求:": "22--35岁", + "学历要求:": "本科", + "工作地区:": "曹妃甸工业区曹妃甸工业区", + "工作经验:": "不限", + "职位类别:": "质量管理/测试工程师(QA/QC工程师)", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/12/16", + "有效期限:": "2025/11/13", + "福利": [], + "要求": [ + "岗位职责:", + "1.负责按检测工程师制定的检测方案实施项目检测;", + "2.跟随检测工程师学习检测操作,以达到可以独立操作;", + "3.对检测过程中的各项检测数据按要求进行记录,并录入到电脑进行数据排版、分析、形成检测报告;", + "4.负责检测设备和仪器的维护管理,对检测设备的使用进行记录,并录入系统;", + "5.负责检测项目的进度报告;", + "任职要求:", + "1.本科及以上学历,机械、自动化、测控类工科专业均可,接受毕业生培养;", + "2.对office熟练操作,具有数据记录、录入、统计、分析、数据图表制作的基本功;", + "3.有良好的沟通学习能力和动手能力;", + "4.无色弱、色盲;", + "5.有打印机维保经验优先考虑。", + "双休,法定假日", + "注:此岗位工作地点在曹妃甸工业区,有宿舍和食堂,不接受请勿投递" + ], + "联系": { + "联系人": "李先生", + "联系方式": "13933407370", + "Email": "lhc@cetgroupco.com", + "公司地址": "曹妃甸工业区三加新兴产业园人民路1号" + } + } + } + ] + }, + { + "cid": "3767", + "cname": "仓库经理/主管", + "position_list": [] + }, + { + "cid": "3768", + "cname": "生产助理", + "position_list": [ + { + "position_name": " 设备维修工", + "position_url": "/companyhome/post.aspx?comp=dGZ3eg%3d%3d&id=578566", + "company_name": "唐山市金正钢板有限公司", + "company_url": "/companyhome/company.aspx?comp=dGZ3eg%3d%3d", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "20--50岁", + "学历要求:": "中专", + "工作地区:": "丰南区丰南区", + "工作经验:": "在读学生", + "职位类别:": "生产助理", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/9/2", + "福利": [], + "要求": [ + "有上岗证。有工作经验。。。。。。。。。。。。。。。。。" + ], + "联系": { + "联系人": "郑先生", + "联系方式": "13933358470", + "Email": "tsjzwz@163.com", + "公司地址": "丰南区朝阳大街" + } + } + } + ] + }, + { + "cid": "3769", + "cname": "安全工程师", + "position_list": [] + }, + { + "cid": "3770", + "cname": "包装工程师", + "position_list": [] + }, + { + "cid": "3771", + "cname": "产品开发/技术/工艺", + "position_list": [ + { + "position_name": " 硬件工程师", + "position_url": "/companyhome/post.aspx?comp=amhsdzEwMDI%3d&id=194255", + "company_name": "唐山市建华自动控制设备厂", + "company_url": "/companyhome/company.aspx?comp=amhsdzEwMDI%3d", + "job_info": { + "招聘专业:": "电气自动化", + "招聘人数:": "10人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "18--60岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "1-2年", + "职位类别:": "产品开发/技术/工艺", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2025/7/25", + "福利": [], + "要求": [ + "岗位职责:", + "1.  \t根据项目需求,按时完成符合要求和质量的硬件开发任务、输出技术资料及项目文档;2.  \t进行产品硬件调试及性能测试;3.\t器件确认、资料编写。4.\t绘制原理图及PCB;5.  \t负责样板生产加工和调试;6.\t解决与软件之间协调的问题。", + "岗位要求:", + "1.\t了解电子器件特性;2.\t熟悉各种串口通信;3.  \t精通一门编程语言;", + "4.\t有较好的数模电路、信号与系统基础知识;具备数模电路设计及调试经验;5.\t至少熟练掌握一种画图工具:Protel、AD、PADS、Cadence;", + "6.\t熟悉研发的开发流程。" + ], + "联系": { + "联系人": "高女士", + "联系方式": "13292433965", + "Email": "jhlw1002@163.com", + "公司地址": "唐山市五家庄大街13号" + } + } + }, + { + "position_name": " 新产品开发技术人员", + "position_url": "/companyhome/post.aspx?comp=amlhaGVuZw%3d%3d&id=367444", + "company_name": "唐山市嘉恒实业有限公司", + "company_url": "/companyhome/company.aspx?comp=amlhaGVuZw%3d%3d", + "job_info": { + "招聘专业:": "冶金、环保专业", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "男", + "年龄要求:": "25--35岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "2-3年", + "职位类别:": "产品开发/技术/工艺", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/14", + "有效期限:": "2025/7/30", + "福利": [ + "薪资高于同行业平均水平", + "每周有两天休息时间", + "企业给缴纳住房公积金", + "有带薪年休假", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "岗位职责:", + "1、冶金、环保方面新工艺技术集成;", + "2、余热利用、烟气消白、烟气净化除尘工艺计算及设计选型。", + "3、具备机械设计与制造、仪表知识。", + "4、熟练掌握国家技术标准,能够独立设计,熟练使用绘图软件(CAD/SW)", + "岗位要求:2年及以上冶金、环保、煤化工设备方面技术工作经验。", + "岗位待遇:薪资面议,五险一金,双休,法定假日。" + ], + "联系": { + "联系人": "李女士", + "联系方式": "0315-3739002", + "Email": "msb1608@163.com", + "公司地址": "唐山市路南区新华西道2号" + } + } + }, + { + "position_name": " 技术员", + "position_url": "/companyhome/post.aspx?comp=dGNnYw%3d%3d&id=226403", + "company_name": "唐山齿轮集团有限公司", + "company_url": "/companyhome/company.aspx?comp=dGNnYw%3d%3d", + "job_info": { + "招聘专业:": "机械制造及其自动化等相关专业", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "男", + "年龄要求:": "22--40岁", + "学历要求:": "本科", + "工作地区:": "丰润区丰润区", + "工作经验:": "不限", + "职位类别:": "产品开发/技术/工艺", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/6", + "有效期限:": "2025/11/6", + "福利": [], + "要求": [ + "身体健康,熟练使用制图软件,有机械行业相关工作经验者优先。" + ], + "联系": { + "联系人": "王女士", + "联系方式": "0315-3229305", + "Email": "tslrglb@126.com", + "公司地址": "唐山市丰润区林荫东路29号" + } + } + }, + { + "position_name": " 机械设计与工艺工程师", + "position_url": "/companyhome/post.aspx?comp=dHNqeWIxMjM0NTY%3d&id=584202", + "company_name": "唐山金裕博精密机械技术有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNqeWIxMjM0NTY%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "28--50岁", + "学历要求:": "硕士", + "工作地区:": "高新开发区高新开发区", + "工作经验:": "1-2年", + "职位类别:": "产品开发/技术/工艺", + "外语要求:": "不限", + "外语等级:": "良好", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/2/6", + "有效期限:": "2025/4/19", + "福利": [ + "薪资高于同行业平均水平", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "1.硕士研究生以上学历。", + "2.专业:具有机械类或电机类相关专业。", + "3.有机械、电机设计与制造专业的工作经验者优先", + "4.掌握专业知识及UG        Solidworks              Pro/e等软件的使用", + "5.薪资丰厚,待遇面议。", + "6.包吃包住,单元房间,设施齐全(空调、洗衣机、热水器等),温馨舒适。(唐山本地优先)" + ], + "联系": { + "联系人": "陈女士", + "联系方式": "13315506067", + "Email": "2533386273@qq.com", + "公司地址": "唐山高新技术开发区西昌路4号" + } + } + } + ] + }, + { + "cid": "3772", + "cname": "环境/健康/安全工程师(EHS)", + "position_list": [ + { + "position_name": " 副部长", + "position_url": "/companyhome/post.aspx?comp=endsag%3d%3d&id=583822", + "company_name": "中物杭萧绿建科技股份有限公司", + "company_url": "/companyhome/company.aspx?comp=endsag%3d%3d", + "job_info": { + "招聘专业:": "环境工程、安全工程、项目管理", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "男", + "年龄要求:": "35--50岁", + "学历要求:": "本科", + "工作地区:": "曹妃甸工业区曹妃甸工业区", + "工作经验:": "5-8年", + "职位类别:": "环境/健康/安全工程师(EHS)", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/12/20", + "有效期限:": "2025/12/20", + "福利": [], + "要求": [ + "1.  教育背景:环境工程、安全工程、项目管理等相关专业本科及以上学历,特别优秀的可放宽至专科学历。", + "2.  工作经验:具有5年及以上钢结构制造及工程施工企业的安全环保管理工作经验,具备丰富的现场安全管理和环保管理经验。", + "3.  资格证书:持建设厅安全考核合格证C证,具有注册安全工程师职业资格者优先。", + "4.  知识技能:熟悉国家、地方有关安全生产的方针、政策和安全生产规章制度及操作规程,了解环保法规及政策,熟悉企业安全环保管理体系及流程。", + "5.  能力素质:具备较强的组织协调能力、沟通能力和团队协作精神,能够独立思考和解决问题,具备较强的责任心和执行力。", + "6.  其他要求:男性,50岁以下" + ], + "联系": { + "联系人": "孙先生/徐女士", + "联系方式": "19131592969/0315-5078734", + "Email": "hr@cclicgb.com", + "公司地址": "河北省唐山市曹妃甸工业区装备东路北侧、装备七道西侧" + } + } + } + ] + } + ] + }, + { + "id": "3793", + "name": "机械/设备维修类", + "child": [ + { + "cid": "3794", + "cname": "铸造/锻造工程师", + "position_list": [] + }, + { + "cid": "3795", + "cname": "机械工程师", + "position_list": [ + { + "position_name": " 机械工程师(有经验)", + "position_url": "/companyhome/post.aspx?comp=dHN6bmVj&id=59395", + "company_name": "唐山智能电子有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN6bmVj", + "job_info": { + "招聘专业:": "机械制造类", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "男", + "年龄要求:": "25--40岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "2-3年", + "职位类别:": "机械工程师", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2025/8/24", + "福利": [ + "企业给缴纳住房公积金", + "提供免费工作餐或餐补", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "1、熟练使用绘图软件:电子图版CAXA、AutoCAD、Solidworks等", + "2、能独立进行产品设计", + "3、本科以上机械相关专业学历,从事机械设计工作3年以上", + "福利待遇:五险一金、全勤奖、岗龄津贴、单休、免费午餐、车补" + ], + "联系": { + "联系人": "管理部", + "联系方式": "0315-3175636转6878", + "Email": "2746258025@qq.com", + "公司地址": "开平区现代工业装备园区电瓷道7号" + } + } + }, + { + "position_name": " 机械工程师", + "position_url": "/companyhome/post.aspx?comp=dHNoZW5ndG9uZ2tq&id=140384", + "company_name": "河北绿之梦环保科技有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNoZW5ndG9uZ2tq", + "job_info": { + "招聘专业:": "机械设计相关", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "男", + "年龄要求:": "28--60岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "3-5年", + "职位类别:": "机械工程师", + "外语要求:": "英语", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2025/8/15", + "福利": [ + "薪资高于同行业平均水平", + "每周有两天休息时间", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "企业给缴纳保险" + ], + "要求": [ + "1、机械、机电一体化或化工机械类专业毕业,本科以上学历。", + "2、有一年以上设备绘图经验优先。", + "3、能熟练应用CAD等多种制图工具,具有三维绘图能力。", + "4、爱岗敬业,热爱学习,勤劳朴实,具有较强的大局观。", + "5、做人低调,服从领导,在工作中敢于担当。", + "要求男士。" + ], + "联系": { + "联系人": "王女士", + "联系方式": "0315-328368818831528088", + "Email": "hblzmgf@163.com", + "公司地址": "唐山市高新区清科院奥园4号楼" + } + } + }, + { + "position_name": " 项目经理", + "position_url": "/companyhome/post.aspx?comp=dHNseWhia2p5eGdz&id=179613", + "company_name": "唐山绿源环保科技有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNseWhia2p5eGdz", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "男", + "年龄要求:": "22--50岁", + "学历要求:": "高中", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "机械工程师", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/12/18", + "福利": [ + "企业给缴纳住房公积金", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "企业给缴纳保险" + ], + "要求": [ + "任职要求", + "1、有安装施工类现场管理经验优先;", + "2、熟练操作电脑和办公软件、会开车;", + "3、能接受10-30天左右的短期出差;", + "4、沟通协调能力强,有责任心。" + ], + "联系": { + "联系人": "付经理", + "联系方式": "17731485603", + "Email": "610758629@qq.com", + "公司地址": "唐山市路南区新华副道12号世博广场互联网+双创中心7楼" + } + } + }, + { + "position_name": " 机械设计工程师", + "position_url": "/companyhome/post.aspx?comp=dHN0ejExMQ%3d%3d&id=95152", + "company_name": "唐山市天泽专用焊接设备有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN0ejExMQ%3d%3d", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "18--50岁", + "学历要求:": "大专", + "工作地区:": "路南区路南区", + "工作经验:": "2-3年", + "职位类别:": "机械工程师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/16", + "有效期限:": "2025/5/20", + "福利": [ + "薪资高于同行业平均水平", + "提供免费工作餐或餐补", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "1、有保险;", + "2、提供食宿;", + "3、市内有班车接送;", + "4、福利好,工资面议;", + "5、具有独立设计机械产品的能力,有经验者优先考虑;", + "6、有两年以上工作经验,应届毕业生免谈!", + "福利待遇:本公司提供五险,宿舍,工作餐,每天8小时工作日。" + ], + "联系": { + "联系人": "邢女士", + "联系方式": "15076539278", + "Email": "tzhanji@tzhanji.com", + "公司地址": "唐山市路南区稻地镇友谊路中段" + } + } + }, + { + "position_name": " 机械工程师", + "position_url": "/companyhome/post.aspx?comp=dHNqbWU%3d&id=581373", + "company_name": "唐山金山腾宇科技有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNqbWU%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "25--38岁", + "学历要求:": "本科", + "工作地区:": "高新开发区高新开发区", + "工作经验:": "2-3年", + "职位类别:": "机械工程师", + "外语要求:": "英语", + "外语等级:": "良好", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/14", + "有效期限:": "2025/4/15", + "福利": [], + "要求": [ + "一、任职要求:", + "1、机械类相关专业毕业,2年以上机械设计经验,熟练使用CAD设计软件进行机械图纸的设计、修改、输出。2、具有机械零部件现场测绘经验,会使用测绘工具;3、熟悉机械设备基本的加工流程,对于铆焊、机加工工艺有了解;4、具有品质管理或检验经验者优先考虑。", + "二、薪资福利:五险一金、双休、法定节假日、福利食堂。资深经验者薪资面议。" + ], + "联系": { + "联系人": "人力资源", + "联系方式": "0315-3858712", + "Email": "690788036@qq.com", + "公司地址": "唐山市高新区庆北道31号" + } + } + }, + { + "position_name": " 机械设计员", + "position_url": "/companyhome/post.aspx?comp=dGFuZ3NoYW5sb25naHVpMTIz&id=584968", + "company_name": "唐山隆汇重工科技有限公司", + "company_url": "/companyhome/company.aspx?comp=dGFuZ3NoYW5sb25naHVpMTIz", + "job_info": { + "招聘专业:": "熟练掌握CAD、SOLIDWORKS等软件", + "招聘人数:": "3人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "18--50岁", + "学历要求:": "大专", + "工作地区:": "迁西县迁西县", + "工作经验:": "1年及以下", + "职位类别:": "机械工程师", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/13", + "有效期限:": "2025/12/31", + "福利": [ + "薪资高于同行业平均水平", + "企业给缴纳住房公积金", + "企业给缴纳保险" + ], + "要求": [ + "1、全日制大专以上学历", + "2、机械设计方向专业优先", + "3、熟练掌握CAD、SOLIDWORKS等软件", + "4、吃苦耐劳,不精通可以学愿意学的", + "5、服从领导安排" + ], + "联系": { + "联系人": "杜女士", + "联系方式": "18732556889", + "Email": "492733817@qq.com", + "公司地址": "唐山市迁西县新庄子乡新庄子村" + } + } + }, + { + "position_name": " 技术人员(机械)", + "position_url": "/companyhome/post.aspx?comp=dHN6aG9uZ2Rp&id=572670", + "company_name": "唐山中地地质工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN6aG9uZ2Rp", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "男", + "年龄要求:": "25--45岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "5-8年", + "职位类别:": "机械工程师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/12", + "有效期限:": "2025/4/2", + "福利": [ + "薪资高于同行业平均水平", + "每周有两天休息时间", + "企业给缴纳住房公积金", + "有带薪年休假", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "年龄25-45周岁,中级工程师以上,有5年以上从事本专业工作经历" + ], + "联系": { + "联系人": "刘菲", + "联系方式": "0315-5266266", + "Email": "tszdzhbgs@163.com", + "公司地址": "唐山市北新西道157号" + } + } + }, + { + "position_name": " 机械工程师", + "position_url": "/companyhome/post.aspx?comp=bmxkMTIz&id=581455", + "company_name": "诺莱顿矿山机械设备制造(唐山)有限公司", + "company_url": "/companyhome/company.aspx?comp=bmxkMTIz", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "男", + "年龄要求:": "25--36岁", + "学历要求:": "本科", + "工作地区:": "丰润区丰润区", + "工作经验:": "3-5年", + "职位类别:": "机械工程师", + "外语要求:": "英语", + "外语等级:": "良好", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/2/27", + "有效期限:": "2025/4/22", + "福利": [ + "企业给缴纳住房公积金", + "有带薪年休假", + "提供免费工作餐或餐补", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "岗位职责:", + "1、负责公司相关产品机械设计和研发;", + "2、负责产品的安装、调试和试运行;", + "3、负责关键技术点的攻关工作;", + "4、负责对产品存在的问题和缺陷进行分析、改进;", + "5、负责指导生产和售后,解决产品中有关的问题,完成上级领导交代临时性工作", + "任职资与工作经历要求", + "1、年龄35岁以下,全日制本科毕业,4年以上工作经验,懂机械及液压。", + "2、熟练掌握SolidWorks  三维制图软件和CAD制图软件,并能熟练设计出图;", + "3、能独立进行或参与机械制造相关设计;", + "4、熟练使用金山、office等办公软件;", + "5、工作勤奋,动手能力强,具有良好的团队精神和沟通协作能力,工作细致严谨,责任心强;", + "6、具有良好的心理素质和抗压能力" + ], + "联系": { + "联系人": "闫女士", + "联系方式": "18633447830", + "Email": "nuolaidun@163.com", + "公司地址": "唐山市丰润区东山路7号" + } + } + }, + { + "position_name": " 机械工程师", + "position_url": "/companyhome/post.aspx?comp=dHNoYmp4&id=585106", + "company_name": "唐山市环保机械工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNoYmp4", + "job_info": { + "招聘专业:": "有机械制造行业连续5年以上工作经验", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "30--45岁", + "学历要求:": "本科", + "工作地区:": "高新开发区高新开发区", + "工作经验:": "5-8年", + "职位类别:": "机械工程师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/2/19", + "有效期限:": "2025/5/28", + "福利": [ + "每周有两天休息时间", + "提供免费工作餐或餐补", + "企业给缴纳保险" + ], + "要求": [ + "条件:", + "1、年龄:30-45岁之间;", + "2、有五年以上从事机械行业技术工作;", + "3、责任心强,性格开朗,有良好的沟通能力;", + "4、学历:全日制本科及以上学历;", + "5、收入:面议;", + "6、工作时间:周末双休,休法定节假日,上午8:00-12:00        下午13:00-17:00.", + "7、福利待遇:试用期满后签定劳动合同,交纳各种社会保险;", + "8、公司提供免费午餐;", + "只要你有能力,够用心,够努力,公司会提供让你施展才华的广阔空间。" + ], + "联系": { + "联系人": "李先生", + "联系方式": "0315-3199236", + "Email": "tepeec@126.com", + "公司地址": "开发区清华道7号" + } + } + }, + { + "position_name": " 机械工程师", + "position_url": "/companyhome/post.aspx?comp=bmxkMTIz&id=585082", + "company_name": "诺莱顿矿山机械设备制造(唐山)有限公司", + "company_url": "/companyhome/company.aspx?comp=bmxkMTIz", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "男", + "年龄要求:": "27--35岁", + "学历要求:": "本科", + "工作地区:": "新区(丰润区)新区(丰润区)", + "工作经验:": "2-3年", + "职位类别:": "机械工程师", + "外语要求:": "英语", + "外语等级:": "良好", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/2/14", + "有效期限:": "2025/4/22", + "福利": [ + "企业给缴纳住房公积金", + "有带薪年休假", + "提供免费工作餐或餐补", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "1、男士优先,年龄35岁以下,  唐山户籍;", + "2、机械设计专业,本科学历,3年以上工作经验", + "3、二维软件AutoCAD能够熟练操作。了解SOLIDWORKS  2019使用;能看懂工程图纸;", + "4、能适应短期出差,能下井,现场技术支持;", + "5、思想端正,踏实,肯干。" + ], + "联系": { + "联系人": "闫女士", + "联系方式": "18633447830", + "Email": "nld123", + "公司地址": "唐山市丰润区东山路7号" + } + } + }, + { + "position_name": " 机械工程师", + "position_url": "/companyhome/post.aspx?comp=MTUzMzMyNTU4Mjk%3d&id=584905", + "company_name": "河北西博曼电气设备有限公司", + "company_url": "/companyhome/company.aspx?comp=MTUzMzMyNTU4Mjk%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "3人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "不限", + "年龄要求:": "28--45岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "3-5年", + "职位类别:": "机械工程师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/2/8", + "有效期限:": "2025/4/13", + "福利": [ + "每周有两天休息时间", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "1、过程输送装备与控制、机械设计制造等相关专业;", + "2、3年以上工作经验,有输送机调心托辊,机械纠偏,清扫器,缓冲床设计制造经验;有力学原理设计基础的优先考虑;", + "3、熟悉机械设计、机械加工方法和工艺和成本测算管控;", + "4、熟练使用CAD及3D制图软件;", + "5、能独立完成零部件设计和部件的出图;", + "6、具有良好的沟通能力,协调能力;", + "7、具备强烈的责任心,能对技术问题,质量问题提出解决措施。", + "职位描述:", + "1.参与项目设计开发,完成机械三维图纸绘制及相关2D图出图;2.负责设计阶段样机的试制组装调试等工作;", + "3.能适应短期出差,工作认真负责,细心;", + "待遇:五险,双休,法定休,带薪年假,年底奖金,13薪等" + ], + "联系": { + "联系人": "董女士", + "联系方式": "15333255829", + "Email": "15333255829", + "公司地址": "河北省唐山市开平区电瓷道12号(开平工业园区)" + } + } + } + ] + }, + { + "cid": "3796", + "cname": "注塑工程师", + "position_list": [] + }, + { + "cid": "3797", + "cname": "机械/设备维修类" + }, + { + "cid": "3798", + "cname": "塑性加工/铸造/焊接/切割", + "position_list": [ + { + "position_name": " 钳工学徒工", + "position_url": "/companyhome/post.aspx?comp=dHNkZWhvdWppeGll&id=50016", + "company_name": "唐山德厚机械制造有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNkZWhvdWppeGll", + "job_info": { + "招聘专业:": "机械制造类", + "招聘人数:": "3人", + "工作类型:": "全职", + "月薪:": "2001--3500", + "要求性别:": "男", + "年龄要求:": "18--60岁", + "学历要求:": "中专", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "塑性加工/铸造/焊接/切割", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2024/4/23", + "有效期限:": "2025/4/29", + "福利": [], + "要求": [ + "钳工学徒工" + ], + "联系": { + "联系人": "纪经理", + "联系方式": "0315-8083599 8083596", + "Email": "dehoujixie@sina.com", + "公司地址": "唐山现代装备制造工业区电瓷道11号" + } + } + } + ] + }, + { + "cid": "3799", + "cname": "精密机械/精密仪器/仪器仪表", + "position_list": [ + { + "position_name": " 数控铣工", + "position_url": "/companyhome/post.aspx?comp=dHNqeWIxMjM0NTY%3d&id=367425", + "company_name": "唐山金裕博精密机械技术有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNqeWIxMjM0NTY%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "28--45岁", + "学历要求:": "大专", + "工作地区:": "高新开发区高新开发区", + "工作经验:": "3-5年", + "职位类别:": "精密机械/精密仪器/仪器仪表", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/10", + "有效期限:": "2025/4/19", + "福利": [ + "薪资高于同行业平均水平", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "人品好          肯吃苦          熟练掌握数控加工中心              会独立编程", + "有工作经验者优先" + ], + "联系": { + "联系人": "陈女士", + "联系方式": "13315506067", + "Email": "2533386273@qq.com", + "公司地址": "唐山高新技术开发区西昌路4号" + } + } + } + ] + }, + { + "cid": "3800", + "cname": "机械设计/制造/制图", + "position_list": [ + { + "position_name": " 机械设计工程师", + "position_url": "/companyhome/post.aspx?comp=Q0NLSjE5MTk%3d&id=569016", + "company_name": "创超科技(唐山)有限公司", + "company_url": "/companyhome/company.aspx?comp=Q0NLSjE5MTk%3d", + "job_info": { + "招聘专业:": "机械制造类", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "不限", + "年龄要求:": "25--45岁", + "学历要求:": "本科", + "工作地区:": "路北区路北区", + "工作经验:": "3-5年", + "职位类别:": "机械设计/制造/制图", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2025/4/18", + "福利": [ + "薪资高于同行业平均水平" + ], + "要求": [ + "机械设计专业", + "3年以上工作经验。", + "熟练使用solidworks、CAD软件,能独立使用solidworks软件进行三维建模,拆图。有机加工、铆焊制造等经验者优先。", + "工作地点:唐山市高新区京唐智慧港产业园区" + ], + "联系": { + "联系人": "饶经理", + "联系方式": "13315591802", + "Email": "tscckj@126.com", + "公司地址": "唐山市高新区京唐智慧港产业园区" + } + } + }, + { + "position_name": " 机械设计", + "position_url": "/companyhome/post.aspx?comp=dGZ3eg%3d%3d&id=585066", + "company_name": "唐山市金正钢板有限公司", + "company_url": "/companyhome/company.aspx?comp=dGZ3eg%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "24--50岁", + "学历要求:": "本科", + "工作地区:": "丰南区丰南区", + "工作经验:": "3-5年", + "职位类别:": "机械设计/制造/制图", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/9/2", + "福利": [], + "要求": [ + "有机械设计制造生产安装相关经验,或做过新产品开发,生产,工资面议" + ], + "联系": { + "联系人": "郑先生", + "联系方式": "13784608015", + "Email": "tsjzwz@163.com", + "公司地址": "丰南区朝阳大街" + } + } + }, + { + "position_name": " 食堂做饭大姐", + "position_url": "/companyhome/post.aspx?comp=enF6ZzY2NjY%3d&id=580452", + "company_name": "中起重工机械有限公司", + "company_url": "/companyhome/company.aspx?comp=enF6ZzY2NjY%3d", + "job_info": { + "招聘专业:": "无", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "40--60岁", + "学历要求:": "高中", + "工作地区:": "路南区路南区", + "工作经验:": "2-3年", + "职位类别:": "机械设计/制造/制图", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/17", + "有效期限:": "2026/1/17", + "福利": [ + "薪资高于同行业平均水平", + "有带薪年休假", + "提供免费工作餐或餐补", + "企业给缴纳保险" + ], + "要求": [ + "任职条件:主要负责食堂给员工做饭,一天2顿饭,踏实肯干,讲卫生,有餐馆工作经验者优先。", + "待        遇:2500元,免费中、午、晚餐" + ], + "联系": { + "联系人": "辛女士", + "联系方式": "15832545668", + "Email": "zqzg6666", + "公司地址": "河北省唐山市路南区侯边庄工业园区三号路以西警曹路以南" + } + } + }, + { + "position_name": " 技术", + "position_url": "/companyhome/post.aspx?comp=Z3VkZWppY2hlMTIz&id=585769", + "company_name": "唐山市固得机车车辆配件有限公司", + "company_url": "/companyhome/company.aspx?comp=Z3VkZWppY2hlMTIz", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "男", + "年龄要求:": "22--35岁", + "学历要求:": "大专", + "工作地区:": "丰润区丰润区", + "工作经验:": "不限", + "职位类别:": "机械设计/制造/制图", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/4", + "有效期限:": "2025/9/3", + "福利": [ + "薪资高于同行业平均水平", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "1.熟练应用PPT、WORD、EXCEL等OFFICE工具;", + "2、熟练掌握AUTOCAD制图软件;", + "3.具有团队合作精神、主动沟通的意识;", + "4、具有独立完成督办事项的能力。", + "工作地点:前期丰润区,后期古冶区" + ], + "联系": { + "联系人": "贺艳妹", + "联系方式": "18731566017", + "Email": "gudejiche@163.com", + "公司地址": "唐山市丰润区唐山轨道交通产业创新发展中心" + } + } + }, + { + "position_name": " 会计主管", + "position_url": "/companyhome/post.aspx?comp=enF6ZzY2NjY%3d&id=252442", + "company_name": "中起重工机械有限公司", + "company_url": "/companyhome/company.aspx?comp=enF6ZzY2NjY%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "25--40岁", + "学历要求:": "大专", + "工作地区:": "路南区路南区", + "工作经验:": "3-5年", + "职位类别:": "机械设计/制造/制图", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/2/26", + "有效期限:": "2026/1/17", + "福利": [ + "薪资高于同行业平均水平", + "有带薪年休假", + "提供免费工作餐或餐补", + "企业给缴纳保险" + ], + "要求": [ + "职位要求:", + "1、  独立处理各种账务", + "2.具备独立和客户沟通能力", + "3.具备随机应变的能力", + "4.  会计相关专业,大专以上学历;", + "5.认真细致、爱岗敬业,能吃苦耐劳,有良好的职业操守;", + "6.思维敏捷,接受能力强,能独立思考,善于总结工作经验;", + "良好的组织、协调、沟通能力,和团队协作精神", + "7.能熟练应用金蝶软件及办公软件;", + "岗位职责:", + "1、负责财务管理、会计核算、核算管理、成本管理、财务分析等相关财务类业务;", + "2、负责项目费用报销、材料与劳务用款审核、开票回款跟踪、核算项目利润、编制财务报表;" + ], + "联系": { + "联系人": "毕红军", + "联系方式": "15369585069", + "Email": "zqzg6666", + "公司地址": "河北省唐山市路南区侯边庄工业园区三号路以西警曹路以南" + } + } + }, + { + "position_name": " 设计工程师", + "position_url": "/companyhome/post.aspx?comp=dHNsaA%3d%3d&id=581983", + "company_name": "唐山雷浩能源技术装备有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNsaA%3d%3d", + "job_info": { + "招聘专业:": "机械制造类/能源动力类", + "招聘人数:": "3人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "不限", + "年龄要求:": "25--55岁", + "学历要求:": "大专", + "工作地区:": "路北区路北区", + "工作经验:": "3-5年", + "职位类别:": "机械设计/制造/制图", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/2/17", + "有效期限:": "2025/8/16", + "福利": [ + "薪资高于同行业平均水平", + "企业给缴纳保险" + ], + "要求": [ + "1、热能工程、煤化工、环境工程等相关专业,热解、气化、燃烧研究背景优先;", + "2、3年以上热解气化行业工作经验;", + "3、深入了解生物质热解气化、炭化工艺、设备选型;", + "4、熟练应用PPT、WORD、EXCEL等OFFICE工具;", + "5、熟练掌握AUTOCAD制图软件和Aspen等计算软件;", + "6、具备电力、化工、环保类设计院或设备厂工作经验优先;", + "7、具有团队合作精神、主动沟通的意识;", + "8、具有独立完成督办事项的能力。", + "9、能够出差" + ], + "联系": { + "联系人": "冯女士", + "联系方式": "13930518701", + "Email": "lh_bgs@163.com", + "公司地址": "唐山市路北区" + } + } + }, + { + "position_name": " 机械设计工程师", + "position_url": "/companyhome/post.aspx?comp=dHNsaw%3d%3d&id=220535", + "company_name": "唐山陆凯科技有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNsaw%3d%3d", + "job_info": { + "招聘专业:": "机械制造类", + "招聘人数:": "30人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "25--45岁", + "学历要求:": "本科", + "工作地区:": "高新开发区高新开发区", + "工作经验:": "3-5年", + "职位类别:": "机械设计/制造/制图", + "外语要求:": "英语", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/2/15", + "有效期限:": "2025/9/27", + "福利": [ + "薪资高于同行业平均水平", + "每周有两天休息时间", + "企业给缴纳住房公积金", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "职位描述:", + "1.  本科以上学历,力学,动力机械,机械设计及其自动化相关专业;", + "2.  三年以上机械设备设计开发经验,具备一定的创新能力和机械设计能力;", + "3.  熟练应用两种以上机械制图软件;  二维、三维设计软件", + "4.能够组织进行工艺、工装设计指导工作。", + "5  好的沟通协调能力与团队合作精神;", + "6.  具有较强的抗压能力及锲而不舍的钻研精神。" + ], + "联系": { + "联系人": "郭女士", + "联系方式": "0315-3859838/3859958", + "Email": "lkhr@lk-t.com.cn", + "公司地址": "唐山市高新技术开发区火炬路208号" + } + } + }, + { + "position_name": " 机械研发工程师", + "position_url": "/companyhome/post.aspx?comp=dHNsaw%3d%3d&id=220540", + "company_name": "唐山陆凯科技有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNsaw%3d%3d", + "job_info": { + "招聘专业:": "力学", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "30--45岁", + "学历要求:": "本科", + "工作地区:": "路北区路北区", + "工作经验:": "2-3年", + "职位类别:": "机械设计/制造/制图", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/2/15", + "有效期限:": "2025/9/27", + "福利": [ + "薪资高于同行业平均水平", + "每周有两天休息时间", + "企业给缴纳住房公积金", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "从事机械结构、传动系统的设计研发、器件选型等工作。机械制造、一般力学或机械力学相关专业,3年以上机械设计工作经验,熟悉机械制造工艺、加工工艺,有较强的独立工作能力,熟练应用两种以上机械制图软件;", + "需具备以下要求中两项以上技能:", + "1、5年以上相关工作能力,能独立完成中等难度以上的机械传动系统设计;", + "2、掌握机箱、机柜的设计方法,具备产品造型设计经验,能进行板金结构的设计;", + "3、熟练掌握气动元件、液压元件及系统的选型方法和应用,能独立完成气动、液压系统的设计;" + ], + "联系": { + "联系人": "郭女士", + "联系方式": "0315-3859838", + "Email": "lkhr@lk-t.com.cn", + "公司地址": "唐山市高新技术开发区火炬路208号" + } + } + }, + { + "position_name": " 制造工艺工程师", + "position_url": "/companyhome/post.aspx?comp=dHNsaw%3d%3d&id=220550", + "company_name": "唐山陆凯科技有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNsaw%3d%3d", + "job_info": { + "招聘专业:": "机械制造类", + "招聘人数:": "8人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "25--45岁", + "学历要求:": "本科", + "工作地区:": "高新开发区高新开发区", + "工作经验:": "不限", + "职位类别:": "机械设计/制造/制图", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/2/15", + "有效期限:": "2025/9/27", + "福利": [ + "薪资高于同行业平均水平", + "每周有两天休息时间", + "企业给缴纳住房公积金", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "从事机械设计制造工艺工作3年以上,工程师以上职称,能够组织进行工艺、工装设计指导工作。", + "要求统招二本以上学历" + ], + "联系": { + "联系人": "郭女士", + "联系方式": "0315-3859838", + "Email": "lkhr@lk-t.com.cn", + "公司地址": "唐山市高新技术开发区火炬路208号" + } + } + }, + { + "position_name": " 机械设计技术员", + "position_url": "/companyhome/post.aspx?comp=amlhaGVuZw%3d%3d&id=76577", + "company_name": "唐山市嘉恒实业有限公司", + "company_url": "/companyhome/company.aspx?comp=amlhaGVuZw%3d%3d", + "job_info": { + "招聘专业:": "机械制造类", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "男", + "年龄要求:": "25--50岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "2-3年", + "职位类别:": "机械设计/制造/制图", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/2/12", + "有效期限:": "2025/7/30", + "福利": [ + "薪资高于同行业平均水平", + "每周有两天休息时间", + "企业给缴纳住房公积金", + "有带薪年休假", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "渣处理工艺、技术及产品的升级、优化。熟练掌握国家技术标准,能够进行独立的设计、熟练使用绘图软件。" + ], + "联系": { + "联系人": "常女士", + "联系方式": "0315-3739002", + "Email": "msb1608@163.com", + "公司地址": "唐山市新华西道2号" + } + } + }, + { + "position_name": " 机械设计、机械自动化生产线设计", + "position_url": "/companyhome/post.aspx?comp=dHNoY2p4eno%3d&id=177702", + "company_name": "唐山市华诚机械制造有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNoY2p4eno%3d", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "18--60岁", + "学历要求:": "本科", + "工作地区:": "路北区路北区", + "工作经验:": "不限", + "职位类别:": "机械设计/制造/制图", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/2/11", + "有效期限:": "2025/5/24", + "福利": [], + "要求": [ + "机械设计制造与自动化专业,机械设计、工装设计、模具、自动化生产线设计,有两年以上工作经验优先。" + ], + "联系": { + "联系人": "李女士", + "联系方式": "0315-3717289", + "Email": "tshcjxzz@126.com", + "公司地址": "唐山市东部新兴产业园区管委会东侧100米(唐钢设备处南区对面)。" + } + } + }, + { + "position_name": " 机械制造类专业", + "position_url": "/companyhome/post.aspx?comp=dGFuZ3NoYW5uYWlzaHVu&id=118040", + "company_name": "唐山耐顺金属制品有限公司", + "company_url": "/companyhome/company.aspx?comp=dGFuZ3NoYW5uYWlzaHVu", + "job_info": { + "招聘专业:": "机械制造类", + "招聘人数:": "8人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "18--60岁", + "学历要求:": "大专", + "工作地区:": "中国中国", + "工作经验:": "不限", + "职位类别:": "机械设计/制造/制图", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/1/24", + "有效期限:": "2025/11/1", + "福利": [], + "要求": [], + "联系": { + "联系人": "李女士", + "联系方式": "0315-3242104", + "Email": "naishunjinshu@163.com", + "公司地址": "唐山市丰润区新区" + } + } + }, + { + "position_name": " 机械设计", + "position_url": "/companyhome/post.aspx?comp=dHNseWhia2p5eGdz&id=149611", + "company_name": "唐山绿源环保科技有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNseWhia2p5eGdz", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "10人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "18--60岁", + "学历要求:": "高中", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "机械设计/制造/制图", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2024/12/18", + "有效期限:": "2025/12/18", + "福利": [ + "企业给缴纳住房公积金", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "企业给缴纳保险" + ], + "要求": [ + "1.工作认真负责", + "2.有相关行业经验优先", + "3.公司提供餐补,五险一金,法定假日和年终奖等福利。", + "4.熟练使用solidworks软件" + ], + "联系": { + "联系人": "付经理", + "联系方式": "0315-6556663", + "Email": "610758629@qq.com", + "公司地址": "国矿路与东新南街交叉口东行50米" + } + } + }, + { + "position_name": " 机械设计师", + "position_url": "/companyhome/post.aspx?comp=aGV4aWFuZw%3d%3d&id=220508", + "company_name": "唐山贺祥智能科技股份有限公司", + "company_url": "/companyhome/company.aspx?comp=aGV4aWFuZw%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "男", + "年龄要求:": "25--45岁", + "学历要求:": "硕士", + "工作地区:": "丰南区丰南区", + "工作经验:": "3-5年", + "职位类别:": "机械设计/制造/制图", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/8/26", + "有效期限:": "2025/8/27", + "福利": [ + "企业给缴纳住房公积金", + "提供免费工作餐或餐补", + "企业给缴纳保险" + ], + "要求": [ + "1、具有5年以上装备制造研发设计工作经验", + "2、熟悉机、电、液等专业知识", + "3、熟练使用CAD、SolidWorks绘图软件", + "4、沟通能力强" + ], + "联系": { + "联系人": "郑女士", + "联系方式": "18733361915", + "Email": "hx8381038@163.com", + "公司地址": "丰南区大新庄镇大岭子村" + } + } + }, + { + "position_name": " 气动技术工程师", + "position_url": "/companyhome/post.aspx?comp=dHNoYmp4&id=580126", + "company_name": "唐山市环保机械工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNoYmp4", + "job_info": { + "招聘专业:": "5年以上工作经验", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "男", + "年龄要求:": "30--45岁", + "学历要求:": "本科", + "工作地区:": "高新开发区高新开发区", + "工作经验:": "5-8年", + "职位类别:": "机械设计/制造/制图", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/5/28", + "有效期限:": "2025/5/28", + "福利": [ + "每周有两天休息时间", + "提供免费工作餐或餐补", + "企业给缴纳保险" + ], + "要求": [ + "要求全日制统招本科以上学历,在本行业有5年以上工作经验。" + ], + "联系": { + "联系人": "李先生", + "联系方式": "0315-3208330", + "Email": "tepeec@126.com", + "公司地址": "开发区清华道7号" + } + } + }, + { + "position_name": " 机械制图员", + "position_url": "/companyhome/post.aspx?comp=RFJaREg%3d&id=29858", + "company_name": "唐山东润自动化工程股份有限公司", + "company_url": "/companyhome/company.aspx?comp=RFJaREg%3d", + "job_info": { + "招聘专业:": "机械制造类", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "18--60岁", + "学历要求:": "大专", + "工作地区:": "丰润区丰润区", + "工作经验:": "不限", + "职位类别:": "机械设计/制造/制图", + "外语要求:": "英语", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2024/5/17", + "有效期限:": "2025/5/19", + "福利": [], + "要求": [ + "工作职责:", + "1.负责跟进项目及产品创新", + "2.根据客户需求设计配电装置(Busbar)", + "3.根据客户新产品设计图纸、BOM、制作样品等", + "4.协助解决生产中出现的问题", + "工作要求:", + "1.三年或以上产品设计经验", + "2.熟悉五金器具、金属和塑料零件等相关产品的制作", + "3.本科学历,机械设计制造及自动化,机电一体化,机电工程等专业优先考虑", + "4.良好的英语运用水平,英语四级或以上", + "5.熟练运用机械类工具软件。", + "6.能独立完成工作", + "7.有良好的工程专业知识,吃苦耐劳,踏实工作.  熟悉防爆外壳和电器结构设计者优先考虑。" + ], + "联系": { + "联系人": "马龙印", + "联系方式": "18532655319", + "Email": "longyin1001@163.com", + "公司地址": "河北省唐山市高新区李官屯村东" + } + } + }, + { + "position_name": " 技术员(机械)", + "position_url": "/companyhome/post.aspx?comp=dGFuZ2NoZWdq&id=581369", + "company_name": "唐山道和电气设备有限公司", + "company_url": "/companyhome/company.aspx?comp=dGFuZ2NoZWdq", + "job_info": { + "招聘专业:": "工科或理科", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "18--30岁", + "学历要求:": "本科", + "工作地区:": "新区(丰润区)新区(丰润区)", + "工作经验:": "不限", + "职位类别:": "机械设计/制造/制图", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/5/6", + "有效期限:": "2025/3/21", + "福利": [ + "每周有两天休息时间", + "企业给缴纳住房公积金", + "有带薪年休假", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "企业给缴纳保险" + ], + "要求": [ + "1、岗位职责描述:(1)司机操纵台、AI标识等分管产品对外投标技术文件编制提供(2)分管产品订单项目方案设计输出编制提供(3)分管产品订单项目详细设计输出编制评定提供(4)设计项目设计总结输出编制提供", + "2、基础技能:掌握三维软件、CAD制图软件应用或电气专业设计软件应用", + "3、工资待遇:3000-7000元/月", + "4、福利待遇:试用期后有五险、1年后缴纳住房公积金。双休,公司实行5天工作制,提供工作餐(午餐),节假日福利等。", + "5、公司地址:唐山市丰润区中国动车城(北大树村北侧)" + ], + "联系": { + "联系人": "霍女士", + "联系方式": "15533459333", + "Email": "huoyuanyuan@tangchegj.com", + "公司地址": "丰润区动车城(北大树村北侧)" + } + } + } + ] + }, + { + "cid": "3801", + "cname": "机电一体化工程师", + "position_list": [ + { + "position_name": " 电气自动化工程师", + "position_url": "/companyhome/post.aspx?comp=Q0NLSjE5MTk%3d&id=579487", + "company_name": "创超科技(唐山)有限公司", + "company_url": "/companyhome/company.aspx?comp=Q0NLSjE5MTk%3d", + "job_info": { + "招聘专业:": "电气自动化", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "不限", + "年龄要求:": "25--55岁", + "学历要求:": "本科", + "工作地区:": "路北区路北区", + "工作经验:": "3-5年", + "职位类别:": "机电一体化工程师", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2025/4/18", + "福利": [ + "薪资高于同行业平均水平" + ], + "要求": [ + "主要职责:负责自动化产品的PLC编程、调试和研发设计工作。", + "任职要求:", + "1.本科及以上学历,从事过自动化产品的研发设计工作者优先;", + "2.具有丰富的西门子系列、三菱系列、施耐德系列、AB等主流PLC控制器的实际编程经验者优先;", + "3.具有丰富的上位机组态软件和主流触摸屏编程经验者优先;", + "4.能独立完成自动化产品控制程序的设计、调试和故障处理工作", + "工作地点:唐山市高新区京唐智慧港产业园区" + ], + "联系": { + "联系人": "饶经理", + "联系方式": "13315591802", + "Email": "CCKJ1919", + "公司地址": "唐山市高新区京唐智慧港产业园区" + } + } + }, + { + "position_name": " 电气设计工程师", + "position_url": "/companyhome/post.aspx?comp=dHN0ejExMQ%3d%3d&id=95154", + "company_name": "唐山市天泽专用焊接设备有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN0ejExMQ%3d%3d", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "18--50岁", + "学历要求:": "大专", + "工作地区:": "路南区路南区", + "工作经验:": "2-3年", + "职位类别:": "机电一体化工程师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/16", + "有效期限:": "2025/5/20", + "福利": [ + "薪资高于同行业平均水平", + "提供免费工作餐或餐补", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "1、有保险;", + "2、提供食宿;", + "3、市内有班车接送;", + "4、福利好,工资面议;", + "5、主要负责设备的开发、设计;PLC程序开发,变频器等的使用;", + "指导技工和技术员完成设备的装配调试、试产。", + "有经验者优先考虑(至少一年相关工作经验);", + "福利待遇:本公司提供五险,宿舍,工作餐,每天8小时工作日。" + ], + "联系": { + "联系人": "邢女士", + "联系方式": "15076539278", + "Email": "tzhanji@tzhanji.com", + "公司地址": "唐山市路南区稻地镇友谊路中段" + } + } + }, + { + "position_name": " 电气安装调试工程师(下井)", + "position_url": "/companyhome/post.aspx?comp=bmxkMTIz&id=582564", + "company_name": "诺莱顿矿山机械设备制造(唐山)有限公司", + "company_url": "/companyhome/company.aspx?comp=bmxkMTIz", + "job_info": { + "招聘专业:": "机电一体化专业 有电工操作证", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "男", + "年龄要求:": "25--50岁", + "学历要求:": "大专", + "工作地区:": "新区(丰润区)新区(丰润区)", + "工作经验:": "3-5年", + "职位类别:": "机电一体化工程师", + "外语要求:": "英语", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/8/6", + "有效期限:": "2025/4/22", + "福利": [ + "企业给缴纳住房公积金", + "有带薪年休假", + "提供免费工作餐或餐补", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "1、负责产品电气安装、调试指导;", + "2、负责关键技术点的攻关工作;", + "3、负责对产品存在的问题和缺陷进行分析、改进;", + "4、负责非标电气设备系统的设计,产品选型以及投产;", + "5、熟悉各种电器元件,例如:动力元件、执行元件、控制元件等。", + "6、负责指导生产和售后,为生产和售后服务提供技术支持并实操动手能力过硬", + "7、需要出差及频繁下井作业,动手能力强,需要在煤矿或金属矿山井下进行设备安装调试、检修、维护保养、故障排除等操作。", + "8、需要3年以上矿山工作经验。", + "工资7000元-13000元" + ], + "联系": { + "联系人": "闫女士", + "联系方式": "18633447830", + "Email": "nld123", + "公司地址": "唐山市丰润区东山路7号" + } + } + }, + { + "position_name": " 电气工程师", + "position_url": "/companyhome/post.aspx?comp=bmxkMTIz&id=582050", + "company_name": "诺莱顿矿山机械设备制造(唐山)有限公司", + "company_url": "/companyhome/company.aspx?comp=bmxkMTIz", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "25--45岁", + "学历要求:": "本科", + "工作地区:": "新区(丰润区)新区(丰润区)", + "工作经验:": "3-5年", + "职位类别:": "机电一体化工程师", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/7/30", + "有效期限:": "2025/4/22", + "福利": [ + "企业给缴纳住房公积金", + "有带薪年休假", + "提供免费工作餐或餐补", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "1、负责公司相关产品电气设计和研发;", + "2、负责产品电气安装、调试指导;", + "3、负责关键技术点的攻关工作;", + "4、负责对产品存在的问题和缺陷进行分析、改进;", + "5、负责非标电气设备系统的设计,产品选型以及投产;", + "6、熟悉各种电器元件,例如:动力元件、执行元件、控制元件等。", + "7、负责指导生产和售后,为制造和售后服务提供技术支持,完成上级领导交代的临时性工作。" + ], + "联系": { + "联系人": "闫女士", + "联系方式": "18633447830", + "Email": "nuolaidun@163.com", + "公司地址": "唐山市丰润区东山路7号" + } + } + } + ] + }, + { + "cid": "3802", + "cname": "机床工程师", + "position_list": [] + }, + { + "cid": "3803", + "cname": "液压传动工程师", + "position_list": [ + { + "position_name": " 机电设备组长、副组长", + "position_url": "/companyhome/post.aspx?comp=anhocjAwMQ%3d%3d&id=584954", + "company_name": "河北津西钢铁集团股份有限公司", + "company_url": "/companyhome/company.aspx?comp=anhocjAwMQ%3d%3d", + "job_info": { + "招聘专业:": "机械液压、电气等相关专业", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "不限", + "年龄要求:": "18--45岁", + "学历要求:": "本科", + "工作地区:": "迁西县迁西县", + "工作经验:": "5-8年", + "职位类别:": "液压传动工程师", + "外语要求:": "英语", + "外语等级:": "良好", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/1/6", + "有效期限:": "2025/4/22", + "福利": [ + "薪资高于同行业平均水平", + "企业给缴纳住房公积金", + "企业给缴纳保险" + ], + "要求": [ + "1、热轧带钢机电设备管理相关经历", + "2、中级工程师以上", + "3、条件优越者,年龄限制可放宽至55周岁以下;", + "4、薪资待遇双方面试时确定;", + "5、公司享受五险一金待遇;", + "6、英语四级以上者优先" + ], + "联系": { + "联系人": "付女士", + "联系方式": "15932500319", + "Email": "gezi.06319@163.com", + "公司地址": "迁西县三屯营镇" + } + } + }, + { + "position_name": " 液压工程师", + "position_url": "/companyhome/post.aspx?comp=anhocjAwMQ%3d%3d&id=584956", + "company_name": "河北津西钢铁集团股份有限公司", + "company_url": "/companyhome/company.aspx?comp=anhocjAwMQ%3d%3d", + "job_info": { + "招聘专业:": "液压相关专业", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "不限", + "年龄要求:": "18--45岁", + "学历要求:": "本科", + "工作地区:": "迁西县迁西县", + "工作经验:": "5-8年", + "职位类别:": "液压传动工程师", + "外语要求:": "英语", + "外语等级:": "良好", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/1/6", + "有效期限:": "2025/4/22", + "福利": [ + "薪资高于同行业平均水平", + "企业给缴纳住房公积金", + "企业给缴纳保险" + ], + "要求": [ + "1、热轧带钢厂、中厚板厂液压相关经历、中级工程师以上职称", + "2、条件优越者,年龄限制可放宽至55周岁以下;", + "3、薪资待遇双方面试时确定;", + "4、公司享受五险一金待遇;", + "5、招聘报名要求姓名、原工作单位、工作经历、技术职称、", + "工作年限、薪资要求等以邮件形式发送", + "6、英语4级以上者优先" + ], + "联系": { + "联系人": "付女", + "联系方式": "15932500319", + "Email": "gezi.06319@163.com", + "公司地址": "迁西县三屯营镇" + } + } + } + ] + }, + { + "cid": "3804", + "cname": "机械自动化/工业自动化", + "position_list": [ + { + "position_name": " 机械实习生", + "position_url": "/companyhome/post.aspx?comp=dHN6bmVj&id=580138", + "company_name": "唐山智能电子有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN6bmVj", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "18--40岁", + "学历要求:": "本科", + "工作地区:": "开平区开平区", + "工作经验:": "1年及以下", + "职位类别:": "机械自动化/工业自动化", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2025/8/24", + "福利": [ + "企业给缴纳住房公积金", + "提供免费工作餐或餐补", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "机械制造相关专业,要求已取得毕业证书,有相关工作经验;熟练使用AutoCAD、Solidworks等绘图软件", + "薪资面议", + "8:00-12:00、12:30-16:30,单休,五险一金,免费午餐", + "(工作地点在开平工业园区,公司不提供住宿,请看好距离再投递。)" + ], + "联系": { + "联系人": "郭女士", + "联系方式": "0315-3175636转6878", + "Email": "tszndz@163.com", + "公司地址": "开平区现代工业装备园区电瓷道7号" + } + } + }, + { + "position_name": " 销售", + "position_url": "/companyhome/post.aspx?comp=Q0NLSjE5MTk%3d&id=580917", + "company_name": "创超科技(唐山)有限公司", + "company_url": "/companyhome/company.aspx?comp=Q0NLSjE5MTk%3d", + "job_info": { + "招聘专业:": "机械等", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "25--45岁", + "学历要求:": "大专", + "工作地区:": "路北区路北区", + "工作经验:": "2-3年", + "职位类别:": "机械自动化/工业自动化", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2025/4/18", + "福利": [ + "薪资高于同行业平均水平" + ], + "要求": [ + "1.能出差", + "2.有2年以上的销售经验", + "3.年龄45以内", + "4.工作认真负责、吃苦耐劳", + "5.服从领导安排", + "6.工作内容和待遇可面试详谈", + "7.工作地点:唐山市高新区京唐智慧港产业园区" + ], + "联系": { + "联系人": "饶经理", + "联系方式": "13315591802", + "Email": "CCKJ1919", + "公司地址": "唐山市高新区京唐智慧港产业园区" + } + } + }, + { + "position_name": " 售后维修人员", + "position_url": "/companyhome/post.aspx?comp=bmluZ2h1YWtlamk%3d&id=579304", + "company_name": "唐山宁华科技有限公司", + "company_url": "/companyhome/company.aspx?comp=bmluZ2h1YWtlamk%3d", + "job_info": { + "招聘专业:": "机电一体化专业,应电子,工业自动化专业", + "招聘人数:": "3人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "男", + "年龄要求:": "22--40岁", + "学历要求:": "大专", + "工作地区:": "路南区路南区", + "工作经验:": "2-3年", + "职位类别:": "机械自动化/工业自动化", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/17", + "有效期限:": "2026/3/4", + "福利": [ + "薪资高于同行业平均水平", + "每周有两天休息时间", + "有带薪年休假", + "年底有奖金或13/14月薪", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "一、岗位待遇", + "1.薪酬福利:底薪4000-6000元/月(此薪酬不考核业绩,只根据能力与工作表现进行评定。只要严格按照公司的要求工作,即使没有业绩,也能获得这份基础薪酬)+提成+奖金≥7000。", + "2.岗位年收入预计在8万以上,表现突出的可年入16万以上。", + "二、核心职责", + "1.  设备安装与调试", + "负责客户现场设备的安装、调试及试运行,确保设备符合技术参数和客户需求。", + "提供操作指导,向客户演示设备基础功能及安全注意事项(*尤其针对非专业用户*)。", + "2.  售后维修与维护", + "快速响应客户报修,诊断设备故障原因,独立完成维修或更换零部件。", + "定期开展预防性维护(如润滑、校准),降低设备故障率,延长使用寿命。", + "小型公司特别项:灵活调配时间处理紧急维修,需具备多品类设备基础维修能力。", + "3.  客户服务与沟通", + "处理客户投诉,分析问题根源,协调技术或销售团队制定解决方案,跟进至闭环。", + "定期回访客户(电话/现场),记录设备运行状态,主动提供优化建议(*如节能调整*)。", + "4.  技术文档与备件管理", + "编写维修报告、操作指南等文档,归档服务记录并反馈常见问题至技术部门。", + "管理售后备件库存,提出采购计划,确保常用备件不断货(*控制成本是关键*)。", + "三、延伸职责", + "1.  跨部门协作支持", + "协助销售团队提供技术咨询,参与招投标方案中的售后服务条款制定。", + "为新客户提供定制化培训(如操作视频、简易手册),降低后续咨询压力。", + "2.  数据驱动优化", + "统计设备故障类型及频率,提炼数据反馈给供应商,推动产品改进。", + "分析客户服务成本,提出流程优化建议(如远程诊断替代部分现场服务)。", + "3.  市场情报收集", + "在服务过程中收集竞品动态(如客户对比反馈),辅助公司调整销售策略。", + "四、能力要求", + "技术能力:熟悉机电设备原理,掌握机械、电气基础维修技能,能阅读电路图。", + "软技能:善于沟通(*面对非专业客户*)、抗压能力(*应对紧急故障*)、成本意识(*备件管理*)。", + "五、其他要求", + "1、年龄23-40周岁    男性", + "2、学历:大专及以上学历,电子电路,工业自动化及机电一体化(偏电器专业)。", + "3、经验:一年及以上经验。", + "4、优先条件:1)有焊接切割行业经验的人员,2)持有电工证/机械维修证书,熟练使用CRM系统或远程指导工具。", + "六、工作时间:", + "1、弹性工作制,在公司工作时间8:00~17:30  午休12:00~13:30,", + "2、周六日轮流单双轮休,法定节假日按公司当时业务需求调剂休假。" + ], + "联系": { + "联系人": "张经理", + "联系方式": "13633155216", + "Email": "1036274660@qq.com", + "公司地址": "唐山宁华科技有限公司" + } + } + }, + { + "position_name": " 生产售后", + "position_url": "/companyhome/post.aspx?comp=aGJoeTEyMw%3d%3d&id=585065", + "company_name": "河北恒益分析仪器有限公司", + "company_url": "/companyhome/company.aspx?comp=aGJoeTEyMw%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "3人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "男", + "年龄要求:": "18--45岁", + "学历要求:": "大专", + "工作地区:": "路北区路北区", + "工作经验:": "2-3年", + "职位类别:": "机械自动化/工业自动化", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/2/11", + "有效期限:": "2025/8/19", + "福利": [ + "薪资高于同行业平均水平", + "每周有两天休息时间", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "【  工作任务】", + "1.  负责气体分析仪的安装、调试、维修和保养工作;", + "2.  为客户提供技术咨询、操作培训和故障排除服务;", + "3.  收集客户反馈,及时处理客户投诉,提升客户满意度;", + "4.  协助销售部门进行产品推广和技术支持;", + "5.  完成上级领导交办的其他工作。", + "【任职要求】", + "1.  大专及以上学历,电子、自动化、仪器仪表等相关专业优先;", + "2.  具备1年以上仪器仪表售后服务经验,有气体分析仪相关经验者优先;", + "3.  熟悉电子电路和机械原理,具备较强的动手能力和故障排查能力;", + "4.  具备良好的沟通能力和服务意识,能够独立解决问题;", + "5.  责任心强,工作积极主动" + ], + "联系": { + "联系人": "冯女士", + "联系方式": "13102618253", + "Email": "416906697@qq.com", + "公司地址": "高新区建设北路189号" + } + } + }, + { + "position_name": " 机床数控技术专业", + "position_url": "/companyhome/post.aspx?comp=dGFuZ3NoYW5uYWlzaHVu&id=118034", + "company_name": "唐山耐顺金属制品有限公司", + "company_url": "/companyhome/company.aspx?comp=dGFuZ3NoYW5uYWlzaHVu", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "18--60岁", + "学历要求:": "大专", + "工作地区:": "河北省河北", + "工作经验:": "不限", + "职位类别:": "机械自动化/工业自动化", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/1/24", + "有效期限:": "2025/11/1", + "福利": [], + "要求": [], + "联系": { + "联系人": "李女士", + "联系方式": "0315-3242104", + "Email": "naishunjinshu@163.com", + "公司地址": "唐山市丰润区新区" + } + } + }, + { + "position_name": " 机械工程师", + "position_url": "/companyhome/post.aspx?comp=anhocjAwMQ%3d%3d&id=584955", + "company_name": "河北津西钢铁集团股份有限公司", + "company_url": "/companyhome/company.aspx?comp=anhocjAwMQ%3d%3d", + "job_info": { + "招聘专业:": "机械自动化等相关专业", + "招聘人数:": "4人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "不限", + "年龄要求:": "18--45岁", + "学历要求:": "本科", + "工作地区:": "迁西县迁西县", + "工作经验:": "5-8年", + "职位类别:": "机械自动化/工业自动化", + "外语要求:": "英语", + "外语等级:": "良好", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/1/6", + "有效期限:": "2025/4/22", + "福利": [ + "薪资高于同行业平均水平", + "企业给缴纳住房公积金", + "企业给缴纳保险" + ], + "要求": [ + "1、热轧带钢厂加热、粗轧、精轧、卷取/平整机械相关经历", + "2、中级工程师及以上职称", + "3、条件优越者,年龄限制可放宽至55周岁以下;", + "4、薪资待遇双方面试时确定;", + "5、公司享受五险一金待遇;", + "6、英语四级以上者优先" + ], + "联系": { + "联系人": "付女士", + "联系方式": "15932500319", + "Email": "gezi.06319@163.com", + "公司地址": "迁西县三屯营镇" + } + } + }, + { + "position_name": " 机械设计师", + "position_url": "/companyhome/post.aspx?comp=eWluZ21laWtlamk%3d&id=583830", + "company_name": "唐山曹妃甸映美科技有限公司", + "company_url": "/companyhome/company.aspx?comp=eWluZ21laWtlamk%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "12000以上", + "要求性别:": "不限", + "年龄要求:": "25--45岁", + "学历要求:": "大专", + "工作地区:": "曹妃甸工业区曹妃甸工业区", + "工作经验:": "3-5年", + "职位类别:": "机械自动化/工业自动化", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/12/16", + "有效期限:": "2025/11/13", + "福利": [], + "要求": [ + "任职要求:", + "1.从事非标机械设计2年以上,有独立完成的项目经验", + "2.熟练使用三维软件Solidworks、CAD等机械设计软件", + "3.熟悉常用气动、机械和电气元器件的选型", + "4.熟悉自动化设备或流水线的结构设计,有丰富的非标行业或自动化行业的工作经验", + "5.熟悉施耐德,西门子,AB等主流PLC的编程及调试优先。", + "6.有电路电气设计经验,熟悉变频器、低压电器等常用元器件。", + "工作内容:", + "1.负责生产部自动化设备的管理、引进工作,确保自动化设备的稳定运行;", + "2.负责生产部自动化系统方案的设计、实施与改造,为项目的建设、安装、调试、运行提供技术支持;", + "3.定期组织操作人员进行安全、技能培训,提高自动化操作人员技术能力及素质;", + "4.根据生产工艺及使用要求,制定自动化设备改善方案并实施;", + "5.协助采购部寻找一流的自动化设备厂家,并通过引进自动化设备,提升部门自动化水平并支撑部门各项指标完成:", + "6.能与自动化设备厂家进行技术谈判,提出设计方案及自动化设备技术要求" + ], + "联系": { + "联系人": "李先生", + "联系方式": "13933407370", + "Email": "lhc@cetgroupco.com", + "公司地址": "曹妃甸工业区三加新兴产业园人民路1号" + } + } + }, + { + "position_name": " 智能产线操作员", + "position_url": "/companyhome/post.aspx?comp=aGJranR0MTE%3d&id=582870", + "company_name": "河北扩疆铁塔制造有限公司", + "company_url": "/companyhome/company.aspx?comp=aGJranR0MTE%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "10人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "20--45岁", + "学历要求:": "大专", + "工作地区:": "海港开发区海港开发区", + "工作经验:": "不限", + "职位类别:": "机械自动化/工业自动化", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/8/5", + "有效期限:": "2025/5/23", + "福利": [ + "薪资高于同行业平均水平", + "企业给缴纳保险" + ], + "要求": [ + "大专以上学历,专业不限,熟练使用电脑,熟练使用CAD,退伍军人和有智能产线经验优先" + ], + "联系": { + "联系人": "梁女士", + "联系方式": "13273517225", + "Email": "17366580405.163.com", + "公司地址": "唐山海港开发区福源小区109楼1号商业楼2层" + } + } + } + ] + }, + { + "cid": "3805", + "cname": "船舶工程师", + "position_list": [] + }, + { + "cid": "3806", + "cname": "压力容器/锅炉工程师", + "position_list": [ + { + "position_name": " 煤气发生炉操作工", + "position_url": "/companyhome/post.aspx?comp=enF6ZzY2NjY%3d&id=585143", + "company_name": "中起重工机械有限公司", + "company_url": "/companyhome/company.aspx?comp=enF6ZzY2NjY%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "12000以上", + "要求性别:": "不限", + "年龄要求:": "18--55岁", + "学历要求:": "高中", + "工作地区:": "国外其它国家", + "工作经验:": "1-2年", + "职位类别:": "压力容器/锅炉工程师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/17", + "有效期限:": "2026/1/17", + "福利": [ + "薪资高于同行业平均水平", + "有带薪年休假", + "提供免费工作餐或餐补", + "企业给缴纳保险" + ], + "要求": [ + "工作职责烘烤钢包,中包,月保底工资1:2万,三个月后增加吨钢工资2500左右,综合工资1:4至1:5万(注…1:8米单段式煤气发生炉,燃烧方式…煤)", + "电机维修工1名,工作职责,新厂协助修建电机维修房,维修,维护在线电机,月保底工资1:3万,三个月后增加吨钢工资约2千,综合工资1:5万左右。公司负担食宿,来回机票" + ], + "联系": { + "联系人": "程明森", + "联系方式": "15859116356", + "Email": "15832545668@139.com", + "公司地址": "外蒙" + } + } + } + ] + }, + { + "cid": "3807", + "cname": "工程/设备工程师", + "position_list": [ + { + "position_name": " 机电项目经理", + "position_url": "/companyhome/post.aspx?comp=dHNseWhia2p5eGdz&id=578490", + "company_name": "唐山绿源环保科技有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNseWhia2p5eGdz", + "job_info": { + "招聘专业:": "", + "招聘人数:": "3人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "男", + "年龄要求:": "26--45岁", + "学历要求:": "大专", + "工作地区:": "路北区路北区", + "工作经验:": "3-5年", + "职位类别:": "工程/设备工程师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/12/18", + "福利": [ + "企业给缴纳住房公积金", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "企业给缴纳保险" + ], + "要求": [ + "岗位职责:负责设备安装项目现场的统畴规划、进度推进、工艺把关、施工人员管理以及与甲方的沟通协调等工作;", + "要求:能够出差、会开车、有项目管理经验、组织协调能力强,懂电气、焊接等工艺;" + ], + "联系": { + "联系人": "办公室", + "联系方式": "15613494224", + "Email": "610758629@qq.com", + "公司地址": "国矿路与东新南街交叉口东行50米" + } + } + }, + { + "position_name": " 自动化工程师", + "position_url": "/companyhome/post.aspx?comp=emhwbDg4OA%3d%3d&id=585048", + "company_name": "中红普林医疗用品股份有限公司", + "company_url": "/companyhome/company.aspx?comp=emhwbDg4OA%3d%3d", + "job_info": { + "招聘专业:": "机械自动化、自动化相关专业", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "21--35岁", + "学历要求:": "硕士", + "工作地区:": "滦南县滦南县", + "工作经验:": "不限", + "职位类别:": "工程/设备工程师", + "外语要求:": "英语", + "外语等级:": "良好", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/2/9", + "有效期限:": "2025/6/20", + "福利": [], + "要求": [ + "具备坚实的自动化技术理论基础,熟练应用自动化控制系统,掌握基础的编程技术,熟悉电气和机械设备的工作原理,对于新技术有敏税的洞察力,能不断的提供技术解决方案,具备调试维护各种自动化设备的能力等。" + ], + "联系": { + "联系人": "马会敏", + "联系方式": "18633959077", + "Email": "mhm@zhonghongpulin.cn", + "公司地址": "滦南县城西工业区" + } + } + }, + { + "position_name": " 烧结设备工程师", + "position_url": "/companyhome/post.aspx?comp=anhocjAwMQ%3d%3d&id=579912", + "company_name": "河北津西钢铁集团股份有限公司", + "company_url": "/companyhome/company.aspx?comp=anhocjAwMQ%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "18--60岁", + "学历要求:": "本科", + "工作地区:": "迁西县迁西县", + "工作经验:": "不限", + "职位类别:": "工程/设备工程师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/10/14", + "有效期限:": "2025/4/22", + "福利": [ + "薪资高于同行业平均水平", + "企业给缴纳住房公积金", + "企业给缴纳保险" + ], + "要求": [ + "1、中级及以上专业技术职称或技师职业资格;", + "2、3年以上科长主任级(工程师)岗位工作经验;", + "3、对口专业全日制本科以上学历、3年以上工作经验;", + "4、在原岗位业绩突出,指标先进。", + "以上条件,具备一条即可。" + ], + "联系": { + "联系人": "王凯", + "联系方式": "15032583826", + "Email": "15032583826@163.com", + "公司地址": "迁西县三屯营镇" + } + } + }, + { + "position_name": " 资产评估助理", + "position_url": "/companyhome/post.aspx?comp=VFNZRDAx&id=214729", + "company_name": "唐山永大会计师事务所有限公司", + "company_url": "/companyhome/company.aspx?comp=VFNZRDAx", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "18--60岁", + "学历要求:": "高中", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "工程/设备工程师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/6/26", + "有效期限:": "2025/6/26", + "福利": [], + "要求": [ + "有与机电设备相关的资格证书,熟悉各种机器设备,能够为我单位评估师提供机器设备方面合理的价值意见" + ], + "联系": { + "联系人": "马先生", + "联系方式": "0315-5188198", + "Email": "1062631443@qq.com", + "公司地址": "路北区君瑞花园商业楼1门554号" + } + } + } + ] + }, + { + "cid": "3808", + "cname": "金属制品", + "position_list": [] + }, + { + "cid": "3809", + "cname": "模具工程师", + "position_list": [] + }, + { + "cid": "3810", + "cname": "传感器工程师/光电", + "position_list": [] + }, + { + "cid": "3811", + "cname": "检测技术及仪器/计量测试工程师", + "position_list": [] + }, + { + "cid": "3812", + "cname": "机械设备与汽车、摩托维修工程师", + "position_list": [] + }, + { + "cid": "3813", + "cname": "焊接工程师", + "position_list": [ + { + "position_name": " 电梯维保技工", + "position_url": "/companyhome/post.aspx?comp=eXNqZHNiMTIz&id=585796", + "company_name": "唐山市永森机电设备有限公司", + "company_url": "/companyhome/company.aspx?comp=eXNqZHNiMTIz", + "job_info": { + "招聘专业:": "", + "招聘人数:": "10人", + "工作类型:": "不限", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "18--45岁", + "学历要求:": "中专", + "工作地区:": "唐山市唐山市", + "工作经验:": "1-2年", + "职位类别:": "焊接工程师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/9/12", + "福利": [ + "薪资高于同行业平均水平", + "企业给缴纳住房公积金", + "有带薪年休假", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "待遇:基本工资  3200-4500  元,包住、午饭补贴10元/日、值班补贴  20-50  元/日.月度绩效  300-500左右(按劳分配),半年后入五险,公司工作满5年入一金;岗位职责:", + "负责电梯的紧急维修及按照相关法律法规进行日常保养,与甲方建立良好的关系以上岗位要求年龄  20-45  岁,身体健康,有较强的执行力,无纹身,好学、踏实、有责任心、上进心,有服务意识、无经验者实行老带新:" + ], + "联系": { + "联系人": "宗女士", + "联系方式": "13663353841", + "Email": "ysjdsb123", + "公司地址": "唐山市高新区大陆阳光" + } + } + }, + { + "position_name": " 钢结构、管道生产技术副经理", + "position_url": "/companyhome/post.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d&id=585804", + "company_name": "唐山天鸿建设集团有限责任公司", + "company_url": "/companyhome/company.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "男", + "年龄要求:": "30--45岁", + "学历要求:": "大专", + "工作地区:": "开平区开平区", + "工作经验:": "5-8年", + "职位类别:": "焊接工程师", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/14", + "有效期限:": "2025/8/14", + "福利": [], + "要求": [ + "1、大专以上学历", + "2、经历钢结构、管道制作安装工程8年以上工作经验;", + "3、熟悉CAD制图或tekal软件;", + "4、具备钢结构制作安装,管道设计安装技术。", + "5、具备驻外能力(唐山周边县区)" + ], + "联系": { + "联系人": "黄先生", + "联系方式": "0315-5256986", + "Email": "tianhongjianan@163.com", + "公司地址": "开平区税务庄北街" + } + } + }, + { + "position_name": " 焊接工程师(IWE证书)", + "position_url": "/companyhome/post.aspx?comp=dGFuZ3NoYW5uYWlzaHVu&id=118039", + "company_name": "唐山耐顺金属制品有限公司", + "company_url": "/companyhome/company.aspx?comp=dGFuZ3NoYW5uYWlzaHVu", + "job_info": { + "招聘专业:": "工科", + "招聘人数:": "8人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "21--35岁", + "学历要求:": "本科", + "工作地区:": "中国中国", + "工作经验:": "不限", + "职位类别:": "焊接工程师", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/1/24", + "有效期限:": "2025/11/1", + "福利": [], + "要求": [], + "联系": { + "联系人": "李女士", + "联系方式": "0315-3242104", + "Email": "naishunjinshu@163.com", + "公司地址": "唐山市丰润区新区" + } + } + } + ] + } + ] + }, + { + "id": "3870", + "name": "设计/广告类", + "child": [ + { + "cid": "3871", + "cname": "设计/广告类" + }, + { + "cid": "3872", + "cname": "广告设计/策划", + "position_list": [ + { + "position_name": " 新媒体文案策划", + "position_url": "/companyhome/post.aspx?comp=Z2pseWQxMjM%3d&id=581864", + "company_name": "唐山国际旅游岛文化旅游运营管理有限公司", + "company_url": "/companyhome/company.aspx?comp=Z2pseWQxMjM%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "3人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "22--40岁", + "学历要求:": "大专", + "工作地区:": "海港开发区海港开发区", + "工作经验:": "不限", + "职位类别:": "广告设计/策划", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/5/9", + "有效期限:": "2025/5/9", + "福利": [ + "有带薪年休假", + "提供免费工作餐或餐补", + "企业给缴纳保险" + ], + "要求": [ + "岗位职责", + "1.负责景区全部新媒体账号的管理、内容制作、质量把控、品牌推广等相关工作;", + "2.管理并采集景区新媒体素材,完成细化、归类、存档、分发等工作;", + "3.针对不同平台调性,有针对性发布内容,策划活动、提升用户活跃和引流量;", + "4.对接内外部传播资源、渠道,负责项目落地、实施、监控、优化。", + "岗位要求", + "1.全日制大专及以上学历,有新媒体运营相关行业成功经验的优先;", + "2.有一定审美能力,熟悉广告法,有效规避传播风险;", + "3.思维敏捷、洞察力强、文字功底扎实、语言表达能力强;" + ], + "联系": { + "联系人": "赵艳丽", + "联系方式": "15027655515", + "Email": "gjlyd123", + "公司地址": "国际旅游岛" + } + } + } + ] + }, + { + "cid": "3873", + "cname": "广告制作/平面设计与制作", + "position_list": [] + }, + { + "cid": "3874", + "cname": "美术/图形设计", + "position_list": [ + { + "position_name": " 安检员月五千包食宿", + "position_url": "/companyhome/post.aspx?comp=aGJ0cQ%3d%3d&id=203394", + "company_name": "河北傲卫勤务安防工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGJ0cQ%3d%3d", + "job_info": { + "招聘专业:": "化工类", + "招聘人数:": "15人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "18--24岁", + "学历要求:": "中专", + "工作地区:": "丰润区丰润区", + "工作经验:": "不限", + "职位类别:": "美术/图形设计", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2025/8/19", + "福利": [], + "要求": [ + "工作内容:", + "1、负责协助乘客上下车,检查票务,认座,乘客咨询等工作;", + "2、负责协助车站入站(出站)口检票工作;", + "3、负责协助列车、站内安全检查(包括协助,抽查旅客身份证件);", + "任职要求:", + "1.年龄:18-24周岁,高中以上学历,退伍军人优先入用(需有退伍军人证件);", + "2.身高:女1.62米以上,体重65kg以内;男1.750米以上,体重70kg以内;", + "3.身体健康、品行良好、无纹身、前科、赌博吸毒酗酒等不良行为;", + "4  无精神疾病等不能自控行为的疾病及病史。", + "5,工作时间8小时,上几休几倒班制,具体根据单位统一分配。", + "薪资福利:", + "1、基本工资+其他福利津贴,一线城市合成工资每月不低于4000-6000元,二三线城市每月3000-5000。平均年薪不低于7-10W。", + "2、每月公休4-8天,享受法定节假日三倍工资及带薪15天年假;新员工入职满一年以上享受工龄工资。", + "3、免费提供食宿、被褥、免费无线网,宿舍有空调,24小时热水澡;", + "4、有管理潜力者公司会极力培养,(班组长,队长、项目经理及以上职务,有很大晋升空间)", + "5、首签1-3年,转正统一缴纳五险(养老险、医疗险、工伤险、失业险、生育险)", + "6、公司不定期免费组织员工外出旅游、聚餐等活动;", + "岗位工作地点:", + "1,面向全国各级城市以省会城市为主相对就近调配安排。" + ], + "联系": { + "联系人": "王主任", + "联系方式": "15369505556", + "Email": "253118579@qq.com", + "公司地址": "15369505556" + } + } + } + ] + }, + { + "cid": "3875", + "cname": "工业设计/产品设计师", + "position_list": [] + }, + { + "cid": "3876", + "cname": "服装设计", + "position_list": [] + }, + { + "cid": "3877", + "cname": "家具设计师", + "position_list": [] + }, + { + "cid": "3878", + "cname": "珠宝设计师", + "position_list": [] + }, + { + "cid": "3879", + "cname": "玩具设计师", + "position_list": [] + }, + { + "cid": "3880", + "cname": "电脑绘图员", + "position_list": [ + { + "position_name": " CAD制图", + "position_url": "/companyhome/post.aspx?comp=dGZ3eg%3d%3d&id=217807", + "company_name": "唐山市金正钢板有限公司", + "company_url": "/companyhome/company.aspx?comp=dGZ3eg%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "18--45岁", + "学历要求:": "高中", + "工作地区:": "丰南区丰南区", + "工作经验:": "应届毕业生", + "职位类别:": "电脑绘图员", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/9/2", + "福利": [], + "要求": [ + "配合完成公司给予的平面设计制作任务,确保按时按质完稿,45岁以下无学历要求,可接收应届生,有钢材加工行业工作经验优先。" + ], + "联系": { + "联系人": "郑先生", + "联系方式": "13784608015", + "Email": "632289000@qq.com", + "公司地址": "丰南区朝阳大街" + } + } + } + ] + }, + { + "cid": "3881", + "cname": "产品包装设计师", + "position_list": [] + }, + { + "cid": "3882", + "cname": "形象设计师", + "position_list": [] + }, + { + "cid": "3883", + "cname": "策划总监/总经理", + "position_list": [] + }, + { + "cid": "3884", + "cname": "陈列/橱窗设计", + "position_list": [] + }, + { + "cid": "3885", + "cname": "展览设计", + "position_list": [] + }, + { + "cid": "3886", + "cname": "工业品设计师", + "position_list": [] + }, + { + "cid": "3887", + "cname": "动画/3D设计", + "position_list": [] + }, + { + "cid": "3888", + "cname": "平面设计师", + "position_list": [] + }, + { + "cid": "3889", + "cname": "排版设计员", + "position_list": [ + { + "position_name": " 排版员", + "position_url": "/companyhome/post.aspx?comp=endsag%3d%3d&id=581990", + "company_name": "中物杭萧绿建科技股份有限公司", + "company_url": "/companyhome/company.aspx?comp=endsag%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "25--40岁", + "学历要求:": "大专", + "工作地区:": "曹妃甸工业区曹妃甸工业区", + "工作经验:": "1-2年", + "职位类别:": "排版设计员", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/12/20", + "有效期限:": "2025/12/20", + "福利": [], + "要求": [ + "根据图纸的设计要求,合理地进行材料排版设计。有钢结构加工厂经验者优先。" + ], + "联系": { + "联系人": "徐女士/孙先生", + "联系方式": "0315-5078734/19131592969", + "Email": "hr@cclicgb.com", + "公司地址": "河北省唐山市曹妃甸工业区装备东路北侧、装备七道西侧" + } + } + } + ] + }, + { + "cid": "3890", + "cname": "电话采编", + "position_list": [] + }, + { + "cid": "3891", + "cname": "广告创意总监", + "position_list": [] + }, + { + "cid": "3892", + "cname": "媒介策划/管理", + "position_list": [ + { + "position_name": " 策划运营", + "position_url": "/companyhome/post.aspx?comp=eHV5dWppbmt1bi04ODg%3d&id=213285", + "company_name": "河北旭宇金坤药业有限公司", + "company_url": "/companyhome/company.aspx?comp=eHV5dWppbmt1bi04ODg%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "2001--3500", + "要求性别:": "不限", + "年龄要求:": "18--40岁", + "学历要求:": "大专", + "工作地区:": "开平区开平区", + "工作经验:": "不限", + "职位类别:": "媒介策划/管理", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/11/8", + "有效期限:": "2025/10/22", + "福利": [ + "每周有两天休息时间", + "提供免费工作餐或餐补", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "1、熟练使用ps、视频剪辑软件;", + "2、负责本公司产品的宣传、策划、推广等", + "公司福利待遇:", + "公司福利体系健全,晋升空间广阔;试用期1-3个月,工作时间:8:00-17:00,午休1小时;公司为员工缴纳五险、双休、法定假日、带薪培训、免费住宿、免费工作餐、节日礼品、员工聚餐等。" + ], + "联系": { + "联系人": "马女士", + "联系方式": "0315-3101978", + "Email": "xuyujinkun@163.com", + "公司地址": "工业园区电瓷路15号" + } + } + } + ] + }, + { + "cid": "3893", + "cname": "活动策划", + "position_list": [ + { + "position_name": " 策划主管", + "position_url": "/companyhome/post.aspx?comp=Z2pseWQxMjM%3d&id=581860", + "company_name": "唐山国际旅游岛文化旅游运营管理有限公司", + "company_url": "/companyhome/company.aspx?comp=Z2pseWQxMjM%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "25--40岁", + "学历要求:": "大专", + "工作地区:": "海港开发区海港开发区", + "工作经验:": "2-3年", + "职位类别:": "活动策划", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/5/9", + "有效期限:": "2025/5/9", + "福利": [ + "有带薪年休假", + "提供免费工作餐或餐补", + "企业给缴纳保险" + ], + "要求": [ + "岗位职责", + "1、负责包括文案、设计、推广、活动策划等相关工作。", + "2、准确了解品牌和项目定位风格,负责公司市场部创意设计工作。", + "3、独立负责项目的深度包装,平面与物料设计的形象、质量把控。", + "4、独立完成园区活动的推广文案。", + "5、做好各种渠道拓客工作,调查周边竞品项目定位、客户、包装等信息。", + "6、配合上级完成板块市场活动的执行工作。", + "岗位要求", + "1、大专以上学历,新闻学、市场营销、设计等专业。", + "2、3年以上文案、策划或公关工作经验。", + "3、熟练使用PS、AI等软件。", + "4、具备优秀的数据分析能力。", + "5、工作责任心强,耐心细致,执行力和沟通力强,具备良好的组织协调能力、学习能力和团队合作精神。", + "6、优秀的口头及书面表达能力。" + ], + "联系": { + "联系人": "赵艳丽", + "联系方式": "15027655515", + "Email": "gjlyd123", + "公司地址": "国际旅游岛" + } + } + } + ] + }, + { + "cid": "3894", + "cname": "活动执行", + "position_list": [] + }, + { + "cid": "3895", + "cname": "舞美设计", + "position_list": [] + }, + { + "cid": "3896", + "cname": "后期制作/音效师", + "position_list": [] + } + ] + }, + { + "id": "3897", + "name": "行政/人事类", + "child": [ + { + "cid": "3898", + "cname": "行政/人事类" + }, + { + "cid": "3899", + "cname": "人力资源经理", + "position_list": [ + { + "position_name": " 人事经理", + "position_url": "/companyhome/post.aspx?comp=cnNjaA%3d%3d&id=584911", + "company_name": "唐山市路南日升车行", + "company_url": "/companyhome/company.aspx?comp=cnNjaA%3d%3d", + "job_info": { + "招聘专业:": "人力资源专业", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "22--45岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "2-3年", + "职位类别:": "人力资源经理", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/12/13", + "有效期限:": "2025/6/11", + "福利": [], + "要求": [ + "月薪:4000-5500元/月  五险,月休4天,提供午餐", + "熟悉人力资源六大板块,制定薪酬,绩效,招聘等" + ], + "联系": { + "联系人": "王志国", + "联系方式": "13171505123", + "Email": "1459002770@qq.com", + "公司地址": "唐山市路南区复兴路223" + } + } + } + ] + }, + { + "cid": "3900", + "cname": "行政经理/主任/主管", + "position_list": [ + { + "position_name": " 办公室主任", + "position_url": "/companyhome/post.aspx?comp=dHN5dHpoYg%3d%3d&id=580782", + "company_name": "唐山远通实业有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN5dHpoYg%3d%3d", + "job_info": { + "招聘专业:": "文职类", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "25--40岁", + "学历要求:": "大专", + "工作地区:": "唐海县唐海县", + "工作经验:": "5-8年", + "职位类别:": "行政经理/主任/主管", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2025/4/4", + "福利": [], + "要求": [ + "岗位(人数):办公室主任1名", + "要求(岗位职责):男女不限,年龄40周岁以下,有5年以上岗位工作经验,负责办公室的日常管理工作及对外宣传工作。", + "薪酬待遇:5000元-8000元/月,交纳保险、免费健身游泳、24小时空调、无线网、标间住宿。", + "联系方式:18131531769(微信同号),tsytzhb@163.com", + "地址:唐海镇唐海路西侧" + ], + "联系": { + "联系人": "苏先生", + "联系方式": "18131531769", + "Email": "tsytzhb@163.com", + "公司地址": "曹妃甸区唐海镇唐海路西侧74-1号(如意快捷酒店西行50米)" + } + } + }, + { + "position_name": " 综合部部长/行政主管", + "position_url": "/companyhome/post.aspx?comp=dGFuZ3NoYW5zaHVzZW4%3d&id=569013", + "company_name": "唐山市树森商贸有限公司", + "company_url": "/companyhome/company.aspx?comp=dGFuZ3NoYW5zaHVzZW4%3d", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "35--45岁", + "学历要求:": "本科", + "工作地区:": "河北以外省份内蒙古", + "工作经验:": "3-5年", + "职位类别:": "行政经理/主任/主管", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/14", + "有效期限:": "2026/2/24", + "福利": [ + "薪资高于同行业平均水平", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "1.负责公司人力资源工作的招聘、培训、绩效考核、劳动纪律等人事程序或规章制度;部门内部下属人员分工、调配与管理。", + "2..负责公司员工福利、工伤、社保等事务管理。", + "3..配合其他部门做好员工思想工作,受理并及时解决员工投诉和劳动争议事宜。", + "4、负责公司人才梯队的建设与培养;", + "5、其他突发事件处理和领导交办的工作。" + ], + "联系": { + "联系人": "王绍伟", + "联系方式": "13832556767", + "Email": "tangshanchaotou", + "公司地址": "唐山海港开发区港民街(21号路)南、海港大路(12号东)(祥云大厦A109号)" + } + } + }, + { + "position_name": " EHS 经理", + "position_url": "/companyhome/post.aspx?comp=amhv&id=585145", + "company_name": "哈斯科(唐山)冶金材料科技有限公司", + "company_url": "/companyhome/company.aspx?comp=amhv", + "job_info": { + "招聘专业:": "5年以上EHS团队管理经验,有冶金行业工作经验为佳", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "25--55岁", + "学历要求:": "大专", + "工作地区:": "海港开发区海港开发区", + "工作经验:": "5-8年", + "职位类别:": "行政经理/主任/主管", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/5", + "有效期限:": "2025/3/30", + "福利": [ + "薪资高于同行业平均水平", + "每周有两天休息时间", + "企业给缴纳保险" + ], + "要求": [ + "岗位:环境、职业健康和安全", + "任职要求:", + "1.全日制大专及以上学历。", + "2.有注册安全工程师证书。", + "3.5年以上EHS团队管理经验,有冶金行业工作经验为佳。", + "4.熟悉国家及地方相关法律法规。", + "5.熟悉安全生产标准化。", + "6.有环保A级企业工作经验优先。", + "岗位职责:", + "1.依据国家安全法律法规及公司安全管理政策,落实安全生产法和安全生产管理职责;研拟策划本单位安全卫生工作计划、健康安全管理体系和企业安全标准化系统,并督导实施、稽核。", + "2.负责组织部门的环境、职业健康、安全相关制度(守则)、作业标准(SOP)、应急预案的编审、修订和教育培训等事项。", + "3.根据哈斯科总部EHS标准、法规要求和客户要求,制定和分解公司级EHS年度目标,每月制作EHS月报,定期回顾目标进展,协助和督促各部门达成绩效目标。", + "4.指导岗位危险源辨识活动,对重大危险源、危险作业的安全控制措施执行情况进行稽查;人身伤害事故的报告、调查、分析、责任检讨,并对相关改善事项的执行予以督导。其他安全卫生综合业务办理。", + "5.按照环境法规要求合规收集和处理废弃物,监督有组织排放和无组织排放合规运营。", + "6.其他安全卫生综合业务办理。", + "薪资,福利:1.2-1.5W/月,周末双休,五险一金。", + "联系电话:18516612361    (上海联通号码)  莫女士", + "邮箱mmo@harsco.com", + "工作地点:唐山市京唐港  大钢作业点" + ], + "联系": { + "联系人": "莫女士", + "联系方式": "18516612361(上海联通)号码", + "Email": "mmo@harsco.com", + "公司地址": "唐山市京唐港大钢作业点" + } + } + }, + { + "position_name": " 办公室主任", + "position_url": "/companyhome/post.aspx?comp=eHV5dWppbmt1bi04ODg%3d&id=173558", + "company_name": "河北旭宇金坤药业有限公司", + "company_url": "/companyhome/company.aspx?comp=eHV5dWppbmt1bi04ODg%3d", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "30--45岁", + "学历要求:": "大专", + "工作地区:": "开平区开平区", + "工作经验:": "不限", + "职位类别:": "行政经理/主任/主管", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2024/11/11", + "有效期限:": "2025/10/22", + "福利": [ + "每周有两天休息时间", + "提供免费工作餐或餐补", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "岗位职责:", + "1、负责公司制度制订、完善公司各项规章制度、流程的执行、跟进及汇总工作;", + "2、负责根据公司发展战略,制订人事招聘、用工、培训、人事管理、绩效考核、薪酬等制度,为人事决策提供建议和信息支持。", + "3、负责会议组织、来访接待及员工活动的组织实施;", + "4、负责档案资料管理、资产管理、车辆管理;", + "5、负责年度行政费用预算编制及日常费用管控。", + "6、完成公司领导交办的其他工作;", + "任职要求:", + "1、有5年以上行政、人力资源管理工作经验;", + "2、具备较强的文字撰写能力以及语言表达能力。", + "3、熟悉劳动法相关的政策、法律法规,了解现代企业人力资源管理模式,对人力资源管理各个职能模块业务熟练;", + "4、具备较强的执行能力,组织协调能力,人际沟通能力,领导能力,服务意识;", + "5、懂中药者优先考虑。", + "公司福利待遇:", + "公司福利体系健全,晋升空间广阔;试用期1-3个月,工作时间:8:00-17:00,午休1小时;公司为员工缴纳五险、双休、法定假日、带薪培训、免费住宿、免费工作餐、节日礼品、员工聚餐等。" + ], + "联系": { + "联系人": "马女士", + "联系方式": "0315-3101978", + "Email": "xuyujinkun@163.com", + "公司地址": "工业园区电瓷路15号" + } + } + } + ] + }, + { + "cid": "3901", + "cname": "招聘经理/主管", + "position_list": [ + { + "position_name": " 行政人事助理", + "position_url": "/companyhome/post.aspx?comp=c3p6YjU2Nzg5MA%3d%3d&id=583384", + "company_name": "中国人寿保险股份有限公司唐山分公司南新道营销服务部", + "company_url": "/companyhome/company.aspx?comp=c3p6YjU2Nzg5MA%3d%3d", + "job_info": { + "招聘专业:": "人力资源三级以上", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "30--40岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "3-5年", + "职位类别:": "招聘经理/主管", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/17", + "有效期限:": "2025/5/5", + "福利": [], + "要求": [ + "任职要求:", + "1、全日制本科及以上学历;行政人事工作经验者优先;", + "2、品行端正,有责任心,有集体荣誉感。", + "岗位描述:", + "员工招聘、职前培训、人事手续办理、考勤、绩效奖金核算、来人接待等行政人事工作,协助部门经理组织团康,各项活动通知及办公文案工作。", + "福利待遇:", + "享受企业五险", + "工作时间:", + "上午8:30-11:30", + "下午2:00-5:00", + "定期举办团康活动(聚会、旅游等),享有一对一的专业技能辅导。", + "符合以上要求,有意向者可见面详谈。" + ], + "联系": { + "联系人": "杨女士", + "联系方式": "17713173791", + "Email": "935477706@qq.com", + "公司地址": "唐山市路北区建华南里紫金大厦A号商业楼401号北区" + } + } + } + ] + }, + { + "cid": "3902", + "cname": "培训经理/主管", + "position_list": [ + { + "position_name": " 管理教师", + "position_url": "/companyhome/post.aspx?comp=eWhrZ2p0MTIzNDU%3d&id=585132", + "company_name": "河北亿和控股集团有限公司", + "company_url": "/companyhome/company.aspx?comp=eWhrZ2p0MTIzNDU%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "不限", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "25--50岁", + "学历要求:": "大专", + "工作地区:": "丰润区丰润区", + "工作经验:": "3-5年", + "职位类别:": "培训经理/主管", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/2/21", + "有效期限:": "2025/5/24", + "福利": [], + "要求": [ + "河北亿和控股集团有限公司,注册资本1600万元,公司旗下有多家培训机构,唐山市路南区铭轩职业培训学校、唐山市丰润区润兴职业培训学校、唐山海港区宏晟职业培训学校、乐亭县和美职业培训学校、乐亭县柯诺职业培训学校、滦南县弘兴职业培训学校、迁西县达瑞职业培训学校、迁安市弘达职业培训学校等。集团长期专注职业技能教育,旗下机构在职业技能培训方面具备丰富的教学及管理经验并且近三年在唐山地区取得了显著的成绩,得到了社会各界人士的认可。由于业务扩展现唐山市路南区铭轩职业培训学校、唐山市丰润区润兴职业培训学校聘任管理老师", + "岗位职责:学员资料整理、学习进度督促、完成校长安排的其他任务" + ], + "联系": { + "联系人": "王老师", + "联系方式": "0315-6666626", + "Email": "444797385@qq.com", + "公司地址": "润兴学校" + } + } + }, + { + "position_name": " 日常事务培训", + "position_url": "/companyhome/post.aspx?comp=anhocjAwMQ%3d%3d&id=584965", + "company_name": "河北津西钢铁集团股份有限公司", + "company_url": "/companyhome/company.aspx?comp=anhocjAwMQ%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "18--45岁", + "学历要求:": "大专", + "工作地区:": "迁西县迁西县", + "工作经验:": "5-8年", + "职位类别:": "培训经理/主管", + "外语要求:": "英语", + "外语等级:": "良好", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/1/6", + "有效期限:": "2025/4/22", + "福利": [ + "薪资高于同行业平均水平", + "企业给缴纳住房公积金", + "企业给缴纳保险" + ], + "要求": [ + "1、热轧带钢日常事务经历", + "2、薪资待遇双方面试时确定;", + "3、公司享受五险一金待遇;", + "4、招聘报名要求姓名、原工作单位、工作经历、技术职称、", + "工作年限、薪资要求等以微信或邮件形式发送", + "5、英语4级以上者优先" + ], + "联系": { + "联系人": "付女士", + "联系方式": "15932500319", + "Email": "gezi.06319@163.com", + "公司地址": "迁西县三屯营镇" + } + } + }, + { + "position_name": " 员工培训员工培训与发展经理", + "position_url": "/companyhome/post.aspx?comp=Z2pseWQxMjM%3d&id=581856", + "company_name": "唐山国际旅游岛文化旅游运营管理有限公司", + "company_url": "/companyhome/company.aspx?comp=Z2pseWQxMjM%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "30--50岁", + "学历要求:": "本科", + "工作地区:": "海港开发区海港开发区", + "工作经验:": "3-5年", + "职位类别:": "培训经理/主管", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/5/9", + "有效期限:": "2025/5/9", + "福利": [ + "有带薪年休假", + "提供免费工作餐或餐补", + "企业给缴纳保险" + ], + "要求": [ + "岗位职责:1.制定公司及各个部门的培训计划和培训大纲,经批准后实施;", + "2.编制、修订、完善员工培训手册,建立岗位职业发展方向,完善培训体系;", + "3.建立和实施群组培训体系,并指导各部门的落实;", + "4.按照ISO质量管理体系的要求,做好培训记录、培训考核的管理工作,追踪检验培训质量;", + "5.日常员工培训质量的检查,及时纠正;", + "6..与外部培训机构保持良好关系,并从中选择高质量的培训机构为公司提供培训;", + "7.为内部培训师提供咨询和指导,提高培训质量及效果;", + "岗位要求:", + "1.30周岁以上;", + "2.人力资源、管理或相关专业本科以上学历;", + "3.对人力资源管理事务性的工作有娴熟的处理技巧,熟悉人事工作流程,尤其岗位培训流程;", + "4.3年以上相关管理工作经验" + ], + "联系": { + "联系人": "赵艳丽", + "联系方式": "15027655515", + "Email": "gjlyd123", + "公司地址": "国际旅游岛" + } + } + } + ] + }, + { + "cid": "3903", + "cname": "薪酬福利经理/主管", + "position_list": [] + }, + { + "cid": "3904", + "cname": "绩效考核经理/主管", + "position_list": [] + }, + { + "cid": "3905", + "cname": "人力资源总监", + "position_list": [] + }, + { + "cid": "3906", + "cname": "行政总监", + "position_list": [ + { + "position_name": " 综合组组长", + "position_url": "/companyhome/post.aspx?comp=anhocjAwMQ%3d%3d&id=584964", + "company_name": "河北津西钢铁集团股份有限公司", + "company_url": "/companyhome/company.aspx?comp=anhocjAwMQ%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "不限", + "年龄要求:": "18--45岁", + "学历要求:": "大专", + "工作地区:": "迁西县迁西县", + "工作经验:": "5-8年", + "职位类别:": "行政总监", + "外语要求:": "英语", + "外语等级:": "良好", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/1/6", + "有效期限:": "2025/4/22", + "福利": [ + "薪资高于同行业平均水平", + "企业给缴纳住房公积金", + "企业给缴纳保险" + ], + "要求": [ + "1、热轧带钢综合管理经历", + "2、薪资待遇双方面试时确定;", + "3、公司享受五险一金待遇;", + "4、招聘报名要求姓名、原工作单位、工作经历、技术职称、", + "工作年限、薪资要求等以微信或邮件发送", + "5、英语4级以上者优先" + ], + "联系": { + "联系人": "付女士", + "联系方式": "15932500319", + "Email": "gezi.06319@163.com", + "公司地址": "迁西县三屯营镇" + } + } + } + ] + }, + { + "cid": "3907", + "cname": "人事专员", + "position_list": [ + { + "position_name": " 办公室文员", + "position_url": "/companyhome/post.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d&id=580052", + "company_name": "河北冀列铁路工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "20人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "女", + "年龄要求:": "18--30岁", + "学历要求:": "大专", + "工作地区:": "路南区路南区", + "工作经验:": "1-2年", + "职位类别:": "人事专员", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/5/17", + "福利": [], + "要求": [ + "一、岗位要求:", + "20-30岁,大专以上学历,无纹身疤痕,无犯罪记录。", + "二、上班时间:", + "早上8:00-12:00", + "下午2:00-6:00", + "法定节假日调休", + "三、薪资构成:底薪+提成+奖金", + "四、岗位内容:", + "1:负责人员面试(面试分为初试  复审两个环节)", + "2:负责档案管理(电脑档案录入系统基本信息管理)", + "3:负责接打电话(通知面试者面试结果以及未到者通知)", + "4:负责人员培训、考核、奖惩工作、协助有关任免行业调配工作" + ], + "联系": { + "联系人": "李先生", + "联系方式": "13184915933", + "Email": "hebeijilie123", + "公司地址": "唐山市路南区新华联广场" + } + } + } + ] + }, + { + "cid": "3908", + "cname": "行政专员/助理", + "position_list": [ + { + "position_name": " 办公室主任", + "position_url": "/companyhome/post.aspx?comp=dGFuZ3NoYW5sdXFpbmc4ODg%3d&id=585091", + "company_name": "唐山市陆清建筑工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dGFuZ3NoYW5sdXFpbmc4ODg%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "30--50岁", + "学历要求:": "大专", + "工作地区:": "路北区路北区", + "工作经验:": "3-5年", + "职位类别:": "行政专员/助理", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/2/17", + "有效期限:": "2025/5/20", + "福利": [], + "要求": [ + "岗位职责:", + "1、负责公司制度制订、完善公司各项规章制度、流程的执行、跟进及汇总工作;", + "2、负责根据公司发展战略,制订人事招聘、用工、培训、人事管理、绩效考核、薪酬等制度,为人事决策提供建议和信息支持。", + "3、负责会议组织、来访接待及员工活动的组织实施;", + "4、负责档案资料管理、资产管理、车辆管理;", + "5、负责年度行政费用预算编制及日常费用管控。", + "6、完成公司领导交办的其他工作;", + "任职要求:", + "1、有5年以上行政、人力资源管理工作经验;", + "2、具备较强的文字撰写能力以及语言表达能力。", + "3、熟悉劳动法相关的政策、法律法规,了解现代企业人力资源管理模式,对人力资源管理各个职能模块业务熟练;", + "4、具备较强的执行能力,组织协调能力,人际沟通能力,领导能力,服务意识;" + ], + "联系": { + "联系人": "李经理", + "联系方式": "17713107786", + "Email": "tangshanluqing888", + "公司地址": "河北省唐山市路北区尚座商业街" + } + } + } + ] + }, + { + "cid": "3909", + "cname": "前台接待/总机/接待生", + "position_list": [ + { + "position_name": " 策划讲解专员", + "position_url": "/companyhome/post.aspx?comp=eHV5dWppbmt1bi04ODg%3d&id=207128", + "company_name": "河北旭宇金坤药业有限公司", + "company_url": "/companyhome/company.aspx?comp=eHV5dWppbmt1bi04ODg%3d", + "job_info": { + "招聘专业:": "中药相关专业", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "2001--3500", + "要求性别:": "不限", + "年龄要求:": "18--60岁", + "学历要求:": "大专", + "工作地区:": "开平区开平区", + "工作经验:": "不限", + "职位类别:": "前台接待/总机/接待生", + "外语要求:": "不限", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2024/12/9", + "有效期限:": "2025/10/22", + "福利": [ + "每周有两天休息时间", + "提供免费工作餐或餐补", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "工作职责:", + "1.负责接待来访人员;", + "2.负责来访人员的讲解任务,根据接待方案全程陪同讲解;", + "3.对企业发展历程的讲解,产品(中药)介绍;", + "4.领导安排的其他事务。", + "任职资格:", + "1.较强的学习能力,文笔策划能力强;", + "2.形象气质佳;", + "3.对中药相关知识比较了解,中药相关专业优先考虑。", + "公司福利待遇:", + "公司福利体系健全,晋升空间广阔;试用期1-3个月,工作时间:8:00-17:00,午休1小时;公司为员工缴纳五险、双休、法定假日、带薪培训、免费住宿、免费工作餐、节日礼品、员工聚餐等。" + ], + "联系": { + "联系人": "综合部", + "联系方式": "0315-3101978", + "Email": "xuyujinkun@163.com", + "公司地址": "开平区工业园区电瓷路15号" + } + } + }, + { + "position_name": " 前台", + "position_url": "/companyhome/post.aspx?comp=cXVhbmppbmdsdnNoaQ%3d%3d&id=580817", + "company_name": "河北全景律师事务所", + "company_url": "/companyhome/company.aspx?comp=cXVhbmppbmdsdnNoaQ%3d%3d", + "job_info": { + "招聘专业:": "文秘类", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "女", + "年龄要求:": "23--32岁", + "学历要求:": "本科", + "工作地区:": "中国中国", + "工作经验:": "2-3年", + "职位类别:": "前台接待/总机/接待生", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/6/12", + "有效期限:": "2025/6/28", + "福利": [], + "要求": [ + "能力强、懂礼貌、形象好、气质佳、身高168cm以上", + "微信或电话联系15230586666" + ], + "联系": { + "联系人": "王景全", + "联系方式": "15230586666", + "Email": "15076562666@163.com", + "公司地址": "唐山市建设北路152号时代购物中心A座12层" + } + } + } + ] + }, + { + "cid": "3910", + "cname": "高级秘书", + "position_list": [ + { + "position_name": " 文员(女士)", + "position_url": "/companyhome/post.aspx?comp=dHNqbWU%3d&id=585103", + "company_name": "唐山金山腾宇科技有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNqbWU%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "女", + "年龄要求:": "30--45岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "3-5年", + "职位类别:": "高级秘书", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/4", + "有效期限:": "2025/4/15", + "福利": [], + "要求": [ + "任职要求:", + "1、会开车,驾驶技术熟练,适应出差;", + "2、会简单的电脑操作;", + "3、性格温和,有责任心,具有良好的沟通交流能力;", + "4、根据领导的安排开展工作,此岗位招聘性别要求nǚ士。", + "薪资福利待遇:面议。" + ], + "联系": { + "联系人": "人力资源", + "联系方式": "0315-3858712", + "Email": "690788036@qq.com", + "公司地址": "唐山市高新区庆北道31号" + } + } + }, + { + "position_name": " 大客户经理", + "position_url": "/companyhome/post.aspx?comp=dHNoZW5ndG9uZ2tq&id=584934", + "company_name": "河北绿之梦环保科技有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNoZW5ndG9uZ2tq", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "女", + "年龄要求:": "25--45岁", + "学历要求:": "本科", + "工作地区:": "高新开发区高新开发区", + "工作经验:": "2-3年", + "职位类别:": "高级秘书", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/2/26", + "有效期限:": "2025/8/15", + "福利": [ + "薪资高于同行业平均水平", + "每周有两天休息时间", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "企业给缴纳保险" + ], + "要求": [ + "岗位描述:", + "1.做好客户的维护和回款工作", + "2.协助总经理的工作", + "3.负责企业的宣传", + "4.负责公司市场推广拓展的策划及实施", + "5.接待来访公司的客人", + "6.领导安排的其他工作", + "任职要求:", + "1.本科及以上学历", + "2.具有良好的沟通协调能力和人际交往能力", + "3.要求女性,形象好,气质佳,热爱学习", + "4.有驾驶证,并具有熟练的驾驶技巧", + "5.能适应偶尔出差和加班", + "6.具有2年以上相应的工作经验", + "福利待遇:入五险,双休,节假日休,中午提供午餐,全勤奖" + ], + "联系": { + "联系人": "行政部", + "联系方式": "18831528088", + "Email": "hblzmgf@163.com", + "公司地址": "唐山市高新区清科园奥园4号楼8层" + } + } + } + ] + }, + { + "cid": "3911", + "cname": "ISO专员", + "position_list": [] + }, + { + "cid": "3912", + "cname": "文案策划/资料编写", + "position_list": [ + { + "position_name": " 商务策划专员", + "position_url": "/companyhome/post.aspx?comp=enAyODIzMDIy&id=577560", + "company_name": "河北中磐建设工程有限公司", + "company_url": "/companyhome/company.aspx?comp=enAyODIzMDIy", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "男", + "年龄要求:": "30--40岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "3-5年", + "职位类别:": "文案策划/资料编写", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/2/14", + "有效期限:": "2025/5/10", + "福利": [ + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "企业给缴纳保险" + ], + "要求": [ + "1、负责企业品牌、形象文案策划、包装、撰写等;", + "2、根据企业发展经营方向及需求,提供企业宣传及推广方案。", + "3、活动策划及文案撰写、照片、视频素材收集、处理等;", + "4、公司公众号维护等。", + "5、其他相关策划要求" + ], + "联系": { + "联系人": "尹女士", + "联系方式": "0315-2823022", + "Email": "tscdszyl@163.com", + "公司地址": "唐山市路南区南湖影视基地沿街商业C6栋" + } + } + } + ] + }, + { + "cid": "3913", + "cname": "人力资源主管", + "position_list": [ + { + "position_name": " 人资科长", + "position_url": "/companyhome/post.aspx?comp=YmdndDcyMDUwODk%3d&id=585024", + "company_name": "秦皇岛佰工钢铁有限公司", + "company_url": "/companyhome/company.aspx?comp=YmdndDcyMDUwODk%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "男", + "年龄要求:": "18--40岁", + "学历要求:": "本科", + "工作地区:": "河北省秦皇岛", + "工作经验:": "1-2年", + "职位类别:": "人力资源主管", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/2/7", + "有效期限:": "2026/2/6", + "福利": [ + "薪资高于同行业平均水平", + "提供免费工作餐或餐补", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "冶金工程、企业管理、工商管理等相关专业,了解钢铁工艺流程及各项指标,对成本数据具备专业分析能力,1年以上钢铁企管工作经验.。" + ], + "联系": { + "联系人": "任婷玉", + "联系方式": "17732900432", + "Email": "bggt7205089", + "公司地址": "秦皇岛市卢龙县石门镇" + } + } + }, + { + "position_name": " 人力资源主管", + "position_url": "/companyhome/post.aspx?comp=Y2hlbmZhY2FuZ2NodQ%3d%3d&id=582081", + "company_name": "唐山市辰发仓储有限公司", + "company_url": "/companyhome/company.aspx?comp=Y2hlbmZhY2FuZ2NodQ%3d%3d", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "30--50岁", + "学历要求:": "本科", + "工作地区:": "曹妃甸工业区曹妃甸工业区", + "工作经验:": "5-8年", + "职位类别:": "人力资源主管", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/7/4", + "有效期限:": "2025/7/4", + "福利": [ + "每周有两天休息时间", + "提供免费工作餐或餐补", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "本科及以上学历,人力资源管理、管理学等相关专业优先。至少5年以上人力资源工作经验,熟悉企业关于日常管理、合同管理、薪资制度、用人机制保险福利待遇、培训等方面的流程、法律法规及政策。具备出色的沟通能力和组织协调能力,能够有效管理团队和处理复杂问题。有强烈的责任心和职业道德感。" + ], + "联系": { + "联系人": "金女士", + "联系方式": "18931541432", + "Email": "87286556@qq.com", + "公司地址": "唐山市南堡开发区冀东分局三监狱西货场院内" + } + } + } + ] + }, + { + "cid": "3914", + "cname": "招聘专员/助理", + "position_list": [ + { + "position_name": " 招聘专员", + "position_url": "/companyhome/post.aspx?comp=YmVpc2hhbmc%3d&id=585104", + "company_name": "河北北上节能科技有限公司", + "company_url": "/companyhome/company.aspx?comp=YmVpc2hhbmc%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "不限", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "18--35岁", + "学历要求:": "大专", + "工作地区:": "高新开发区高新开发区", + "工作经验:": "3-5年", + "职位类别:": "招聘专员/助理", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2025/5/21", + "福利": [ + "薪资高于同行业平均水平", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "主要负责招聘事宜及其他日常行政工作,要求有相关经验,底薪4500元,工作认真踏实,听从领导安排。", + "公司福利:社保、免费食堂用餐(三餐)、免费员工宿舍(免费水电、中央空调、淋浴、wifi,生活设施齐全)、厂区新能源充电桩(快充)、室外停车场、自有健身房、练歌房、娱乐室、不定期旅游、年节福利等。每月月底最后一天发放当月工资,不拖欠。" + ], + "联系": { + "联系人": "高女士", + "联系方式": "15630586212", + "Email": "beifang1998@126.com", + "公司地址": "唐山市高新技术开发区学院北路1716号" + } + } + }, + { + "position_name": " 人事专员", + "position_url": "/companyhome/post.aspx?comp=emhwbDg4OA%3d%3d&id=582903", + "company_name": "中红普林医疗用品股份有限公司", + "company_url": "/companyhome/company.aspx?comp=emhwbDg4OA%3d%3d", + "job_info": { + "招聘专业:": "人力资源管理专业", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "男", + "年龄要求:": "18--25岁", + "学历要求:": "本科", + "工作地区:": "河北以外省份北京", + "工作经验:": "不限", + "职位类别:": "招聘专员/助理", + "外语要求:": "英语", + "外语等级:": "良好", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/9/29", + "有效期限:": "2025/6/20", + "福利": [], + "要求": [ + "负责编制制订公司人员招聘、培训计划,并监督实施,ERP等人事软件的维护及应用,人事关系的处理、档案的管理及人才培养等方案的实施,薪酬绩效管理等工作" + ], + "联系": { + "联系人": "马会敏", + "联系方式": "18633959077", + "Email": "mhm@zhonghongpulin.cn", + "公司地址": "滦南县城西工业区" + } + } + } + ] + }, + { + "cid": "3915", + "cname": "猎头顾问/助理", + "position_list": [] + }, + { + "cid": "3916", + "cname": "人力资源信息系统专员", + "position_list": [] + }, + { + "cid": "3917", + "cname": "后勤人员", + "position_list": [ + { + "position_name": " 招标代理", + "position_url": "/companyhome/post.aspx?comp=dHNsZg%3d%3d&id=246780", + "company_name": "唐山联发工程管理有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNsZg%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "3人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "25--45岁", + "学历要求:": "大专", + "工作地区:": "丰南区丰南区", + "工作经验:": "2-3年", + "职位类别:": "后勤人员", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2026/3/19", + "福利": [], + "要求": [ + "年龄在25-45岁,大专及以上工程类学历。男女不限,有相关工作经验。对招标代理和投标较为深入,会工程造价广联达软件的优先。" + ], + "联系": { + "联系人": "孙经理", + "联系方式": "0315-8192603", + "Email": "sunbo646689@126.com", + "公司地址": "丰南区光明大街金盛花园底商231、233、235、237号" + } + } + }, + { + "position_name": " 保安经理/队长", + "position_url": "/companyhome/post.aspx?comp=ZnlkYzA1MTM%3d&id=585792", + "company_name": "福悦房地产开发有限公司", + "company_url": "/companyhome/company.aspx?comp=ZnlkYzA1MTM%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "18--45岁", + "学历要求:": "中专", + "工作地区:": "丰润区丰润区", + "工作经验:": "3-5年", + "职位类别:": "后勤人员", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/15", + "有效期限:": "2025/5/17", + "福利": [ + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "中专及以上学历,有3-5年同行业同岗位管理工作经验,良好的交际沟通能力,有较强服务意识" + ], + "联系": { + "联系人": "周萍萍", + "联系方式": "18931552757", + "Email": "fydc0513", + "公司地址": "河北省唐山市丰润区新军屯镇龙潭坨村" + } + } + }, + { + "position_name": " 物业保洁", + "position_url": "/companyhome/post.aspx?comp=ZnlkYzA1MTM%3d&id=563481", + "company_name": "福悦房地产开发有限公司", + "company_url": "/companyhome/company.aspx?comp=ZnlkYzA1MTM%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "8人", + "工作类型:": "全职", + "月薪:": "2001--3500", + "要求性别:": "不限", + "年龄要求:": "18--60岁", + "学历要求:": "高中", + "工作地区:": "丰润区丰润区", + "工作经验:": "不限", + "职位类别:": "后勤人员", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/12", + "有效期限:": "2025/5/17", + "福利": [ + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "学历不限、身体健康、勤奋踏实、有楼宇保洁、家政保洁工作经验优先,薪资面议,工作地点:新军屯/丰登坞" + ], + "联系": { + "联系人": "周萍萍", + "联系方式": "18931552757", + "Email": "fydc0513", + "公司地址": "河北省唐山市丰润区新军屯镇龙潭坨村" + } + } + }, + { + "position_name": " 保洁工", + "position_url": "/companyhome/post.aspx?comp=Z2NwNzkxMTAz&id=580565", + "company_name": "河北远通建设有限责任公司", + "company_url": "/companyhome/company.aspx?comp=Z2NwNzkxMTAz", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "1人", + "工作类型:": "不限", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "18--60岁", + "学历要求:": "高中", + "工作地区:": "高新开发区高新开发区", + "工作经验:": "不限", + "职位类别:": "后勤人员", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/10", + "有效期限:": "2026/1/6", + "福利": [], + "要求": [ + "要求身体健康,任劳任怨,干净卫生,认真负责,爱岗敬业。" + ], + "联系": { + "联系人": "高女士", + "联系方式": "13832582666", + "Email": "1071017563@qq.com", + "公司地址": "高新区庆北道南侧、卫国路西" + } + } + } + ] + }, + { + "cid": "3918", + "cname": "合同管理", + "position_list": [ + { + "position_name": " 司机兼助理", + "position_url": "/companyhome/post.aspx?comp=emdscTEyMzQ%3d&id=579425", + "company_name": "唐山泽广力强汽车销售服务有限公司", + "company_url": "/companyhome/company.aspx?comp=emdscTEyMzQ%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "18--30岁", + "学历要求:": "大专", + "工作地区:": "丰润区丰润区", + "工作经验:": "不限", + "职位类别:": "合同管理", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/1/3", + "有效期限:": "2025/4/9", + "福利": [], + "要求": [ + "有驾照,会开车,有无工作经验均可,应届毕业生优先", + "福利待遇:单休,五险" + ], + "联系": { + "联系人": "吴女士", + "联系方式": "15511597600", + "Email": "2685693839@qq.com", + "公司地址": "唐山市丰润区厂前路与102国道交叉口西行500米荣川丰润汽车园,国泰纸业东侧" + } + } + } + ] + } + ] + }, + { + "id": "3919", + "name": "房地产/建筑/物业管理", + "child": [ + { + "cid": "3920", + "cname": "房地产/建筑/物业管理" + }, + { + "cid": "3921", + "cname": "结构土木/土建工程师", + "position_list": [ + { + "position_name": " 二级建造师证书使用", + "position_url": "/companyhome/post.aspx?comp=UlVJTUVJ&id=201589", + "company_name": "河北瑞美建设有限公司", + "company_url": "/companyhome/company.aspx?comp=UlVJTUVJ", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "4人", + "工作类型:": "兼职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "25--50岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "结构土木/土建工程师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2025/4/19", + "福利": [ + "薪资高于同行业平均水平", + "提供免费工作餐或餐补", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "二级建造师证书使用(需要建筑增项机电专业建造师证书),公司为其缴纳保险" + ], + "联系": { + "联系人": "王女士", + "联系方式": "18903389180", + "Email": "ruimei_js@126.com", + "公司地址": "唐山市路北区友谊路与翔云道交叉口汇金中心C座607" + } + } + }, + { + "position_name": " 技术负责人", + "position_url": "/companyhome/post.aspx?comp=YWplbHp5MTEx&id=585820", + "company_name": "唐山安居人力资源服务有限公司", + "company_url": "/companyhome/company.aspx?comp=YWplbHp5MTEx", + "job_info": { + "招聘专业:": "", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "20--55岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "结构土木/土建工程师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2025/4/18", + "福利": [ + "薪资高于同行业平均水平" + ], + "要求": [ + "岗位要求:", + "土建相关专业,高级职称以上,从事本专业工作10年以上,作为项目技术负责人(项目技术牵头人)承担过2个以上10万平米以上的项目,能够独立编制施工组织设计、熟练操作CAD等画图软件。", + "岗位职责:", + "负责组织技术人员对施工图纸进行审查,编制施工组织设计与专项施工方案,组织专家评审,负责主要工艺工法的选用,组织对各班组和项目部管理人员进行质量、技术交底,参与工程各阶段验收工作,负责组织项目部培训学习工作。" + ], + "联系": { + "联系人": "王女士", + "联系方式": "13000000000", + "Email": "ajrlzp@163.com", + "公司地址": "河北省唐山市路北区" + } + } + }, + { + "position_name": " 应届毕业生", + "position_url": "/companyhome/post.aspx?comp=aGVuZ3l1eml4dW4%3d&id=166610", + "company_name": "唐山市恒誉工程技术咨询有限责任公司", + "company_url": "/companyhome/company.aspx?comp=aGVuZ3l1eml4dW4%3d", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "3人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "20--30岁", + "学历要求:": "本科", + "工作地区:": "路北区路北区", + "工作经验:": "应届毕业生", + "职位类别:": "结构土木/土建工程师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2025/6/11", + "福利": [ + "薪资高于同行业平均水平", + "年底有奖金或13/14月薪", + "企业给缴纳保险" + ], + "要求": [ + "大学本科学历,土木工程相近专业或建筑类专业。", + "非诚勿扰。" + ], + "联系": { + "联系人": "张先生", + "联系方式": "17713188951", + "Email": "hyjdzx@126.com", + "公司地址": "唐山市路北区陶瓷文化创业中心" + } + } + }, + { + "position_name": " 检测工程师", + "position_url": "/companyhome/post.aspx?comp=aGVuZ3l1eml4dW4%3d&id=194645", + "company_name": "唐山市恒誉工程技术咨询有限责任公司", + "company_url": "/companyhome/company.aspx?comp=aGVuZ3l1eml4dW4%3d", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "18--60岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "2-3年", + "职位类别:": "结构土木/土建工程师", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2025/6/11", + "福利": [ + "薪资高于同行业平均水平", + "年底有奖金或13/14月薪", + "企业给缴纳保险" + ], + "要求": [ + "1.从事建筑工程领域的检测和鉴定业务;", + "2.大专以上学历;", + "3.有职称者优先", + "4.工作地点路北区", + "5.待遇面议;", + "6.非诚勿扰。" + ], + "联系": { + "联系人": "张先生", + "联系方式": "17713188951", + "Email": "hyjdzx@126.com", + "公司地址": "唐山市路北区陶瓷文化创业中心" + } + } + }, + { + "position_name": " 钢结构、网架设计", + "position_url": "/companyhome/post.aspx?comp=aGVuZ3l1eml4dW4%3d&id=200474", + "company_name": "唐山市恒誉工程技术咨询有限责任公司", + "company_url": "/companyhome/company.aspx?comp=aGVuZ3l1eml4dW4%3d", + "job_info": { + "招聘专业:": "土木工程相近专业", + "招聘人数:": "4人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "25--35岁", + "学历要求:": "本科", + "工作地区:": "高新开发区高新开发区", + "工作经验:": "3-5年", + "职位类别:": "结构土木/土建工程师", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2025/6/11", + "福利": [ + "薪资高于同行业平均水平", + "年底有奖金或13/14月薪", + "企业给缴纳保险" + ], + "要求": [ + "从事建建筑结构设计工作,上保险,工资5~8K。", + "专业要求:土木工程专业,等相近专业。", + "工作经验:3~5年结构设计工作经验,能够独立完成结构设计工作。", + "非诚勿扰!" + ], + "联系": { + "联系人": "张先生", + "联系方式": "17713188951", + "Email": "hyjdzx@126.com", + "公司地址": "龙泽路写字楼" + } + } + }, + { + "position_name": " 技术员", + "position_url": "/companyhome/post.aspx?comp=YWplbHp5MTEx&id=585818", + "company_name": "唐山安居人力资源服务有限公司", + "company_url": "/companyhome/company.aspx?comp=YWplbHp5MTEx", + "job_info": { + "招聘专业:": "", + "招聘人数:": "8人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "25--50岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "结构土木/土建工程师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/4/18", + "福利": [ + "薪资高于同行业平均水平" + ], + "要求": [ + "岗位要求:", + "要求建筑系列相关专业,熟悉行业法律法规和规范图集、熟练使用建筑软件CAD、品茗等建筑软件等。具有3年以上本岗位现场工作经验,具备工程师职称,参与过3个以上5万㎡建筑工程的技术管理。", + "岗位职责:", + "负责组织图纸会审、设计交底、编制施组和施工方案、技术交底;", + "负责与设计院对接设计变更、洽商等工作;", + "负责编制施工进度计划、组织测量放线、汇总影像资料;", + "协助项目经理制定进度计划,合理安排施工工序,推进项目生产进度。" + ], + "联系": { + "联系人": "王女士", + "联系方式": "13000000000", + "Email": "ajrlzp@163.com", + "公司地址": "河北省唐山市路北区" + } + } + }, + { + "position_name": " 质量员", + "position_url": "/companyhome/post.aspx?comp=YWplbHp5MTEx&id=585817", + "company_name": "唐山安居人力资源服务有限公司", + "company_url": "/companyhome/company.aspx?comp=YWplbHp5MTEx", + "job_info": { + "招聘专业:": "", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "25--50岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "结构土木/土建工程师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/4/18", + "福利": [ + "薪资高于同行业平均水平" + ], + "要求": [ + "要求建筑系列专业方向,持有质量员证书,熟悉行业法律法规,具有3年以上本岗位现场工作经验,工程师及以上职称,参与过3个以上5万㎡建筑工程的质量管理。", + "岗位职责:", + "熟悉掌握施工工艺标准及各项验收规范,熟识施工图纸,掌握绘图软件和办公软件;", + "负责施工质量的监督和管理工作,确保工程质量符合设计要求和相关规范;", + "负责编制和实施质量管理计划,进行质量检查和验收,记录质量问题并提出整改意见;", + "负责参与材料的检验和验收,监督施工过程中的质量控制措施,确保工程质量的稳定和可靠。" + ], + "联系": { + "联系人": "王女士", + "联系方式": "13000000000", + "Email": "ajrlzp@163.com", + "公司地址": "河北省唐山市路北区" + } + } + }, + { + "position_name": " 材料员 (库管)", + "position_url": "/companyhome/post.aspx?comp=YWplbHp5MTEx&id=585813", + "company_name": "唐山安居人力资源服务有限公司", + "company_url": "/companyhome/company.aspx?comp=YWplbHp5MTEx", + "job_info": { + "招聘专业:": "", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "20--50岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "3-5年", + "职位类别:": "结构土木/土建工程师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/4/18", + "福利": [ + "薪资高于同行业平均水平" + ], + "要求": [ + "岗位要求:", + "要求建筑系列专业方向,持有材料员证书,熟悉本行业法律法规及规范要求,有现场工作经验。肯吃苦、心思细腻、善于学习。", + "岗位职责:", + "负责组织月度项目材料设备采购计划的编制、审批工作,做好与集团公司材料采购的对接工作;", + "负责对进场材料的规格、质量、数量进行把关验收,并建立进场台账;", + "负责按现场平面布置图做好料具堆放工作等组织材料设备发放工作;", + "负责对周转材料进行回收统计,组织预算员、技术员统计现场材料消耗量。" + ], + "联系": { + "联系人": "王女士", + "联系方式": "13000000000", + "Email": "ajrlzp@163.com", + "公司地址": "河北省唐山市路北区" + } + } + }, + { + "position_name": " 结构工程师", + "position_url": "/companyhome/post.aspx?comp=aGVuZ3l1eml4dW4%3d&id=162067", + "company_name": "唐山市恒誉工程技术咨询有限责任公司", + "company_url": "/companyhome/company.aspx?comp=aGVuZ3l1eml4dW4%3d", + "job_info": { + "招聘专业:": "土建类", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "男", + "年龄要求:": "23--35岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "3-5年", + "职位类别:": "结构土木/土建工程师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/15", + "有效期限:": "2025/6/11", + "福利": [ + "薪资高于同行业平均水平", + "年底有奖金或13/14月薪", + "企业给缴纳保险" + ], + "要求": [ + "1.能够独立进行结构建模计算分析,绘制施工图;", + "2.能吃苦,服从安排;", + "3.月休6天;", + "4.待遇面议。" + ], + "联系": { + "联系人": "张先生", + "联系方式": "17713188951", + "Email": "hyjdzx@126.com", + "公司地址": "唐山市路北区陶瓷文化创业中心" + } + } + }, + { + "position_name": " 建筑方案设计", + "position_url": "/companyhome/post.aspx?comp=aGViZWlxaWFv&id=584223", + "company_name": "河北淇奥工程设计有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlxaWFv", + "job_info": { + "招聘专业:": "建筑学", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "18--40岁", + "学历要求:": "本科", + "工作地区:": "路北区路北区", + "工作经验:": "不限", + "职位类别:": "结构土木/土建工程师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/14", + "有效期限:": "2025/5/30", + "福利": [ + "每周有两天休息时间", + "企业给缴纳住房公积金", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "1.建筑学专业,熟练掌握相关专业综合知识,有经验者优先;", + "2.熟练使用相关软件,能够完成建筑方案设计工作;", + "3.有较强的学习能力、沟通能力和执行能力;", + "4.工作细心、主动,责任心强,    具有    团队协作精神,能够承受较强的工作压力;", + "5.服从领导工作安排,按时按量高标准完成设计任务。", + "薪资:五险一金、双休、国家法定节假日。" + ], + "联系": { + "联系人": "张先生", + "联系方式": "0315-2855059", + "Email": "aa95828@163.com", + "公司地址": "路北区" + } + } + }, + { + "position_name": " 项目技术负责人", + "position_url": "/companyhome/post.aspx?comp=dHN6aG9uZ2Rp&id=569063", + "company_name": "唐山中地地质工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN6aG9uZ2Rp", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "25--45岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "5-8年", + "职位类别:": "结构土木/土建工程师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/12", + "有效期限:": "2025/4/2", + "福利": [ + "薪资高于同行业平均水平", + "每周有两天休息时间", + "企业给缴纳住房公积金", + "有带薪年休假", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "年龄25-45周岁,地下工程或结构专业高级工程师,有8年以上从事工程施工技术管理工作经历" + ], + "联系": { + "联系人": "刘菲", + "联系方式": "0315-5266266", + "Email": "tszdzhbgs@163.com", + "公司地址": "唐山市北新西道157号" + } + } + }, + { + "position_name": " 项目技术负责人(机电安装)", + "position_url": "/companyhome/post.aspx?comp=dHN6aG9uZ2Rp&id=569062", + "company_name": "唐山中地地质工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN6aG9uZ2Rp", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "25--45岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "5-8年", + "职位类别:": "结构土木/土建工程师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/12", + "有效期限:": "2025/4/2", + "福利": [ + "薪资高于同行业平均水平", + "每周有两天休息时间", + "企业给缴纳住房公积金", + "有带薪年休假", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "年龄25-45周岁,机电相关专业高级工程师,有8年以上从事工程施工技术管理工作经历" + ], + "联系": { + "联系人": "刘菲", + "联系方式": "0315-5266266", + "Email": "tszdzhbgs@163.com", + "公司地址": "唐山市北新西道157号" + } + } + }, + { + "position_name": " 公路工程项目技术负责人", + "position_url": "/companyhome/post.aspx?comp=dHN6aG9uZ2Rp&id=569064", + "company_name": "唐山中地地质工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN6aG9uZ2Rp", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "不限", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "25--45岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "5-8年", + "职位类别:": "结构土木/土建工程师", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/12", + "有效期限:": "2025/4/2", + "福利": [ + "薪资高于同行业平均水平", + "每周有两天休息时间", + "企业给缴纳住房公积金", + "有带薪年休假", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "年龄25-45周岁,公路工程专业高级工程师,有8年以上从事工程施工技术管理工作经历" + ], + "联系": { + "联系人": "刘菲", + "联系方式": "0315-5266266", + "Email": "tszdzhbgs@163.com", + "公司地址": "唐山市北新西道157号" + } + } + }, + { + "position_name": " 市政项目技术负责人", + "position_url": "/companyhome/post.aspx?comp=dHN6aG9uZ2Rp&id=569066", + "company_name": "唐山中地地质工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN6aG9uZ2Rp", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "25--45岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "5-8年", + "职位类别:": "结构土木/土建工程师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/12", + "有效期限:": "2025/4/2", + "福利": [ + "薪资高于同行业平均水平", + "每周有两天休息时间", + "企业给缴纳住房公积金", + "有带薪年休假", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "年龄25-45周岁,市政专业高级工程师,有8年以上从事工程施工技术管理工作经历" + ], + "联系": { + "联系人": "刘菲", + "联系方式": "0315-5266266", + "Email": "tszdzhbgs@163.com", + "公司地址": "唐山市北新西道157号" + } + } + }, + { + "position_name": " 公路工程技术人员", + "position_url": "/companyhome/post.aspx?comp=dHN6aG9uZ2Rp&id=569067", + "company_name": "唐山中地地质工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN6aG9uZ2Rp", + "job_info": { + "招聘专业:": "", + "招聘人数:": "7人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "男", + "年龄要求:": "25--45岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "5-8年", + "职位类别:": "结构土木/土建工程师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/12", + "有效期限:": "2025/4/2", + "福利": [ + "薪资高于同行业平均水平", + "每周有两天休息时间", + "企业给缴纳住房公积金", + "有带薪年休假", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "年龄25-35周岁,中级工程师以上职称,公路工程施工工作经验5年以上,具有公路工程二级建造师以上资格。" + ], + "联系": { + "联系人": "刘菲", + "联系方式": "0315-5266266", + "Email": "tszdzhbgs@163.com", + "公司地址": "唐山市北新西道157号" + } + } + }, + { + "position_name": " 水工环地质工程师", + "position_url": "/companyhome/post.aspx?comp=dHN6aG9uZ2Rp&id=569069", + "company_name": "唐山中地地质工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN6aG9uZ2Rp", + "job_info": { + "招聘专业:": "水工环地质、矿产地质", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "男", + "年龄要求:": "25--45岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "5-8年", + "职位类别:": "结构土木/土建工程师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/12", + "有效期限:": "2025/4/2", + "福利": [ + "薪资高于同行业平均水平", + "每周有两天休息时间", + "企业给缴纳住房公积金", + "有带薪年休假", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "中级工程师及以上职称,具有5年以上矿产勘查或者水工环勘查工作经验,能够独立完成地质勘查或者水工环勘查项目报告编写能力" + ], + "联系": { + "联系人": "刘菲", + "联系方式": "0315-5266266", + "Email": "tszdzhbgs@163.com", + "公司地址": "唐山市北新西道157号" + } + } + }, + { + "position_name": " 检测技术人员(建工相关专业)", + "position_url": "/companyhome/post.aspx?comp=dHN6aG9uZ2Rp&id=569070", + "company_name": "唐山中地地质工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN6aG9uZ2Rp", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "男", + "年龄要求:": "25--45岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "5-8年", + "职位类别:": "结构土木/土建工程师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/12", + "有效期限:": "2025/4/2", + "福利": [ + "薪资高于同行业平均水平", + "每周有两天休息时间", + "企业给缴纳住房公积金", + "有带薪年休假", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "要求:有二建证书高级工程师及以上职称优先考虑。" + ], + "联系": { + "联系人": "刘菲", + "联系方式": "0315-5266266", + "Email": "tszdzhbgs@163.com", + "公司地址": "唐山市北新西道157号" + } + } + }, + { + "position_name": " 检测技术人员", + "position_url": "/companyhome/post.aspx?comp=dHN6aG9uZ2Rp&id=569071", + "company_name": "唐山中地地质工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN6aG9uZ2Rp", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "男", + "年龄要求:": "25--45岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "结构土木/土建工程师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/12", + "有效期限:": "2025/4/2", + "福利": [ + "薪资高于同行业平均水平", + "每周有两天休息时间", + "企业给缴纳住房公积金", + "有带薪年休假", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "要求:注册岩土工程师,有二建证书、高级工程师及以上职称优先考虑。" + ], + "联系": { + "联系人": "刘女士", + "联系方式": "0315-5266266", + "Email": "tszdzhbgs@163.com", + "公司地址": "唐山市北新西道157号" + } + } + }, + { + "position_name": " 市政技术人员", + "position_url": "/companyhome/post.aspx?comp=dHN6aG9uZ2Rp&id=569072", + "company_name": "唐山中地地质工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN6aG9uZ2Rp", + "job_info": { + "招聘专业:": "市政工程及相关专业", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "男", + "年龄要求:": "25--35岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "5-8年", + "职位类别:": "结构土木/土建工程师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/12", + "有效期限:": "2025/4/2", + "福利": [ + "薪资高于同行业平均水平", + "每周有两天休息时间", + "企业给缴纳住房公积金", + "有带薪年休假", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "要求:年龄25-35周岁,工程师以上职称,市政施工工作经验5年以上,且承担过合同金额超1亿元的项目技术负责岗位,有二建等证书先考虑。" + ], + "联系": { + "联系人": "刘菲", + "联系方式": "0315-5266266", + "Email": "tszdzhbgs@163.com", + "公司地址": "唐山市北新西道157号" + } + } + }, + { + "position_name": " 技术人员(隧道、地下工程)", + "position_url": "/companyhome/post.aspx?comp=dHN6aG9uZ2Rp&id=572672", + "company_name": "唐山中地地质工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN6aG9uZ2Rp", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "男", + "年龄要求:": "25--45岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "结构土木/土建工程师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/12", + "有效期限:": "2025/4/2", + "福利": [ + "薪资高于同行业平均水平", + "每周有两天休息时间", + "企业给缴纳住房公积金", + "有带薪年休假", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "年龄25-45周岁,中级工程师以上,有5年以上从事本专业工作经历" + ], + "联系": { + "联系人": "刘女士", + "联系方式": "0315-5266266", + "Email": "tszdzhbgs@163.com", + "公司地址": "唐山市北新西道157号" + } + } + }, + { + "position_name": " 结构设计师", + "position_url": "/companyhome/post.aspx?comp=aGViZWlxaWFv&id=584215", + "company_name": "河北淇奥工程设计有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlxaWFv", + "job_info": { + "招聘专业:": "结构及相关专业", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "22--35岁", + "学历要求:": "本科", + "工作地区:": "路北区路北区", + "工作经验:": "1-2年", + "职位类别:": "结构土木/土建工程师", + "外语要求:": "不限", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2024/12/11", + "有效期限:": "2025/5/30", + "福利": [ + "每周有两天休息时间", + "企业给缴纳住房公积金", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "1.结构专业及相关专业,熟练掌握相关专业综合知识,应届毕业生也可,有经验者优先;", + "2.熟练使用相关软件,能够完成结构设计工作;", + "3.有较强的学习能力、沟通能力和执行能力;", + "4.工作细心、主动,责任心强,  具有  团队协作精神,能够承受较强的工作压力;", + "5.服从领导工作安排,按时按量高标准完成设计任务。", + "薪资:五险一金、双休、国家法定节假日。" + ], + "联系": { + "联系人": "张先生", + "联系方式": "0315-2855059", + "Email": "aa95828@163.com", + "公司地址": "路北区" + } + } + }, + { + "position_name": " 生产经理", + "position_url": "/companyhome/post.aspx?comp=UlVJTUVJ&id=199542", + "company_name": "河北瑞美建设有限公司", + "company_url": "/companyhome/company.aspx?comp=UlVJTUVJ", + "job_info": { + "招聘专业:": "土建类", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "不限", + "年龄要求:": "30--45岁", + "学历要求:": "本科", + "工作地区:": "中国中国", + "工作经验:": "5-8年", + "职位类别:": "结构土木/土建工程师", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2024/11/28", + "有效期限:": "2025/4/19", + "福利": [ + "薪资高于同行业平均水平", + "提供免费工作餐或餐补", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "注意:项目在省外,能去的再投简历!!!", + "一、任职要求:", + "1、工民建、土木工程等相关专业大专以上学历,拥有二级及以上建造师证书或者中级以上职称证书,要求人证合一。", + "2、五年以上工程管理工作经验,能独立地编写施工组织方案和施工计划。", + "3、有较强的协调与沟通能力,有较强应变能力,能处理好施工现场各方关系。", + "4、能去外地项目工作。", + "二、岗位职责:", + "1、负责施工现场的总体布署、总平面布置。", + "2、协调劳务层的施工进度、质量、安全,执行总的施工方案;对劳务层进行考核、评价。", + "3、监督劳务层按规范施工,确保安全生产,文明施工;全面合理、有效实施方案,保持施工现场安全有效。", + "4、提出保证施工、安全、质量的措施并组织实施。", + "5、督促施工材料、设备按时进场,并处于合格状态,确保工程顺利进行。", + "6、参加工程竣工交验,负责工程完好保护。", + "7、按时准确记录施工日志,组织施工确保工程进度和质量" + ], + "联系": { + "联系人": "王女士", + "联系方式": "18903389180", + "Email": "ruimei_js@126.com", + "公司地址": "唐山市路北区友谊路与翔云道交叉口汇金中心C座607" + } + } + }, + { + "position_name": " 现场工程师", + "position_url": "/companyhome/post.aspx?comp=dHN4ZGpz&id=213600", + "company_name": "河北鑫鼎建设工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN4ZGpz", + "job_info": { + "招聘专业:": "工民建", + "招聘人数:": "10人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "男", + "年龄要求:": "35--55岁", + "学历要求:": "中专", + "工作地区:": "唐山市唐山市", + "工作经验:": "3-5年", + "职位类别:": "结构土木/土建工程师", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/11/1", + "有效期限:": "2025/9/5", + "福利": [], + "要求": [ + "1、负责施工工程质量和技术工作的总体控制;", + "2、解决施工现场的技术问题;", + "3、负责组织对重大质量事故的鉴定和处理、不定期对施工现场进行检查,随时监控工程质量,发现问题及时召集相关人员进行处理;", + "4、审批招、投标工作的相关技术资料等;", + "5、编制施工组织设计、施工方案,并制定施工工艺参数;", + "6、参加甲方组织的图纸会审、方案论证:", + "7、负责对单位工程的质量验收", + "8、负责贯彻执行国家科技法规和政策,建立健全相应的管理制度;", + "9、根据施工现场上报的自检数据及第三方检测单位的初步检测数据,对工程质量进行评估,并做出相应的应急预案;", + "10、主持交竣工技术文件资料的编制,参加交竣工验收、组织施工技术总结和学术论文的撰写并负责审核和向上级报告。", + "任职要求", + "1、中专及以上学历,建筑、土木、结构类相关专业;", + "2、具有3年以上项目工作经验;至少完整参加过一个项目;", + "3、熟悉相关工程标准、规范,熟悉工程规划设计方案、专项技术工程方案、工程技术方案的审批;", + "4、了解建筑施工企业管理制度、体系、规范、标准及相关工作的运作流程;", + "5、熟悉工程质量管理、安全管理、进度管理、成本管理、技术管理等方面工作,具备协调能力和处理解决问题的能力,有出色的组织管理才能;", + "6、有较强的职业意识、责任心、工作主动性和严谨性,并具有较强的沟通协调和团队协作能力;", + "7、有二级建造师及以上证书者优先招录。" + ], + "联系": { + "联系人": "单女士", + "联系方式": "15230935020", + "Email": "1748539045@qq.com", + "公司地址": "河北省唐山市路北区骏安园101-2号二层底商" + } + } + } + ] + }, + { + "cid": "3922", + "cname": "水电管理", + "position_list": [ + { + "position_name": " 电气工程师", + "position_url": "/companyhome/post.aspx?comp=YWplbHp5MTEx&id=585816", + "company_name": "唐山安居人力资源服务有限公司", + "company_url": "/companyhome/company.aspx?comp=YWplbHp5MTEx", + "job_info": { + "招聘专业:": "", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "25--50岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "水电管理", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/4/18", + "福利": [ + "薪资高于同行业平均水平" + ], + "要求": [ + "要求建筑电气相关专业,专科及以上学历,熟悉本专业图纸、法律法规及规范要求,具备工程师以上职称,参与过2个以上5万㎡建筑工程的电气工程管理工作。", + "岗位职责:", + "负责电气专业的施工图图纸审查;", + "负责统计项目施工用电,并督办手续办理;", + "负责本专业的施工管理工作和设计服务工作,编制本专业施工管理实施细则、施工技术交底;", + "负责机电设备的技术参数,配合集团采购部采购工作;", + "负责本专业分项工程验收及隐蔽工程验收,并保障项目正式电通电。" + ], + "联系": { + "联系人": "王女士", + "联系方式": "13000000000", + "Email": "ajrlzp@163.com", + "公司地址": "河北省唐山市路北区" + } + } + }, + { + "position_name": " 电气工程师", + "position_url": "/companyhome/post.aspx?comp=YWplbHp5MTEx&id=585811", + "company_name": "唐山安居人力资源服务有限公司", + "company_url": "/companyhome/company.aspx?comp=YWplbHp5MTEx", + "job_info": { + "招聘专业:": "", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "25--50岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "5-8年", + "职位类别:": "水电管理", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/4/18", + "福利": [ + "薪资高于同行业平均水平" + ], + "要求": [ + "要求土建类电气工程及其自动化等相关专业,熟悉本专业图纸、法律法规及规范要求,具有3年以上本岗位现场工作经验;", + "负责本专业的施工管理工作,编制本专业施工管理实施细则、施工技术交底,负责本专业分项工程验收及隐蔽工程验收等工作。" + ], + "联系": { + "联系人": "王女士", + "联系方式": "13000000000", + "Email": "ajrlzp@163.com", + "公司地址": "河北省唐山市路北区" + } + } + }, + { + "position_name": " 水电质检员", + "position_url": "/companyhome/post.aspx?comp=cHRqejg4OA%3d%3d&id=359846", + "company_name": "唐山鹏通建筑工程有限责任公司", + "company_url": "/companyhome/company.aspx?comp=cHRqejg4OA%3d%3d", + "job_info": { + "招聘专业:": "给排水、电气专业", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "男", + "年龄要求:": "30--50岁", + "学历要求:": "高中", + "工作地区:": "新区(丰润区)新区(丰润区)", + "工作经验:": "5-8年", + "职位类别:": "水电管理", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/6", + "有效期限:": "2025/5/28", + "福利": [], + "要求": [ + "要求男,年龄30-50周岁,有水电质检员工作经验5年以上,能独立完成住宅工程水电质检工作,工作认真仔细,踏实肯干,沟通能力强,团队合作能力强。" + ], + "联系": { + "联系人": "崔女士", + "联系方式": "15531516114", + "Email": "704680962@qq.com", + "公司地址": "唐山丰润区林荫路西侧(中建城304座21号)" + } + } + }, + { + "position_name": " 维修电工", + "position_url": "/companyhome/post.aspx?comp=Z2NwNzkxMTAz&id=584197", + "company_name": "河北远通建设有限责任公司", + "company_url": "/companyhome/company.aspx?comp=Z2NwNzkxMTAz", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "男", + "年龄要求:": "18--60岁", + "学历要求:": "高中", + "工作地区:": "唐山市唐山市", + "工作经验:": "3-5年", + "职位类别:": "水电管理", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/3", + "有效期限:": "2026/1/6", + "福利": [], + "要求": [ + "负责检修和维护公司园区建筑物水电系统,能够准确定位和解决各种水电问题,确保设施的正常运作,定期巡检水电设施,检查管道、线路、插座、开关等设备的工作情况,发现问题,及时采取措施修复。" + ], + "联系": { + "联系人": "王女士", + "联系方式": "18231553983", + "Email": "1071017563@qq.com", + "公司地址": "高新区庆北道南侧、卫国路西" + } + } + }, + { + "position_name": " 电气工程师", + "position_url": "/companyhome/post.aspx?comp=aGViZWlxaWFv&id=584225", + "company_name": "河北淇奥工程设计有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlxaWFv", + "job_info": { + "招聘专业:": "电气自动化", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "22--35岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "2-3年", + "职位类别:": "水电管理", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/1/15", + "有效期限:": "2025/5/30", + "福利": [ + "每周有两天休息时间", + "企业给缴纳住房公积金", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "电气工程师,待遇面议", + "1.电气专业及相关专业,熟练掌握相关专业综合知识,有经验者优先;", + "2.熟练使用相关软件,能够完成电气设计工作;", + "3.有较强的学习能力、沟通能力和执行能力;", + "4.工作细心、主动,责任心强,  具有  团队协作精神,能够承受较强的工作压力;", + "5.服从领导工作安排,按时按量高标准完成设计任务。", + "薪资:五险一金、双休、国家法定节假日。" + ], + "联系": { + "联系人": "张先生", + "联系方式": "0315-2855059", + "Email": "aa95828@163.com", + "公司地址": "路北区" + } + } + }, + { + "position_name": " 电力工程师", + "position_url": "/companyhome/post.aspx?comp=c2hlamk%3d&id=556275", + "company_name": "河北昊宇建筑设计有限公司", + "company_url": "/companyhome/company.aspx?comp=c2hlamk%3d", + "job_info": { + "招聘专业:": "自动化、电气工程及其自动化", + "招聘人数:": "3人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "18--60岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "水电管理", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/5/29", + "有效期限:": "2025/6/1", + "福利": [], + "要求": [ + "专业:自动化、电气工程及其自动化等相关专业", + "学历:本科及以上", + "经验:从事电力设计,有经验者优先录用", + "福利待遇:六险一金,双休,法定假期,饭补,提供住宿,定期组织体检,员工福利等" + ], + "联系": { + "联系人": "李女士", + "联系方式": "15511965159", + "Email": "sheji2008sheji@163.com", + "公司地址": "唐山市高新区建设北路101号高科总部大厦12层" + } + } + } + ] + }, + { + "cid": "3923", + "cname": "工程预决算/造价师", + "position_list": [ + { + "position_name": " 工程造价人员", + "position_url": "/companyhome/post.aspx?comp=dHNsZg%3d%3d&id=159450", + "company_name": "唐山联发工程管理有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNsZg%3d%3d", + "job_info": { + "招聘专业:": "理科", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "25--45岁", + "学历要求:": "大专", + "工作地区:": "丰南区丰南区", + "工作经验:": "不限", + "职位类别:": "工程预决算/造价师", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2026/3/19", + "福利": [], + "要求": [ + "工程造价咨询业务的相关工作,概算、预算、决算、审计等。有造价工程师证书的优先。有安装专业工作经验者优先。有招标代理工作经验优先" + ], + "联系": { + "联系人": "孙经理", + "联系方式": "0315-8192603", + "Email": "sunbo646689@126.com", + "公司地址": "丰南区光明大街金盛花园底商231、233、235、237号" + } + } + }, + { + "position_name": " 工程预结算、造价师", + "position_url": "/companyhome/post.aspx?comp=dHN5dHpoYg%3d%3d&id=585085", + "company_name": "唐山远通实业有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN5dHpoYg%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "35--55岁", + "学历要求:": "大专", + "工作地区:": "唐海县唐海县", + "工作经验:": "10年以上", + "职位类别:": "工程预决算/造价师", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2025/4/4", + "福利": [], + "要求": [ + "熟悉了解现行法规政策,适应施工现场环境,精通各工种的预算规则," + ], + "联系": { + "联系人": "陈经理", + "联系方式": "18131531788", + "Email": "tsytzhb@163.com", + "公司地址": "曹妃甸区唐海镇唐海路西侧74-1号(如意快捷酒店西行50米)" + } + } + }, + { + "position_name": " 预算员", + "position_url": "/companyhome/post.aspx?comp=YWplbHp5MTEx&id=585810", + "company_name": "唐山安居人力资源服务有限公司", + "company_url": "/companyhome/company.aspx?comp=YWplbHp5MTEx", + "job_info": { + "招聘专业:": "", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "25--50岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "工程预决算/造价师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/4/18", + "福利": [ + "薪资高于同行业平均水平" + ], + "要求": [ + "岗位要求;", + "要求工程预算、工程造价等专业方向,熟悉本行业法律法规及规范要求,熟练运用广联达建筑等软件,对河北省定额精通,具有2-3年工地现场土建预算工作经验。", + "岗位职责;", + "负责编制项目工程量清单,按月形象进度编制已完工程量,制定、审核材料采购计划等。" + ], + "联系": { + "联系人": "王女士", + "联系方式": "13000000000", + "Email": "ajrlzp@163.com", + "公司地址": "河北省唐山市路北区" + } + } + }, + { + "position_name": " 安装预算员", + "position_url": "/companyhome/post.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d&id=583457", + "company_name": "唐山天鸿建设集团有限责任公司", + "company_url": "/companyhome/company.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "不限", + "年龄要求:": "30--45岁", + "学历要求:": "大专", + "工作地区:": "开平区开平区", + "工作经验:": "5-8年", + "职位类别:": "工程预决算/造价师", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/14", + "有效期限:": "2025/8/14", + "福利": [], + "要求": [ + "岗位职责:", + "1、负责编制安装工程的科研估算、概算、施工图预、结算。", + "2、审核工程结算、进度支付、结算审计。", + "3、编制工程招标清单、投标报价。", + "4、协助财务进行成本核算。", + "5、根据现场签证及变更及时调整预算。", + "6、在工程投标阶段,及时、准确做出预算,提供报价依据。", + "7、掌握准确的’市场价格和预算价格,及时调整预、结算。", + "8、参与投标文件、标书编制和合同评审,收集各工程的造价资料,为投标提供依据。", + "9、掌握土建工程的施工进度,依据合同约定计算完成工程量产值,审核合同履约进度款额。", + "10、收集并存档土建工程设计变更、洽商、现场签证及材料价格文件。", + "任职要求:", + "1、30-45岁,大专以上学历,预算相关专业,本科以上学历优先。", + "2、8年以上安装预算工作经验,精通消防、通风、机电、给排水、暖通专业。", + "3、掌握及应用土建工程施工及验收相关规范、标准、图集。", + "4、熟练使用OFFICE、CAD(或TEKLA)以及工程造价等办公软件。", + "5、熟悉项目管理规范、法规。" + ], + "联系": { + "联系人": "黄先生", + "联系方式": "0315-5256986、18903150558", + "Email": "tianhongjianan@163.com", + "公司地址": "开平区税务庄北街" + } + } + }, + { + "position_name": " 成本预算员", + "position_url": "/companyhome/post.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d&id=585801", + "company_name": "唐山天鸿建设集团有限责任公司", + "company_url": "/companyhome/company.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "不限", + "年龄要求:": "35--45岁", + "学历要求:": "大专", + "工作地区:": "开平区开平区", + "工作经验:": "5-8年", + "职位类别:": "工程预决算/造价师", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/14", + "有效期限:": "2025/8/14", + "福利": [], + "要求": [ + "工作内容:", + "1、根据项目生产需用计划,负责市场物资采购的询价、批价工作。", + "2、负责市场部和经营部的商务投标和工程造价预算各项费用的询价工作。", + "2、根据需求走访市场,了解市场动态,拓展供应渠道。", + "3、不定期对现有供应商进行评价及供应商名录更新,负责新供应商推荐和筛选工作。", + "4、协助副部长根据需要组织公司物资采购的招投标工作。", + "岗位要求:", + "1、30-45岁,大专及以上学历,工程类专业,本科以上学历优先。", + "2、行业工作5年以上,同岗位工作经验3年以上。", + "3、具备一定的物资方面专业知识,爱岗敬业、勤奋好学、积极进取。", + "3、具有良好的沟通协调能力及业务洽谈能力。", + "4、能接受适量加班和低频短期出差。" + ], + "联系": { + "联系人": "黄先生", + "联系方式": "0315-5256986", + "Email": "tianhongjianan@163.com", + "公司地址": "开平区税务庄北街" + } + } + }, + { + "position_name": " 预算员", + "position_url": "/companyhome/post.aspx?comp=dGlhbmppbnNoZW5neXVhbjAwMQ%3d%3d&id=585803", + "company_name": "天津晟原建筑工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dGlhbmppbnNoZW5neXVhbjAwMQ%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "男", + "年龄要求:": "18--60岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "3-5年", + "职位类别:": "工程预决算/造价师", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/13", + "有效期限:": "2025/6/13", + "福利": [], + "要求": [ + "熟练掌握广联达计量相关软件,对市场有一定的了解,有机电、消防预算专业经验者优先" + ], + "联系": { + "联系人": "马莉", + "联系方式": "15097500278", + "Email": "tianjinshengyuan001", + "公司地址": "唐山市路北区梧桐大道梧桐苑底商" + } + } + }, + { + "position_name": " 土建/市政预算员", + "position_url": "/companyhome/post.aspx?comp=dHN4ZGpz&id=213607", + "company_name": "河北鑫鼎建设工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN4ZGpz", + "job_info": { + "招聘专业:": "工程造价或建筑类相关专业", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "30--55岁", + "学历要求:": "中专", + "工作地区:": "唐山市唐山市", + "工作经验:": "3-5年", + "职位类别:": "工程预决算/造价师", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/7", + "有效期限:": "2025/9/5", + "福利": [], + "要求": [ + "1、主要负责组织进行工程投标、工程预决算编制、工程成本控制分析  (工程量清单)  ;", + "2、编制工程的竣工结算和甲方审计;", + "3、积极主动完成工程预决算编制及工程成本控制任务,对工程预决算编制、资金使用控制情况进行管理;", + "4、审核招标活动和合同条款中的标的;", + "5、审核设计图纸,掌握施工现场进展情况,发现问题;", + "6、完成工程施工期间的进度预算报表,及过程资料收集;", + "任职要求", + "1、中专及以上学历,工程造价或建筑类相关专业;", + "2、具有3年以上项目经理工作经验;至少完整操作过一个项目;", + "3、熟悉相关工程标准、规范;", + "4、了解建筑施工企业管理制度、体系、规范、标准及相关工作的运作流程;", + "5、熟悉工程质量管理、安全管理、进度管理、成本管理、技术管理等方面工作,具备协调能力和处理解决问题的能力;", + "6、有较强的职业意识、责任心、工作主动性和严谨性,并具有较强的沟通协调和团队协作能力;", + "7、熟练使用办公软件,预算软件,会用CAD作图。", + "8、有造价员证书、能驻场者优先" + ], + "联系": { + "联系人": "单女士", + "联系方式": "15230935020", + "Email": "1748539045@qq.com", + "公司地址": "河北省唐山市路北区骏安园101-2号二层底商" + } + } + }, + { + "position_name": " 工程预决算/造价师", + "position_url": "/companyhome/post.aspx?comp=enAyODIzMDIy&id=191421", + "company_name": "河北中磐建设工程有限公司", + "company_url": "/companyhome/company.aspx?comp=enAyODIzMDIy", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "不限", + "年龄要求:": "25--45岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "3-5年", + "职位类别:": "工程预决算/造价师", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/5", + "有效期限:": "2025/5/10", + "福利": [ + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "企业给缴纳保险" + ], + "要求": [ + "1.  专科以上学历,工程造价或相关专业,5年以上工作经验。", + "2.  熟练使用工程预算软件。", + "3.  掌握土建或安装预算现行规范及要求。", + "4.  懂招投标方面的专业知识。", + "5.  有总包单位同岗工作经验,接触过市政、绿化方面的工程预决算" + ], + "联系": { + "联系人": "尹女士", + "联系方式": "0315-2823022", + "Email": "tscdszyl@163.com", + "公司地址": "唐山市路南区南湖影视基地沿街商业C6栋" + } + } + }, + { + "position_name": " 驻场安装造价员/安装预算员", + "position_url": "/companyhome/post.aspx?comp=MTM5MzA1ODgxNzU%3d&id=562228", + "company_name": "北京维尔京工程造价咨询有限公司", + "company_url": "/companyhome/company.aspx?comp=MTM5MzA1ODgxNzU%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "3人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "男", + "年龄要求:": "25--50岁", + "学历要求:": "大专", + "工作地区:": "河北省承德", + "工作经验:": "3-5年", + "职位类别:": "工程预决算/造价师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/3", + "有效期限:": "2025/5/13", + "福利": [ + "每周有两天休息时间", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "编制(或审核)工程量清单及招标控制价;进度款审核;结算编制(或审核);", + "全过程造价咨询项目驻场", + "公司地址:唐山市路北区西山南楼12号楼北小白楼;办公地点东临展览路,北临凤凰山,南临广场、矿务局公交站点,四通八达交通方便。", + "项目地点:承德兴隆", + "公司福利:五险;法定节假日;", + "工资面议。", + "联系人:廖经理,电话13930588175同微信" + ], + "联系": { + "联系人": "廖经理", + "联系方式": "13930588175", + "Email": "wejtsfgs@163.com", + "公司地址": "唐山市路北区西山南楼12楼北小白楼" + } + } + }, + { + "position_name": " 驻场土建造价员/预算员", + "position_url": "/companyhome/post.aspx?comp=MTM5MzA1ODgxNzU%3d&id=562229", + "company_name": "北京维尔京工程造价咨询有限公司", + "company_url": "/companyhome/company.aspx?comp=MTM5MzA1ODgxNzU%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "3人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "男", + "年龄要求:": "25--50岁", + "学历要求:": "大专", + "工作地区:": "河北省承德", + "工作经验:": "5-8年", + "职位类别:": "工程预决算/造价师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/3", + "有效期限:": "2025/5/13", + "福利": [ + "每周有两天休息时间", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "编制(或审核)工程量清单及招标控制价;进度款审核;结算编制(或审核);全过程造价咨询项目驻场", + "公司地址:唐山市路北区西山南楼12号楼北小白楼;办公地点东临展览路,北临凤凰山,南临广场、矿务局公交站点,四通八达交通方便。", + "项目地点:承德兴隆", + "公司福利:五险;法定节假日;", + "工资面议。", + "联系人:廖经理,电话13930588175同微信" + ], + "联系": { + "联系人": "廖经理", + "联系方式": "13930588175", + "Email": "wejtsfgs@163.com", + "公司地址": "唐山市路北区西山南楼12楼北小白楼" + } + } + }, + { + "position_name": " 土建造价员/土建预算员", + "position_url": "/companyhome/post.aspx?comp=MTM5MzA1ODgxNzU%3d&id=181014", + "company_name": "北京维尔京工程造价咨询有限公司", + "company_url": "/companyhome/company.aspx?comp=MTM5MzA1ODgxNzU%3d", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "3人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "22--45岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "5-8年", + "职位类别:": "工程预决算/造价师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/3", + "有效期限:": "2025/5/13", + "福利": [ + "每周有两天休息时间", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "工作职责:编制(或审核)工程量清单及招标控制价;进度款审核;结算编制(或审核);全过程造价咨询管理。", + "公司业务涉及财政评审项目、政府投资审计项目、工业建筑项目、房地产开发项目等。", + "办公地点:唐山市路北区西山南楼12号楼北小白楼;办公地点东临展览路,北临凤凰山,南临广场、矿务局公交站点,四通八达交通方便,有停车位。", + "公司福利:五险;法定节假日;", + "工资面议。", + "联系人:廖经理,电话13930588175同微信" + ], + "联系": { + "联系人": "廖经理", + "联系方式": "13930588175", + "Email": "wejtsfgs@163.com", + "公司地址": "唐山市路北区西山南楼12楼北小白楼" + } + } + }, + { + "position_name": " 安装造价员/安装预算员", + "position_url": "/companyhome/post.aspx?comp=MTM5MzA1ODgxNzU%3d&id=212998", + "company_name": "北京维尔京工程造价咨询有限公司", + "company_url": "/companyhome/company.aspx?comp=MTM5MzA1ODgxNzU%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "22--45岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "3-5年", + "职位类别:": "工程预决算/造价师", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/3", + "有效期限:": "2025/5/13", + "福利": [ + "每周有两天休息时间", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "工作职责:编制(或审核)工程量清单及招标控制价;进度款审核;结算编制(或审核);全过程造价咨询管理。", + "公司业务涉及财政评审项目、政府投资审计项目、工业建筑项目、房地产开发项目等。", + "办公地点:唐山市路北区西山南楼12号楼北小白楼;办公地点东临展览路,北临凤凰山,南临广场、矿务局公交站点,四通八达交通方便、有停车位。", + "公司福利:五险;法定节假日;", + "工资面议。", + "联系人:廖经理,电话13930588175同微信" + ], + "联系": { + "联系人": "廖经理", + "联系方式": "13930588175", + "Email": "wejtsfgs@163.com", + "公司地址": "唐山市路北区西山南楼12楼北小白楼" + } + } + }, + { + "position_name": " 安装预算员", + "position_url": "/companyhome/post.aspx?comp=aHVhaGVuZzEyMw%3d%3d&id=585050", + "company_name": "河北华恒工程项目管理咨询有限公司", + "company_url": "/companyhome/company.aspx?comp=aHVhaGVuZzEyMw%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "3人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "20--50岁", + "学历要求:": "中专", + "工作地区:": "唐山市唐山市", + "工作经验:": "1年及以下", + "职位类别:": "工程预决算/造价师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/2/10", + "有效期限:": "2025/3/21", + "福利": [ + "提供免费工作餐或餐补", + "企业给缴纳保险" + ], + "要求": [ + "工作内容:1.有相关工作经验,能独立完成工程结算审核、编制工程清单限价;熟悉工程量清单计价规程,能够熟练的运用广联达算量、计价软件。", + "2.(1-5)年工作经验", + "工作时间:周一至周五", + "福利:双休,法定休、有饭补,  五险,加班补助" + ], + "联系": { + "联系人": "刘女士", + "联系方式": "15131545987", + "Email": "3408124303@qq.com", + "公司地址": "唐山市路北区龙泽北路12号公路养护公司院内" + } + } + }, + { + "position_name": " 土建预算员", + "position_url": "/companyhome/post.aspx?comp=dHNqczIwMTg%3d&id=190622", + "company_name": "唐山建烁工程项目管理有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNqczIwMTg%3d", + "job_info": { + "招聘专业:": "土建类", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "30--48岁", + "学历要求:": "大专", + "工作地区:": "开平区开平区", + "工作经验:": "不限", + "职位类别:": "工程预决算/造价师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/2/8", + "有效期限:": "2025/3/26", + "福利": [ + "每周有两天休息时间", + "有计划组织员工集体旅游", + "企业给缴纳保险" + ], + "要求": [ + "1、专科以上学历,相关专业(工程造价、工程管理、土木工程、房建等专业)全日制专科及以上学历,具有工程造价咨询公司工作经验优先;", + "2、熟练使用广联达软件及操作制图软件(CAD、天正)、  office(excel、word)等办公软件(可独立算量、画图者优先考虑);", + "3、熟悉工程施工及河北2012定额,可以运用现行定额或清单计量与计价软件及编制(审查)工程量清单标底、控标价、工程预(结)算等各类工程价咨询业务;", + "4、有较强的团队意识和责任心,虚心好学,力求上进,注重与人的沟通和协作;", + "5、愿意谋求长期的、稳定的工作机会,可以与企业共同发展;", + "6、成手,三年以上工作经验,可独立完成项目算量和计价。", + "7、具有注册造价工程师资格,人、证合一,在本公司工作者优先录用", + "福利待遇:", + "1、以上人员一经录用,待遇从优。(工资面议)", + "2、周末双休,转正后可入保险。", + "公司邮箱:tsjswhh888@163.com,电话:15231566655,公司地址:唐山市开平区郑庄子镇王千庄村西(银河路与二环路交叉口南行100米)" + ], + "联系": { + "联系人": "王洪海", + "联系方式": "15231566655", + "Email": "tsjswhh888@163.com", + "公司地址": "唐山市开平区郑庄子镇王千庄村西(银河路与二环路交叉口南行100米)" + } + } + }, + { + "position_name": " 安装预算员", + "position_url": "/companyhome/post.aspx?comp=dHNqczIwMTg%3d&id=190623", + "company_name": "唐山建烁工程项目管理有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNqczIwMTg%3d", + "job_info": { + "招聘专业:": "土建类", + "招聘人数:": "3人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "30--48岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "工程预决算/造价师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/2/8", + "有效期限:": "2025/3/26", + "福利": [ + "每周有两天休息时间", + "有计划组织员工集体旅游", + "企业给缴纳保险" + ], + "要求": [ + "1、专科以上学历,相关专业(工程造价、工程管理、土木工程、房建等专业)全日制专科及以上学历,具有工程造价咨询公司工作经验优先;", + "2、熟练使用广联达软件及操作制图软件(CAD、天正)、  office(excel、word)等办公软件(可独立算量、画图者优先考虑);", + "3、熟悉工程施工及河北2012定额,可以运用现行定额或清单计量与计价软件及编制(审查)工程量清单标底、控标价、工程预(结)算等各类工程价咨询业务;", + "4、有较强的团队意识和责任心,虚心好学,力求上进,注重与人的沟通和协作;", + "5、愿意谋求长期的、稳定的工作机会,可以与企业共同发展;", + "6、成手,三年以上工作经验,可独立完成项目算量和计价。", + "7、具有注册造价工程师资格,人、证合一,在本公司工作者优先录用", + "福利待遇:", + "1、以上人员一经录用,待遇从优。(工资面议)", + "2、周末单休,转正后可入保险。", + "公司邮箱:tsjswhh888@163.com,电话:15231566655,公司地址:唐山市开平区郑庄子镇王千庄村(银河路西侧)" + ], + "联系": { + "联系人": "王洪海", + "联系方式": "15231566655", + "Email": "tsjswhh888@163.com", + "公司地址": "唐山市开平区郑庄子镇银河路西侧" + } + } + }, + { + "position_name": " 招投标专员", + "position_url": "/companyhome/post.aspx?comp=dHNqczIwMTg%3d&id=190624", + "company_name": "唐山建烁工程项目管理有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNqczIwMTg%3d", + "job_info": { + "招聘专业:": "管理类", + "招聘人数:": "3人", + "工作类型:": "全职", + "月薪:": "2001--3500", + "要求性别:": "不限", + "年龄要求:": "18--60岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "工程预决算/造价师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/2/8", + "有效期限:": "2025/3/26", + "福利": [ + "每周有两天休息时间", + "有计划组织员工集体旅游", + "企业给缴纳保险" + ], + "要求": [ + "1、掌握政府采购及建设工程等招标行业相关法律、法规、规章制度及行业管理制度的知识技能;", + "2、熟悉招投标流程,能独立完成招标备案,招标文件编制、开标会议组织;  3、有较强的组织、协调及沟通能力,良好的职业素养及团队合作意识,责任心强;", + "4、有驾驶证、中级职称证书者优先考虑,工资面议。", + "福利待遇:", + "1、以上人员一经录用,待遇从优。(工资面议)", + "2、周末单休,转正后可入保险。", + "公司邮箱:tsjswhh888@163.com,电话:15231566655,公司地址:唐山市开平区郑庄子镇王千庄村(银河路西侧)" + ], + "联系": { + "联系人": "王洪海", + "联系方式": "15231566655", + "Email": "tsjswhh888@163.com", + "公司地址": "唐山市开平区郑庄子镇王千庄村西(银河路与二环路交叉口南行100米)" + } + } + }, + { + "position_name": " 工程造价师、造价、评估助理", + "position_url": "/companyhome/post.aspx?comp=VFNZRDAx&id=246725", + "company_name": "唐山永大会计师事务所有限公司", + "company_url": "/companyhome/company.aspx?comp=VFNZRDAx", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "不限", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "22--60岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "1-2年", + "职位类别:": "工程预决算/造价师", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/8/9", + "有效期限:": "2025/6/26", + "福利": [], + "要求": [ + "1、大学专科及以上学历;二级造价师以上资质;", + "2、男士优先,具备造价工作经验者优先;", + "薪资待遇:工资面议。五险一金,双休,法定节假日全休。", + "全职兼职均可。工作地点丰润区文化路" + ], + "联系": { + "联系人": "马先生", + "联系方式": "0315-5188198", + "Email": "1062631443@qq.com", + "公司地址": "路北区君瑞花园商业楼1门554号" + } + } + }, + { + "position_name": " 造价工程师", + "position_url": "/companyhome/post.aspx?comp=VFNZRDAx&id=214728", + "company_name": "唐山永大会计师事务所有限公司", + "company_url": "/companyhome/company.aspx?comp=VFNZRDAx", + "job_info": { + "招聘专业:": "无", + "招聘人数:": "2人", + "工作类型:": "兼职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "18--60岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "工程预决算/造价师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/6/26", + "有效期限:": "2025/6/26", + "福利": [], + "要求": [ + "有工程造价方面相关证书,能够为我单位评估师给出有关建筑物、构筑物的合理价值意见。" + ], + "联系": { + "联系人": "马先生", + "联系方式": "0315-5188198", + "Email": "1062631443@qq.com", + "公司地址": "路北区君瑞花园商业楼1门554号" + } + } + }, + { + "position_name": " 预算员", + "position_url": "/companyhome/post.aspx?comp=c2hlamk%3d&id=196093", + "company_name": "河北昊宇建筑设计有限公司", + "company_url": "/companyhome/company.aspx?comp=c2hlamk%3d", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "18--60岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "工程预决算/造价师", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2024/5/29", + "有效期限:": "2025/6/1", + "福利": [], + "要求": [ + "具有一定的工作经验,踏实肯干,服从领导安排" + ], + "联系": { + "联系人": "李女士", + "联系方式": "15511965159", + "Email": "sheji2008sheji@163.com", + "公司地址": "唐山市高新区建设北路101号高科总部大厦12层" + } + } + }, + { + "position_name": " 安装预算员", + "position_url": "/companyhome/post.aspx?comp=c2hlamk%3d&id=559711", + "company_name": "河北昊宇建筑设计有限公司", + "company_url": "/companyhome/company.aspx?comp=c2hlamk%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "3人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "男", + "年龄要求:": "24--45岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "2-3年", + "职位类别:": "工程预决算/造价师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/5/29", + "有效期限:": "2025/6/1", + "福利": [], + "要求": [ + "岗位名称:安装预算员", + "专业:工程造价及相关专业,有3年以上经验者优先录用", + "岗位职责:负责项目安装专业概算、预算编制工作", + "岗位名称:土建预算员", + "专业:工程造价及相关专业,有3年以上经验者优先录用", + "岗位职责:负责项目土建专业概算、预算编制工作", + "待遇:1.六险一金、双休、法定假期", + "2.住宿、饭补", + "3.定期体检、外出考察、员工福利等" + ], + "联系": { + "联系人": "李女士", + "联系方式": "15511965159", + "Email": "sheji2008sheji@163.com", + "公司地址": "唐山市高新区建设北路101号高科总部大厦12层" + } + } + }, + { + "position_name": " 工程造价人员", + "position_url": "/companyhome/post.aspx?comp=dHNsZg%3d%3d&id=159450", + "company_name": "唐山联发工程管理有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNsZg%3d%3d", + "job_info": { + "招聘专业:": "理科", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "25--45岁", + "学历要求:": "大专", + "工作地区:": "丰南区丰南区", + "工作经验:": "不限", + "职位类别:": "工程预决算/造价师", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2026/3/19", + "福利": [], + "要求": [ + "工程造价咨询业务的相关工作,概算、预算、决算、审计等。有造价工程师证书的优先。有安装专业工作经验者优先。有招标代理工作经验优先" + ], + "联系": { + "联系人": "孙经理", + "联系方式": "0315-8192603", + "Email": "sunbo646689@126.com", + "公司地址": "丰南区光明大街金盛花园底商231、233、235、237号" + } + } + }, + { + "position_name": " 工程预结算、造价师", + "position_url": "/companyhome/post.aspx?comp=dHN5dHpoYg%3d%3d&id=585085", + "company_name": "唐山远通实业有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN5dHpoYg%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "35--55岁", + "学历要求:": "大专", + "工作地区:": "唐海县唐海县", + "工作经验:": "10年以上", + "职位类别:": "工程预决算/造价师", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2025/4/4", + "福利": [], + "要求": [ + "熟悉了解现行法规政策,适应施工现场环境,精通各工种的预算规则," + ], + "联系": { + "联系人": "陈经理", + "联系方式": "18131531788", + "Email": "tsytzhb@163.com", + "公司地址": "曹妃甸区唐海镇唐海路西侧74-1号(如意快捷酒店西行50米)" + } + } + }, + { + "position_name": " 预算员", + "position_url": "/companyhome/post.aspx?comp=YWplbHp5MTEx&id=585810", + "company_name": "唐山安居人力资源服务有限公司", + "company_url": "/companyhome/company.aspx?comp=YWplbHp5MTEx", + "job_info": { + "招聘专业:": "", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "25--50岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "工程预决算/造价师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/4/18", + "福利": [ + "薪资高于同行业平均水平" + ], + "要求": [ + "岗位要求;", + "要求工程预算、工程造价等专业方向,熟悉本行业法律法规及规范要求,熟练运用广联达建筑等软件,对河北省定额精通,具有2-3年工地现场土建预算工作经验。", + "岗位职责;", + "负责编制项目工程量清单,按月形象进度编制已完工程量,制定、审核材料采购计划等。" + ], + "联系": { + "联系人": "王女士", + "联系方式": "13000000000", + "Email": "ajrlzp@163.com", + "公司地址": "河北省唐山市路北区" + } + } + }, + { + "position_name": " 安装预算员", + "position_url": "/companyhome/post.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d&id=583457", + "company_name": "唐山天鸿建设集团有限责任公司", + "company_url": "/companyhome/company.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "不限", + "年龄要求:": "30--45岁", + "学历要求:": "大专", + "工作地区:": "开平区开平区", + "工作经验:": "5-8年", + "职位类别:": "工程预决算/造价师", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/14", + "有效期限:": "2025/8/14", + "福利": [], + "要求": [ + "岗位职责:", + "1、负责编制安装工程的科研估算、概算、施工图预、结算。", + "2、审核工程结算、进度支付、结算审计。", + "3、编制工程招标清单、投标报价。", + "4、协助财务进行成本核算。", + "5、根据现场签证及变更及时调整预算。", + "6、在工程投标阶段,及时、准确做出预算,提供报价依据。", + "7、掌握准确的’市场价格和预算价格,及时调整预、结算。", + "8、参与投标文件、标书编制和合同评审,收集各工程的造价资料,为投标提供依据。", + "9、掌握土建工程的施工进度,依据合同约定计算完成工程量产值,审核合同履约进度款额。", + "10、收集并存档土建工程设计变更、洽商、现场签证及材料价格文件。", + "任职要求:", + "1、30-45岁,大专以上学历,预算相关专业,本科以上学历优先。", + "2、8年以上安装预算工作经验,精通消防、通风、机电、给排水、暖通专业。", + "3、掌握及应用土建工程施工及验收相关规范、标准、图集。", + "4、熟练使用OFFICE、CAD(或TEKLA)以及工程造价等办公软件。", + "5、熟悉项目管理规范、法规。" + ], + "联系": { + "联系人": "黄先生", + "联系方式": "0315-5256986、18903150558", + "Email": "tianhongjianan@163.com", + "公司地址": "开平区税务庄北街" + } + } + }, + { + "position_name": " 成本预算员", + "position_url": "/companyhome/post.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d&id=585801", + "company_name": "唐山天鸿建设集团有限责任公司", + "company_url": "/companyhome/company.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "不限", + "年龄要求:": "35--45岁", + "学历要求:": "大专", + "工作地区:": "开平区开平区", + "工作经验:": "5-8年", + "职位类别:": "工程预决算/造价师", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/14", + "有效期限:": "2025/8/14", + "福利": [], + "要求": [ + "工作内容:", + "1、根据项目生产需用计划,负责市场物资采购的询价、批价工作。", + "2、负责市场部和经营部的商务投标和工程造价预算各项费用的询价工作。", + "2、根据需求走访市场,了解市场动态,拓展供应渠道。", + "3、不定期对现有供应商进行评价及供应商名录更新,负责新供应商推荐和筛选工作。", + "4、协助副部长根据需要组织公司物资采购的招投标工作。", + "岗位要求:", + "1、30-45岁,大专及以上学历,工程类专业,本科以上学历优先。", + "2、行业工作5年以上,同岗位工作经验3年以上。", + "3、具备一定的物资方面专业知识,爱岗敬业、勤奋好学、积极进取。", + "3、具有良好的沟通协调能力及业务洽谈能力。", + "4、能接受适量加班和低频短期出差。" + ], + "联系": { + "联系人": "黄先生", + "联系方式": "0315-5256986", + "Email": "tianhongjianan@163.com", + "公司地址": "开平区税务庄北街" + } + } + }, + { + "position_name": " 预算员", + "position_url": "/companyhome/post.aspx?comp=dGlhbmppbnNoZW5neXVhbjAwMQ%3d%3d&id=585803", + "company_name": "天津晟原建筑工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dGlhbmppbnNoZW5neXVhbjAwMQ%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "男", + "年龄要求:": "18--60岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "3-5年", + "职位类别:": "工程预决算/造价师", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/13", + "有效期限:": "2025/6/13", + "福利": [], + "要求": [ + "熟练掌握广联达计量相关软件,对市场有一定的了解,有机电、消防预算专业经验者优先" + ], + "联系": { + "联系人": "马莉", + "联系方式": "15097500278", + "Email": "tianjinshengyuan001", + "公司地址": "唐山市路北区梧桐大道梧桐苑底商" + } + } + }, + { + "position_name": " 土建/市政预算员", + "position_url": "/companyhome/post.aspx?comp=dHN4ZGpz&id=213607", + "company_name": "河北鑫鼎建设工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN4ZGpz", + "job_info": { + "招聘专业:": "工程造价或建筑类相关专业", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "30--55岁", + "学历要求:": "中专", + "工作地区:": "唐山市唐山市", + "工作经验:": "3-5年", + "职位类别:": "工程预决算/造价师", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/7", + "有效期限:": "2025/9/5", + "福利": [], + "要求": [ + "1、主要负责组织进行工程投标、工程预决算编制、工程成本控制分析  (工程量清单)  ;", + "2、编制工程的竣工结算和甲方审计;", + "3、积极主动完成工程预决算编制及工程成本控制任务,对工程预决算编制、资金使用控制情况进行管理;", + "4、审核招标活动和合同条款中的标的;", + "5、审核设计图纸,掌握施工现场进展情况,发现问题;", + "6、完成工程施工期间的进度预算报表,及过程资料收集;", + "任职要求", + "1、中专及以上学历,工程造价或建筑类相关专业;", + "2、具有3年以上项目经理工作经验;至少完整操作过一个项目;", + "3、熟悉相关工程标准、规范;", + "4、了解建筑施工企业管理制度、体系、规范、标准及相关工作的运作流程;", + "5、熟悉工程质量管理、安全管理、进度管理、成本管理、技术管理等方面工作,具备协调能力和处理解决问题的能力;", + "6、有较强的职业意识、责任心、工作主动性和严谨性,并具有较强的沟通协调和团队协作能力;", + "7、熟练使用办公软件,预算软件,会用CAD作图。", + "8、有造价员证书、能驻场者优先" + ], + "联系": { + "联系人": "单女士", + "联系方式": "15230935020", + "Email": "1748539045@qq.com", + "公司地址": "河北省唐山市路北区骏安园101-2号二层底商" + } + } + }, + { + "position_name": " 工程预决算/造价师", + "position_url": "/companyhome/post.aspx?comp=enAyODIzMDIy&id=191421", + "company_name": "河北中磐建设工程有限公司", + "company_url": "/companyhome/company.aspx?comp=enAyODIzMDIy", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "不限", + "年龄要求:": "25--45岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "3-5年", + "职位类别:": "工程预决算/造价师", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/5", + "有效期限:": "2025/5/10", + "福利": [ + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "企业给缴纳保险" + ], + "要求": [ + "1.  专科以上学历,工程造价或相关专业,5年以上工作经验。", + "2.  熟练使用工程预算软件。", + "3.  掌握土建或安装预算现行规范及要求。", + "4.  懂招投标方面的专业知识。", + "5.  有总包单位同岗工作经验,接触过市政、绿化方面的工程预决算" + ], + "联系": { + "联系人": "尹女士", + "联系方式": "0315-2823022", + "Email": "tscdszyl@163.com", + "公司地址": "唐山市路南区南湖影视基地沿街商业C6栋" + } + } + }, + { + "position_name": " 驻场安装造价员/安装预算员", + "position_url": "/companyhome/post.aspx?comp=MTM5MzA1ODgxNzU%3d&id=562228", + "company_name": "北京维尔京工程造价咨询有限公司", + "company_url": "/companyhome/company.aspx?comp=MTM5MzA1ODgxNzU%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "3人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "男", + "年龄要求:": "25--50岁", + "学历要求:": "大专", + "工作地区:": "河北省承德", + "工作经验:": "3-5年", + "职位类别:": "工程预决算/造价师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/3", + "有效期限:": "2025/5/13", + "福利": [ + "每周有两天休息时间", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "编制(或审核)工程量清单及招标控制价;进度款审核;结算编制(或审核);", + "全过程造价咨询项目驻场", + "公司地址:唐山市路北区西山南楼12号楼北小白楼;办公地点东临展览路,北临凤凰山,南临广场、矿务局公交站点,四通八达交通方便。", + "项目地点:承德兴隆", + "公司福利:五险;法定节假日;", + "工资面议。", + "联系人:廖经理,电话13930588175同微信" + ], + "联系": { + "联系人": "廖经理", + "联系方式": "13930588175", + "Email": "wejtsfgs@163.com", + "公司地址": "唐山市路北区西山南楼12楼北小白楼" + } + } + }, + { + "position_name": " 驻场土建造价员/预算员", + "position_url": "/companyhome/post.aspx?comp=MTM5MzA1ODgxNzU%3d&id=562229", + "company_name": "北京维尔京工程造价咨询有限公司", + "company_url": "/companyhome/company.aspx?comp=MTM5MzA1ODgxNzU%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "3人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "男", + "年龄要求:": "25--50岁", + "学历要求:": "大专", + "工作地区:": "河北省承德", + "工作经验:": "5-8年", + "职位类别:": "工程预决算/造价师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/3", + "有效期限:": "2025/5/13", + "福利": [ + "每周有两天休息时间", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "编制(或审核)工程量清单及招标控制价;进度款审核;结算编制(或审核);全过程造价咨询项目驻场", + "公司地址:唐山市路北区西山南楼12号楼北小白楼;办公地点东临展览路,北临凤凰山,南临广场、矿务局公交站点,四通八达交通方便。", + "项目地点:承德兴隆", + "公司福利:五险;法定节假日;", + "工资面议。", + "联系人:廖经理,电话13930588175同微信" + ], + "联系": { + "联系人": "廖经理", + "联系方式": "13930588175", + "Email": "wejtsfgs@163.com", + "公司地址": "唐山市路北区西山南楼12楼北小白楼" + } + } + }, + { + "position_name": " 土建造价员/土建预算员", + "position_url": "/companyhome/post.aspx?comp=MTM5MzA1ODgxNzU%3d&id=181014", + "company_name": "北京维尔京工程造价咨询有限公司", + "company_url": "/companyhome/company.aspx?comp=MTM5MzA1ODgxNzU%3d", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "3人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "22--45岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "5-8年", + "职位类别:": "工程预决算/造价师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/3", + "有效期限:": "2025/5/13", + "福利": [ + "每周有两天休息时间", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "工作职责:编制(或审核)工程量清单及招标控制价;进度款审核;结算编制(或审核);全过程造价咨询管理。", + "公司业务涉及财政评审项目、政府投资审计项目、工业建筑项目、房地产开发项目等。", + "办公地点:唐山市路北区西山南楼12号楼北小白楼;办公地点东临展览路,北临凤凰山,南临广场、矿务局公交站点,四通八达交通方便,有停车位。", + "公司福利:五险;法定节假日;", + "工资面议。", + "联系人:廖经理,电话13930588175同微信" + ], + "联系": { + "联系人": "廖经理", + "联系方式": "13930588175", + "Email": "wejtsfgs@163.com", + "公司地址": "唐山市路北区西山南楼12楼北小白楼" + } + } + }, + { + "position_name": " 安装造价员/安装预算员", + "position_url": "/companyhome/post.aspx?comp=MTM5MzA1ODgxNzU%3d&id=212998", + "company_name": "北京维尔京工程造价咨询有限公司", + "company_url": "/companyhome/company.aspx?comp=MTM5MzA1ODgxNzU%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "22--45岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "3-5年", + "职位类别:": "工程预决算/造价师", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/3", + "有效期限:": "2025/5/13", + "福利": [ + "每周有两天休息时间", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "工作职责:编制(或审核)工程量清单及招标控制价;进度款审核;结算编制(或审核);全过程造价咨询管理。", + "公司业务涉及财政评审项目、政府投资审计项目、工业建筑项目、房地产开发项目等。", + "办公地点:唐山市路北区西山南楼12号楼北小白楼;办公地点东临展览路,北临凤凰山,南临广场、矿务局公交站点,四通八达交通方便、有停车位。", + "公司福利:五险;法定节假日;", + "工资面议。", + "联系人:廖经理,电话13930588175同微信" + ], + "联系": { + "联系人": "廖经理", + "联系方式": "13930588175", + "Email": "wejtsfgs@163.com", + "公司地址": "唐山市路北区西山南楼12楼北小白楼" + } + } + }, + { + "position_name": " 安装预算员", + "position_url": "/companyhome/post.aspx?comp=aHVhaGVuZzEyMw%3d%3d&id=585050", + "company_name": "河北华恒工程项目管理咨询有限公司", + "company_url": "/companyhome/company.aspx?comp=aHVhaGVuZzEyMw%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "3人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "20--50岁", + "学历要求:": "中专", + "工作地区:": "唐山市唐山市", + "工作经验:": "1年及以下", + "职位类别:": "工程预决算/造价师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/2/10", + "有效期限:": "2025/3/21", + "福利": [ + "提供免费工作餐或餐补", + "企业给缴纳保险" + ], + "要求": [ + "工作内容:1.有相关工作经验,能独立完成工程结算审核、编制工程清单限价;熟悉工程量清单计价规程,能够熟练的运用广联达算量、计价软件。", + "2.(1-5)年工作经验", + "工作时间:周一至周五", + "福利:双休,法定休、有饭补,  五险,加班补助" + ], + "联系": { + "联系人": "刘女士", + "联系方式": "15131545987", + "Email": "3408124303@qq.com", + "公司地址": "唐山市路北区龙泽北路12号公路养护公司院内" + } + } + }, + { + "position_name": " 土建预算员", + "position_url": "/companyhome/post.aspx?comp=dHNqczIwMTg%3d&id=190622", + "company_name": "唐山建烁工程项目管理有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNqczIwMTg%3d", + "job_info": { + "招聘专业:": "土建类", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "30--48岁", + "学历要求:": "大专", + "工作地区:": "开平区开平区", + "工作经验:": "不限", + "职位类别:": "工程预决算/造价师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/2/8", + "有效期限:": "2025/3/26", + "福利": [ + "每周有两天休息时间", + "有计划组织员工集体旅游", + "企业给缴纳保险" + ], + "要求": [ + "1、专科以上学历,相关专业(工程造价、工程管理、土木工程、房建等专业)全日制专科及以上学历,具有工程造价咨询公司工作经验优先;", + "2、熟练使用广联达软件及操作制图软件(CAD、天正)、  office(excel、word)等办公软件(可独立算量、画图者优先考虑);", + "3、熟悉工程施工及河北2012定额,可以运用现行定额或清单计量与计价软件及编制(审查)工程量清单标底、控标价、工程预(结)算等各类工程价咨询业务;", + "4、有较强的团队意识和责任心,虚心好学,力求上进,注重与人的沟通和协作;", + "5、愿意谋求长期的、稳定的工作机会,可以与企业共同发展;", + "6、成手,三年以上工作经验,可独立完成项目算量和计价。", + "7、具有注册造价工程师资格,人、证合一,在本公司工作者优先录用", + "福利待遇:", + "1、以上人员一经录用,待遇从优。(工资面议)", + "2、周末双休,转正后可入保险。", + "公司邮箱:tsjswhh888@163.com,电话:15231566655,公司地址:唐山市开平区郑庄子镇王千庄村西(银河路与二环路交叉口南行100米)" + ], + "联系": { + "联系人": "王洪海", + "联系方式": "15231566655", + "Email": "tsjswhh888@163.com", + "公司地址": "唐山市开平区郑庄子镇王千庄村西(银河路与二环路交叉口南行100米)" + } + } + }, + { + "position_name": " 安装预算员", + "position_url": "/companyhome/post.aspx?comp=dHNqczIwMTg%3d&id=190623", + "company_name": "唐山建烁工程项目管理有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNqczIwMTg%3d", + "job_info": { + "招聘专业:": "土建类", + "招聘人数:": "3人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "30--48岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "工程预决算/造价师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/2/8", + "有效期限:": "2025/3/26", + "福利": [ + "每周有两天休息时间", + "有计划组织员工集体旅游", + "企业给缴纳保险" + ], + "要求": [ + "1、专科以上学历,相关专业(工程造价、工程管理、土木工程、房建等专业)全日制专科及以上学历,具有工程造价咨询公司工作经验优先;", + "2、熟练使用广联达软件及操作制图软件(CAD、天正)、  office(excel、word)等办公软件(可独立算量、画图者优先考虑);", + "3、熟悉工程施工及河北2012定额,可以运用现行定额或清单计量与计价软件及编制(审查)工程量清单标底、控标价、工程预(结)算等各类工程价咨询业务;", + "4、有较强的团队意识和责任心,虚心好学,力求上进,注重与人的沟通和协作;", + "5、愿意谋求长期的、稳定的工作机会,可以与企业共同发展;", + "6、成手,三年以上工作经验,可独立完成项目算量和计价。", + "7、具有注册造价工程师资格,人、证合一,在本公司工作者优先录用", + "福利待遇:", + "1、以上人员一经录用,待遇从优。(工资面议)", + "2、周末单休,转正后可入保险。", + "公司邮箱:tsjswhh888@163.com,电话:15231566655,公司地址:唐山市开平区郑庄子镇王千庄村(银河路西侧)" + ], + "联系": { + "联系人": "王洪海", + "联系方式": "15231566655", + "Email": "tsjswhh888@163.com", + "公司地址": "唐山市开平区郑庄子镇银河路西侧" + } + } + }, + { + "position_name": " 招投标专员", + "position_url": "/companyhome/post.aspx?comp=dHNqczIwMTg%3d&id=190624", + "company_name": "唐山建烁工程项目管理有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNqczIwMTg%3d", + "job_info": { + "招聘专业:": "管理类", + "招聘人数:": "3人", + "工作类型:": "全职", + "月薪:": "2001--3500", + "要求性别:": "不限", + "年龄要求:": "18--60岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "工程预决算/造价师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/2/8", + "有效期限:": "2025/3/26", + "福利": [ + "每周有两天休息时间", + "有计划组织员工集体旅游", + "企业给缴纳保险" + ], + "要求": [ + "1、掌握政府采购及建设工程等招标行业相关法律、法规、规章制度及行业管理制度的知识技能;", + "2、熟悉招投标流程,能独立完成招标备案,招标文件编制、开标会议组织;  3、有较强的组织、协调及沟通能力,良好的职业素养及团队合作意识,责任心强;", + "4、有驾驶证、中级职称证书者优先考虑,工资面议。", + "福利待遇:", + "1、以上人员一经录用,待遇从优。(工资面议)", + "2、周末单休,转正后可入保险。", + "公司邮箱:tsjswhh888@163.com,电话:15231566655,公司地址:唐山市开平区郑庄子镇王千庄村(银河路西侧)" + ], + "联系": { + "联系人": "王洪海", + "联系方式": "15231566655", + "Email": "tsjswhh888@163.com", + "公司地址": "唐山市开平区郑庄子镇王千庄村西(银河路与二环路交叉口南行100米)" + } + } + }, + { + "position_name": " 工程造价师、造价、评估助理", + "position_url": "/companyhome/post.aspx?comp=VFNZRDAx&id=246725", + "company_name": "唐山永大会计师事务所有限公司", + "company_url": "/companyhome/company.aspx?comp=VFNZRDAx", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "不限", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "22--60岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "1-2年", + "职位类别:": "工程预决算/造价师", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/8/9", + "有效期限:": "2025/6/26", + "福利": [], + "要求": [ + "1、大学专科及以上学历;二级造价师以上资质;", + "2、男士优先,具备造价工作经验者优先;", + "薪资待遇:工资面议。五险一金,双休,法定节假日全休。", + "全职兼职均可。工作地点丰润区文化路" + ], + "联系": { + "联系人": "马先生", + "联系方式": "0315-5188198", + "Email": "1062631443@qq.com", + "公司地址": "路北区君瑞花园商业楼1门554号" + } + } + }, + { + "position_name": " 造价工程师", + "position_url": "/companyhome/post.aspx?comp=VFNZRDAx&id=214728", + "company_name": "唐山永大会计师事务所有限公司", + "company_url": "/companyhome/company.aspx?comp=VFNZRDAx", + "job_info": { + "招聘专业:": "无", + "招聘人数:": "2人", + "工作类型:": "兼职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "18--60岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "工程预决算/造价师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/6/26", + "有效期限:": "2025/6/26", + "福利": [], + "要求": [ + "有工程造价方面相关证书,能够为我单位评估师给出有关建筑物、构筑物的合理价值意见。" + ], + "联系": { + "联系人": "马先生", + "联系方式": "0315-5188198", + "Email": "1062631443@qq.com", + "公司地址": "路北区君瑞花园商业楼1门554号" + } + } + }, + { + "position_name": " 预算员", + "position_url": "/companyhome/post.aspx?comp=c2hlamk%3d&id=196093", + "company_name": "河北昊宇建筑设计有限公司", + "company_url": "/companyhome/company.aspx?comp=c2hlamk%3d", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "18--60岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "工程预决算/造价师", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2024/5/29", + "有效期限:": "2025/6/1", + "福利": [], + "要求": [ + "具有一定的工作经验,踏实肯干,服从领导安排" + ], + "联系": { + "联系人": "李女士", + "联系方式": "15511965159", + "Email": "sheji2008sheji@163.com", + "公司地址": "唐山市高新区建设北路101号高科总部大厦12层" + } + } + }, + { + "position_name": " 安装预算员", + "position_url": "/companyhome/post.aspx?comp=c2hlamk%3d&id=559711", + "company_name": "河北昊宇建筑设计有限公司", + "company_url": "/companyhome/company.aspx?comp=c2hlamk%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "3人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "男", + "年龄要求:": "24--45岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "2-3年", + "职位类别:": "工程预决算/造价师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/5/29", + "有效期限:": "2025/6/1", + "福利": [], + "要求": [ + "岗位名称:安装预算员", + "专业:工程造价及相关专业,有3年以上经验者优先录用", + "岗位职责:负责项目安装专业概算、预算编制工作", + "岗位名称:土建预算员", + "专业:工程造价及相关专业,有3年以上经验者优先录用", + "岗位职责:负责项目土建专业概算、预算编制工作", + "待遇:1.六险一金、双休、法定假期", + "2.住宿、饭补", + "3.定期体检、外出考察、员工福利等" + ], + "联系": { + "联系人": "李女士", + "联系方式": "15511965159", + "Email": "sheji2008sheji@163.com", + "公司地址": "唐山市高新区建设北路101号高科总部大厦12层" + } + } + } + ] + }, + { + "cid": "3924", + "cname": "房地产开发/策划经理/主管", + "position_list": [ + { + "position_name": " 营销策划经理", + "position_url": "/companyhome/post.aspx?comp=bGJjdDIwMTQ%3d&id=585068", + "company_name": "唐山市路北区城市建设投资集团有限公司", + "company_url": "/companyhome/company.aspx?comp=bGJjdDIwMTQ%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "28--40岁", + "学历要求:": "本科", + "工作地区:": "路北区路北区", + "工作经验:": "3-5年", + "职位类别:": "房地产开发/策划经理/主管", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/2/12", + "有效期限:": "2025/4/25", + "福利": [], + "要求": [ + "【工作职责】", + "1、策划统筹:产品定位、任务排期、推售推广策略、赋能营销模式、板块竞争优势及市场占比;", + "2、策划管理:团队培养,社会资源整合及嫁接、社群及分销聚焦方案规划;", + "3、方案政策:参与取地研判,撰写营销方案、产品定位、开盘策划会、定价、顺销营销测录等报告及会议;", + "4、营销推广:品牌落地,产品发布,根据节点及市场进行多维度组合推广、活动;", + "5、沟通协调:销策渠补位,沟通各条线营销策略及销渠政策;相关合同招标、签订、付款等手续办理;", + "【工作要求】", + "1、具备完整项目经历,3年以上一线房企工作经验者优先;  ?", + "2、熟悉房地产开发过程,掌握项目定位、策划和推广的全过程;  ?", + "3、触觉锐利,理智精准,为人踏实,有团队合作精神和务实的工作作风;  ?", + "4、具有丰富的营销、策划知识,工作主动积极,责任心强,作风谦逊上进,擅协作,善沟通,能承受较大的工作压力。" + ], + "联系": { + "联系人": "杨杰", + "联系方式": "0315-2026751", + "Email": "lbctwj@163.com", + "公司地址": "机场路付3号" + } + } + } + ] + }, + { + "cid": "3925", + "cname": "给排水工程师", + "position_list": [ + { + "position_name": " 水暖工程师", + "position_url": "/companyhome/post.aspx?comp=YWplbHp5MTEx&id=585809", + "company_name": "唐山安居人力资源服务有限公司", + "company_url": "/companyhome/company.aspx?comp=YWplbHp5MTEx", + "job_info": { + "招聘专业:": "", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "25--50岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "给排水工程师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/4/18", + "福利": [ + "薪资高于同行业平均水平" + ], + "要求": [ + "岗位要求:", + "要求给排水工程、消防工程专业、暖通等专业,熟悉土建及本专业图纸;3年以上本岗位现场工作经验,参与过2个以上5万㎡建筑工程的顺水暖工程管理;工作认真负责,踏实肯干,服从领导工作安排。", + "岗位职责:", + "负责水暖专业的施工图图纸审查,负责对接市政部门办理给水及排污手续,出具场区给排水方案;", + "编制给排水、暖通、消防等专业施工管理实施细则、施工技术交底;", + "负责给排水、暖通、消防等分项工程验收及隐蔽工程验收。" + ], + "联系": { + "联系人": "王女士", + "联系方式": "13000000000", + "Email": "ajrlzp@163.com", + "公司地址": "河北省唐山市路北区" + } + } + }, + { + "position_name": " 技术人员(暖通、空调、给排水)", + "position_url": "/companyhome/post.aspx?comp=dHN6aG9uZ2Rp&id=580724", + "company_name": "唐山中地地质工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN6aG9uZ2Rp", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "男", + "年龄要求:": "30--45岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "3-5年", + "职位类别:": "给排水工程师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/12", + "有效期限:": "2025/4/2", + "福利": [ + "薪资高于同行业平均水平", + "每周有两天休息时间", + "企业给缴纳住房公积金", + "有带薪年休假", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "有暖通、空调、给排水相关专业相关证书者优先" + ], + "联系": { + "联系人": "刘女士", + "联系方式": "0315-5266266", + "Email": "tszdzhbgs@163.com", + "公司地址": "唐山市北新西道157号" + } + } + }, + { + "position_name": " 给排水设计师", + "position_url": "/companyhome/post.aspx?comp=dHN0Y3NqeQ%3d%3d&id=569161", + "company_name": "唐山陶瓷集团设计研究有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN0Y3NqeQ%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "18--60岁", + "学历要求:": "大专", + "工作地区:": "高新开发区高新开发区", + "工作经验:": "2-3年", + "职位类别:": "给排水工程师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/5/22", + "有效期限:": "2025/5/22", + "福利": [], + "要求": [ + "从事给排水设计2年以上,熟悉给排水及消防设计规范,能独立完成建筑工程的给排水、消防专业设计,工作认真,责任心强。" + ], + "联系": { + "联系人": "文女士", + "联系方式": "13014314496", + "Email": "tstcsjy@163.com", + "公司地址": "高新区龙泽北路凤城阳光4单元8层" + } + } + } + ] + }, + { + "cid": "3926", + "cname": "暖通工程师", + "position_list": [ + { + "position_name": " 暖通专业设计人员", + "position_url": "/companyhome/post.aspx?comp=aGViZWlxaWFv&id=584218", + "company_name": "河北淇奥工程设计有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlxaWFv", + "job_info": { + "招聘专业:": "土建类", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "22--40岁", + "学历要求:": "本科", + "工作地区:": "河北省河北", + "工作经验:": "2-3年", + "职位类别:": "暖通工程师", + "外语要求:": "不限", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/14", + "有效期限:": "2025/5/30", + "福利": [ + "每周有两天休息时间", + "企业给缴纳住房公积金", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "1.暖通专业及相关专业,熟练掌握相关专业综合知识,应届毕业生也可,有经验者优先;", + "2.熟练使用相关软件,能够完成暖通设计工作;", + "3.有较强的学习能力、沟通能力和执行能力;", + "4.工作细心、主动,责任心强,  具有  团队协作精神,能够承受较强的工作压力;", + "5.服从领导工作安排,按时按量高标准完成设计任务。", + "薪资:五险一金、双休、国家法定节假日。" + ], + "联系": { + "联系人": "张先生", + "联系方式": "0315-2855059", + "Email": "aa95828@163.com", + "公司地址": "路北区" + } + } + }, + { + "position_name": " 建筑暖通设计师", + "position_url": "/companyhome/post.aspx?comp=c2hlamk%3d&id=186621", + "company_name": "河北昊宇建筑设计有限公司", + "company_url": "/companyhome/company.aspx?comp=c2hlamk%3d", + "job_info": { + "招聘专业:": "土建类", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "18--60岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "暖通工程师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2024/5/29", + "有效期限:": "2025/6/1", + "福利": [], + "要求": [ + "要求:", + "1.建筑环境与设备工程等专业(全日制本科及以上工程院校);", + "2.相关专业实习生、应届毕业生均可;", + "3.有设计院工作经验,熟悉行业规范,具有独立主持建筑施工图设计的能力优先;", + "4.为人正直、善良、肯上进", + "5.根据实际工作情况,工资面议.", + "待遇:", + "1.入职转正后缴纳六险一金;", + "2.双休、法定假期;", + "3.免费提供住宿;", + "4.每月享有餐费补助;", + "5.定期组织员工体检,外出考察等;", + "公司给你提供广阔平台,职等你的加入!" + ], + "联系": { + "联系人": "李女士", + "联系方式": "15511965159", + "Email": "sheji2008sheji@163.com", + "公司地址": "唐山市高新区建设北路101号高科总部大厦12层" + } + } + }, + { + "position_name": " 暖通专业设计师", + "position_url": "/companyhome/post.aspx?comp=dHN0Y3NqeQ%3d%3d&id=187210", + "company_name": "唐山陶瓷集团设计研究有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN0Y3NqeQ%3d%3d", + "job_info": { + "招聘专业:": "热工类", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "18--60岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "暖通工程师", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2024/5/22", + "有效期限:": "2025/5/22", + "福利": [], + "要求": [ + "从事暖通设计1年以上,熟悉暖通设计规范,能独立完成建筑工程的暖通专业设计,工作认真,责任心强。" + ], + "联系": { + "联系人": "王女士", + "联系方式": "13014314496", + "Email": "tstcsjy@163.com", + "公司地址": "高新区龙泽北路凤城阳光4单元8层" + } + } + } + ] + }, + { + "cid": "3927", + "cname": "物业管理经理/主管", + "position_list": [ + { + "position_name": " 电梯维保人员", + "position_url": "/companyhome/post.aspx?comp=eXNqZHNiMTIz&id=585797", + "company_name": "唐山市永森机电设备有限公司", + "company_url": "/companyhome/company.aspx?comp=eXNqZHNiMTIz", + "job_info": { + "招聘专业:": "", + "招聘人数:": "10人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "45--55岁", + "学历要求:": "高中", + "工作地区:": "高新开发区高新开发区", + "工作经验:": "1-2年", + "职位类别:": "物业管理经理/主管", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/9/12", + "福利": [ + "薪资高于同行业平均水平", + "企业给缴纳住房公积金", + "有带薪年休假", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "待遇:基本工资  3500元,包住、午饭补贴10  元/日,入意外险。", + "岗位职责:负责电梯机房、并道、底坑的日常卫生清洁及一般性保养;以上岗位要求年龄  45-55  岁、身体健康,有较强的执行力、无纹身,好学、踏实、有责任心、上进心,无经验者实行老带新:" + ], + "联系": { + "联系人": "宗女士", + "联系方式": "13663353841", + "Email": "ysjdsb123", + "公司地址": "唐山市高新区大陆阳光" + } + } + }, + { + "position_name": " 客服主管", + "position_url": "/companyhome/post.aspx?comp=Z3VvemlyZW5saQ%3d%3d&id=584927", + "company_name": "唐山国资人力资源服务有限责任公司", + "company_url": "/companyhome/company.aspx?comp=Z3VvemlyZW5saQ%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "18--45岁", + "学历要求:": "大专", + "工作地区:": "路南区路南区", + "工作经验:": "3-5年", + "职位类别:": "物业管理经理/主管", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/12/24", + "有效期限:": "2025/4/9", + "福利": [ + "企业给缴纳保险" + ], + "要求": [ + "岗位职责", + "(1)全面负责客服专员的日常管理工作,协调各部门及时解决客户咨询、报修、投诉问题。", + "(2)每日分析收集整理的相关客诉问题,并负责督导、跟进、客诉的处理进度和结果,对无法解决的问题及时上报项目经理;对重大报修及投诉事件应亲自上门回访。", + "(3)组织客服专员对园区进行每天不少于两次的巡视,对保洁、绿化、消杀、安管及公共设备设施修缮等存在的问题,及时通知相关部门予以处理。", + "(4)每日对维修派工单完成情况进行检查,掌握未完工单的进展情况并及时向项目经理汇报。", + "(5)定期组织客服专员对客户进行走访,确保与客户之间保持良好的沟通关系,同时将收集、整理的客户信息及时传递给相关部门和项目经理。", + "(6)了解掌握本部门员工的思想状况,提高员工的团队精神、敬业精神、服务意识、职业道德及对公司的责任感。", + "(7)完成上级领导交办的其它工作。", + "任职要求:", + "(1)大专及以上学历,45周岁以下;", + "(2)熟悉物业管理相关知识,熟练计算机操作技能;", + "(3)高度的责任感和道德品质、判断与决策力、影响力、良好的人员培养能力;", + "(4)物业客服同岗位工作经验不低于2年,相关岗位工作经验不低于5年。", + "工作时间轮休,缴纳五险" + ], + "联系": { + "联系人": "经理", + "联系方式": "13780453166", + "Email": "314856874@qq.com", + "公司地址": "唐山路南区及火车站周边" + } + } + }, + { + "position_name": " 工程主管", + "position_url": "/companyhome/post.aspx?comp=Z3VvemlyZW5saQ%3d%3d&id=584929", + "company_name": "唐山国资人力资源服务有限责任公司", + "company_url": "/companyhome/company.aspx?comp=Z3VvemlyZW5saQ%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "18--45岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "3-5年", + "职位类别:": "物业管理经理/主管", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/12/24", + "有效期限:": "2025/4/9", + "福利": [ + "企业给缴纳保险" + ], + "要求": [ + "岗位职责", + "(1)全面负责工程维修部各项管理工作,确保设施设备安全、可靠、经济、合理的运行,有效实现节能降耗。", + "(2)负责建立、健全各类设施设备维修、保养及巡检计划,并监督落实。", + "(3)监督本部门快捷有效的完成日常维修维护工作,不断提高客户服务的满意度。", + "(4)制定切实可行的节能措施,有效控制能源浪费", + "(5)负责本部门员工专业技能及服务规范的培训及考核工作,不断提高员工的综合能力和素质。", + "(6)了解掌握部门员工的思想状况,提高员工的团队精神、敬业精神、服务意识、职业道德及对公司的责任感。", + "(7)负责与相关职能部门和外委单位的整体协调工作", + "(8)负责二次装修期间装修方案的审批及督导巡视工作。", + "(9)负责本部门的内务管理和考勤工作。", + "(10)完成公司领导交办的其它工作。", + "任职要求:", + "(1)大专及以上学历,45周岁以下;", + "(2)熟悉物业管理相关知识,熟练计算机操作技能;", + "(3)高度的责任感和道德品质、判断与决策力、影响力、良好的人员培养能力;", + "(4)物业工程管理同岗位工作经验不低于2年,相关岗位工作经验不低于5年。", + "工作时间轮休,缴纳五险" + ], + "联系": { + "联系人": "经理", + "联系方式": "13780453166", + "Email": "314856874@qq.com", + "公司地址": "唐山路南区及火车站周边" + } + } + }, + { + "position_name": " 综合主管", + "position_url": "/companyhome/post.aspx?comp=Z3VvemlyZW5saQ%3d%3d&id=584930", + "company_name": "唐山国资人力资源服务有限责任公司", + "company_url": "/companyhome/company.aspx?comp=Z3VvemlyZW5saQ%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "18--45岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "3-5年", + "职位类别:": "物业管理经理/主管", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/12/24", + "有效期限:": "2025/4/9", + "福利": [ + "企业给缴纳保险" + ], + "要求": [ + "岗位职责", + "(1)负责接待客户咨询、报修、投诉等事项,并做好记录将客户意见、建议及其它需求及时传递给相关部门予以解决", + "(2)为客户办理入住、装修等手续。", + "(3)填写并派发维修派工单,跟进处理结果,并对客户进行回访。", + "(4)保持接待台面、地面上的清洁,除电话、文具及相关表册外,任何物品不得置于台面上。", + "(5)每日核对维修工单完成情况,对未完成工单要予以跟进并及时上报上级领导。", + "(6)遇有重大投诉、报修等事件须迅速上报项目经理进行", + "处理。", + "(7)做好交接班工作,对未完工单的进展情况须掌握清楚(8)负责将客户(业主)的所有资料分类、整理后及时归档。负责项目各类文件及客户(业主)档案的保管工作", + "(9)负责项目各类文件、通知的起草、打印、传递、收发及归档工作。", + "(10)负责办公用品、复印机及其耗材的管理工作。", + "(11)负责对空置房屋钥匙的保管,办理借用登记手续。", + "(12)负责晨会、周例会的会议纪要工作、本部门出勤的统计及上报工作。", + "(13)负责整个辖区的环境卫生及绿化养护等管理工作。", + "(14)负责保洁、绿化月度、年度工作计划的制定。", + "(15)对保洁、绿化各岗位的工作进行管理、协调、督促、巡检,考核。", + "(16)及时处理各类有关环境卫生及绿化养护等出现的问题:", + "时刻了解处理进度,及时向上级领导汇报。(17)做好保洁员、绿化人员的岗位培训及日常考核工作,带领保洁绿化人员配合其它管理服务工作,制止、纠正各类违章行为。", + "(18)定期向项目经理汇报辖区保洁工作情况、环境卫生情况、绿化养护情况并提出合理化建议。", + "(19)完成上级领导交办的其它工作。", + "任职要求:", + "(1)大专及以上学历,45周岁以下;", + "(2)熟悉物业管理相关知识,熟练计算机操作技能;", + "(3)高度的责任感和道德品质、判断与决策力、影响力、良好的人员培养能力;", + "(4)物业管理同岗位工作经验不低于2年,相关岗位工作经验不低于5年。", + "工作时间轮休,缴纳五险" + ], + "联系": { + "联系人": "经理", + "联系方式": "13780453166", + "Email": "314856874@qq.com", + "公司地址": "唐山路南区及火车站周边" + } + } + }, + { + "position_name": " 物业办公室主任", + "position_url": "/companyhome/post.aspx?comp=YnluY3AxMTE%3d&id=582915", + "company_name": "唐山北原农产品市场开发有限责任公司", + "company_url": "/companyhome/company.aspx?comp=YnluY3AxMTE%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "男", + "年龄要求:": "30--45岁", + "学历要求:": "大专", + "工作地区:": "路北区路北区", + "工作经验:": "2-3年", + "职位类别:": "物业管理经理/主管", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "唐山", + "发布日期:": "2024/8/21", + "有效期限:": "2025/8/21", + "福利": [ + "薪资高于同行业平均水平", + "有带薪年休假", + "企业给缴纳保险" + ], + "要求": [ + "1、协助上级处理场区日常事务,巡视物业的清洁、保安、绿化状况,检查各项设施的运作情况并及时安排物业维修保养以保证各项设施的日常运作,对发现的问题及时跟进处理;", + "2、处理客户/业主投诉及询问,并做出及时跟进及向上级回复结果;", + "3、分派及监督各下属员工的工作表现,并对偏差做出调节;", + "4、处理紧急/突发事件;", + "5、协助验收楼宇,处理业主装修方案的审批工作及办理交楼手续,检查并跟进处理违章及违法装修;", + "6、处理好客户/业主与公司各部门,政府职能部门与公司各相关部门之间的关系。", + "要求有物业相关工作经验,工作认真负责、有团队合作精神。" + ], + "联系": { + "联系人": "王经理", + "联系方式": "03152817111", + "Email": "1549912697@qq.com", + "公司地址": "唐山市路北区唐丰南路东汇生活广场" + } + } + } + ] + }, + { + "cid": "3928", + "cname": "路桥工程师", + "position_list": [ + { + "position_name": " 部门", + "position_url": "/companyhome/post.aspx?comp=dHNqczIwMTg%3d&id=585060", + "company_name": "唐山建烁工程项目管理有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNqczIwMTg%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "18--50岁", + "学历要求:": "大专", + "工作地区:": "路北区路北区", + "工作经验:": "3-5年", + "职位类别:": "路桥工程师", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/2/10", + "有效期限:": "2025/3/26", + "福利": [ + "每周有两天休息时间", + "有计划组织员工集体旅游", + "企业给缴纳保险" + ], + "要求": [ + "要求具有二级市政建造师和中级市政工程师证书" + ], + "联系": { + "联系人": "程铭辉", + "联系方式": "17731478483", + "Email": "tsjswhh888@163.com", + "公司地址": "唐山市开平区郑庄子镇王千庄村西(银河路与二环路交叉口南行100米)" + } + } + }, + { + "position_name": " 路桥设计", + "position_url": "/companyhome/post.aspx?comp=c2hlamk%3d&id=159133", + "company_name": "河北昊宇建筑设计有限公司", + "company_url": "/companyhome/company.aspx?comp=c2hlamk%3d", + "job_info": { + "招聘专业:": "土建类", + "招聘人数:": "3人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "20--35岁", + "学历要求:": "本科", + "工作地区:": "高新开发区高新开发区", + "工作经验:": "不限", + "职位类别:": "路桥工程师", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2024/5/29", + "有效期限:": "2025/6/1", + "福利": [], + "要求": [ + "要求:", + "1.道路与桥梁工程、交通工程等专业(全日制本科及以上工程院校);", + "2.相关专业实习生、应届毕业生均可;", + "3.有设计院工作经验,熟悉行业规范,具有独立主持道路桥梁设计的能力优先;", + "4.为人正直、善良、肯上进", + "5.根据实际工作情况,工资面议.", + "待遇:", + "1.入职转正后缴纳六险一金;", + "2.双休、法定假期;", + "3.免费提供住宿;", + "4.每月享有餐费补助;", + "5.定期组织员工体检,外出考察等;", + "公司给你提供广阔平台,职等你的加入!" + ], + "联系": { + "联系人": "李女士", + "联系方式": "15511965159", + "Email": "sheji2008sheji@163.com", + "公司地址": "唐山市高新区建设北路101号高科总部大厦12层" + } + } + } + ] + }, + { + "cid": "3929", + "cname": "房地产中介/交易", + "position_list": [] + }, + { + "cid": "3930", + "cname": "室内外装潢设计", + "position_list": [] + }, + { + "cid": "3931", + "cname": "绘图/建筑制图员", + "position_list": [ + { + "position_name": " 建筑设计工程师", + "position_url": "/companyhome/post.aspx?comp=SldTSjEyMw%3d%3d&id=177451", + "company_name": "唐山吉屋建筑设计咨询有限公司", + "company_url": "/companyhome/company.aspx?comp=SldTSjEyMw%3d%3d", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "不限", + "年龄要求:": "23--36岁", + "学历要求:": "本科", + "工作地区:": "高新开发区高新开发区", + "工作经验:": "1-2年", + "职位类别:": "绘图/建筑制图员", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/17", + "有效期限:": "2025/3/26", + "福利": [ + "薪资高于同行业平均水平", + "企业给缴纳住房公积金", + "有带薪年休假", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "1、负责项目建筑方案、初步及施工图的设计全过程管理;", + "2、建筑专业,大学本科及以上学历;", + "3、有3-5年以上设计院建筑设计工作经验;", + "4、具有较强的建筑设计能力,较高的建筑审美能力;", + "5、熟练使用CAD等专业制图软件和日常办公软件;", + "6、具备优秀的职业道德操守和团队意识,对待工作热情主动;", + "7、有中职以上职称者高薪择优录用;" + ], + "联系": { + "联系人": "人事", + "联系方式": "15130511011", + "Email": "344734108@qq.com", + "公司地址": "唐山高新技术产业园区大庆西道621号" + } + } + }, + { + "position_name": " 建筑设计", + "position_url": "/companyhome/post.aspx?comp=SldTSjEyMw%3d%3d&id=178460", + "company_name": "唐山吉屋建筑设计咨询有限公司", + "company_url": "/companyhome/company.aspx?comp=SldTSjEyMw%3d%3d", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "12000以上", + "要求性别:": "不限", + "年龄要求:": "25--35岁", + "学历要求:": "本科", + "工作地区:": "高新开发区高新开发区", + "工作经验:": "1-2年", + "职位类别:": "绘图/建筑制图员", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/2/7", + "有效期限:": "2025/3/26", + "福利": [ + "薪资高于同行业平均水平", + "企业给缴纳住房公积金", + "有带薪年休假", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "岗位要求:", + "1、熟练掌握办公自动化、CAD、PS等相关软件操作;", + "2、相关专业大专以上学历;", + "3、熟悉国内及地方设计规范;", + "4、具有良好的职业道德和敬业精神,责任心强,有团队精神;", + "5、有行业经验者优先" + ], + "联系": { + "联系人": "人事", + "联系方式": "15130511011", + "Email": "lcmsjy@163.com", + "公司地址": "唐山市高新区大庆西道与卫国路交叉口西北200米" + } + } + }, + { + "position_name": " 建筑设计师", + "position_url": "/companyhome/post.aspx?comp=aGViZWlxaWFv&id=584214", + "company_name": "河北淇奥工程设计有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlxaWFv", + "job_info": { + "招聘专业:": "相关专业", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "22--35岁", + "学历要求:": "本科", + "工作地区:": "路北区路北区", + "工作经验:": "不限", + "职位类别:": "绘图/建筑制图员", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2024/12/25", + "有效期限:": "2025/5/30", + "福利": [ + "每周有两天休息时间", + "企业给缴纳住房公积金", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "1.建筑设计专业及相关专业,熟练掌握相关专业综合知识,有经验者优先;", + "2.熟练使用相关软件,能够完成建筑设计工作;", + "3.有较强的学习能力、沟通能力和执行能力;", + "4.工作细心、主动,责任心强,  具有  团队协作精神,能够承受较强的工作压力;", + "5.服从领导工作安排,按时按量高标准完成设计任务。", + "薪资:五险一金、双休、国家法定节假日。" + ], + "联系": { + "联系人": "张先生", + "联系方式": "0315-2855059", + "Email": "aa95828@163.com", + "公司地址": "路北区" + } + } + }, + { + "position_name": " 结构设计师", + "position_url": "/companyhome/post.aspx?comp=c2hlamk%3d&id=183478", + "company_name": "河北昊宇建筑设计有限公司", + "company_url": "/companyhome/company.aspx?comp=c2hlamk%3d", + "job_info": { + "招聘专业:": "土建类", + "招聘人数:": "8人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "18--60岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "绘图/建筑制图员", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2024/5/29", + "有效期限:": "2025/6/1", + "福利": [], + "要求": [ + "要求:", + "1.土木工程/工业设计等专业(全日制本科及以上工程院校);", + "2.相关专业实习生、应届毕业生均可;", + "3.有设计院工作经验,熟悉行业规范,具有独立主持建筑施工图设计的能力优先;", + "4.为人正直、善良、肯上进", + "5.根据实际工作情况,工资面议.", + "待遇:", + "1.入职转正后缴纳六险一金;", + "2.双休、法定假期;", + "3.免费提供住宿;", + "4.每月享有餐费补助;", + "5.定期组织员工体检,外出考察等;", + "公司给你提供广阔平台,职等你的加入!" + ], + "联系": { + "联系人": "李女士", + "联系方式": "15511965159", + "Email": "sheji2008sheji@163.com", + "公司地址": "唐山市高新区建设北路101号高科总部大厦12层" + } + } + }, + { + "position_name": " 建筑设计", + "position_url": "/companyhome/post.aspx?comp=c2hlamk%3d&id=177939", + "company_name": "河北昊宇建筑设计有限公司", + "company_url": "/companyhome/company.aspx?comp=c2hlamk%3d", + "job_info": { + "招聘专业:": "工科", + "招聘人数:": "10人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "20--35岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "绘图/建筑制图员", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2024/5/29", + "有效期限:": "2025/6/1", + "福利": [], + "要求": [ + "要求:", + "1.建筑学/土木工程/工业设计等专业(全日制本科及以上工程院校);", + "2.相关专业实习生、应届毕业生均可;", + "3.有设计院工作经验,熟悉行业规范,具有独立主持建筑施工图设计的能力优先;", + "4.为人正直、善良、肯上进", + "5.根据实际工作情况,工资面议.", + "待遇:", + "1.入职转正后缴纳六险一金;", + "2.双休、法定假期;", + "3.免费提供住宿;", + "4.每月享有餐费补助;", + "5.定期组织员工体检,外出考察等;", + "公司给你提供广阔平台,职等你的加入!" + ], + "联系": { + "联系人": "李女士", + "联系方式": "15511965159", + "Email": "sheji2008sheji@163.com", + "公司地址": "唐山市高新区建设北路101号高科总部大厦12层" + } + } + }, + { + "position_name": " 建筑方案设计师", + "position_url": "/companyhome/post.aspx?comp=c2hlamk%3d&id=202119", + "company_name": "河北昊宇建筑设计有限公司", + "company_url": "/companyhome/company.aspx?comp=c2hlamk%3d", + "job_info": { + "招聘专业:": "土建类", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "18--60岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "绘图/建筑制图员", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2024/5/29", + "有效期限:": "2025/6/1", + "福利": [], + "要求": [ + "要求:", + "1.建筑学/环境艺术设计等专业(全日制本科及以上工程院校);", + "2.相关专业实习生、应届毕业生均可;", + "3.有设计院工作经验,熟悉行业规范,具有独立主持建筑施工图设计的能力优先;", + "4.为人正直、善良、肯上进", + "5.根据实际工作情况,工资面议.", + "待遇:", + "1.入职转正后缴纳六险一金;", + "2.双休、法定假期;", + "3.免费提供住宿;", + "4.每月享有餐费补助;", + "5.定期组织员工体检,外出考察等;", + "公司给你提供广阔平台,职等你的加入!" + ], + "联系": { + "联系人": "李女士", + "联系方式": "15511965159", + "Email": "sheji2008sheji@163.com", + "公司地址": "唐山市高新区建设北路101号高科总部大厦12层" + } + } + } + ] + }, + { + "cid": "3932", + "cname": "工程监理", + "position_list": [ + { + "position_name": " 电气监理工程师", + "position_url": "/companyhome/post.aspx?comp=dHNsZg%3d%3d&id=204072", + "company_name": "唐山联发工程管理有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNsZg%3d%3d", + "job_info": { + "招聘专业:": "电气自动化", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "18--60岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "工程监理", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2026/3/19", + "福利": [], + "要求": [ + "主要负责施工现场的电气专业监理验收及资料签证,男,60周岁以内,女,55周岁以内。有意面谈" + ], + "联系": { + "联系人": "孙经理", + "联系方式": "0315-8192603", + "Email": "sunbo646689@126.com", + "公司地址": "丰南区光明大街金盛花园底商231、233、235、237号" + } + } + }, + { + "position_name": " 机电监理工程师", + "position_url": "/companyhome/post.aspx?comp=dHNsZg%3d%3d&id=581243", + "company_name": "唐山联发工程管理有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNsZg%3d%3d", + "job_info": { + "招聘专业:": "机电类", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "18--60岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "工程监理", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2026/3/19", + "福利": [], + "要求": [ + "在丰南、唐山、外县区范围内进行现场监理工作,根据项目情况,有路途补助,部分工地可能需住宿。男,60周岁以内,女,55周岁以内,有意面谈。" + ], + "联系": { + "联系人": "孙经理", + "联系方式": "0315-8192603", + "Email": "sunbo646689@126.com", + "公司地址": "丰南区光明大街金盛花园底商231、233、235、237号" + } + } + }, + { + "position_name": " 土建监理工程师", + "position_url": "/companyhome/post.aspx?comp=dHNsZg%3d%3d&id=154952", + "company_name": "唐山联发工程管理有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNsZg%3d%3d", + "job_info": { + "招聘专业:": "土建类", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "男", + "年龄要求:": "35--55岁", + "学历要求:": "大专", + "工作地区:": "国外其它国家", + "工作经验:": "不限", + "职位类别:": "工程监理", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2026/3/19", + "福利": [], + "要求": [ + "招聘现场土建专业监理工程师。主要负责施工现场的土建专业监理、验收及资料签证。", + "要求:男,35-55周岁以内,优秀者年龄可以放宽,土建专业,施工技术及现场经验丰富,能出国,薪资8000--10000元。有意面谈" + ], + "联系": { + "联系人": "孙经理", + "联系方式": "0315-8192603", + "Email": "sunbo646689@126.com", + "公司地址": "丰南区光明大街金盛花园底商231、233、235、237号" + } + } + }, + { + "position_name": " 给排水监理工程师", + "position_url": "/companyhome/post.aspx?comp=dHNsZg%3d%3d&id=154951", + "company_name": "唐山联发工程管理有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNsZg%3d%3d", + "job_info": { + "招聘专业:": "水利类", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "18--60岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "工程监理", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2026/3/19", + "福利": [], + "要求": [ + "在唐山市丰南区及外县区周边范围内进行现场监理工作,", + "部分工地需要住宿,有相应补助及对应的奖惩制度。", + "男,60周岁以内,女,55周岁以内。有意面谈" + ], + "联系": { + "联系人": "孙经理", + "联系方式": "0315-8192603", + "Email": "sunbo646689@126.com", + "公司地址": "丰南区光明大街金盛花园底商231、233、235、237号" + } + } + }, + { + "position_name": " 工程助理", + "position_url": "/companyhome/post.aspx?comp=emp0YzEyMw%3d%3d&id=181898", + "company_name": "唐山市中建天诚建筑装饰工程有限公司", + "company_url": "/companyhome/company.aspx?comp=emp0YzEyMw%3d%3d", + "job_info": { + "招聘专业:": "土建类", + "招聘人数:": "10人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "20--35岁", + "学历要求:": "高中", + "工作地区:": "路北区路北区", + "工作经验:": "不限", + "职位类别:": "工程监理", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/17", + "有效期限:": "2025/5/27", + "福利": [], + "要求": [ + "有吃苦耐劳精神,熟练应用word文档、Microsoft  Office  Excel,具有一定的工程经验。" + ], + "联系": { + "联系人": "赵女士", + "联系方式": "0315-7824444", + "Email": "23356247@qq.com", + "公司地址": "7824444" + } + } + }, + { + "position_name": " 技术人员(道路与桥梁)", + "position_url": "/companyhome/post.aspx?comp=dHN6aG9uZ2Rp&id=569060", + "company_name": "唐山中地地质工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN6aG9uZ2Rp", + "job_info": { + "招聘专业:": "", + "招聘人数:": "7人", + "工作类型:": "不限", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "25--45岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "5-8年", + "职位类别:": "工程监理", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/12", + "有效期限:": "2025/4/2", + "福利": [ + "薪资高于同行业平均水平", + "每周有两天休息时间", + "企业给缴纳住房公积金", + "有带薪年休假", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "年龄25-45周岁,中级工程师以上,有5年以上从事本专业工作经历" + ], + "联系": { + "联系人": "湛丹", + "联系方式": "0315-5266266", + "Email": "tszdzhbgs@163.com", + "公司地址": "唐山市北新西道157号" + } + } + }, + { + "position_name": " 总监理工程师", + "position_url": "/companyhome/post.aspx?comp=d2xwMTk5OA%3d%3d&id=252436", + "company_name": "唐山绿景房地产开发有限公司", + "company_url": "/companyhome/company.aspx?comp=d2xwMTk5OA%3d%3d", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "30--55岁", + "学历要求:": "大专", + "工作地区:": "滦南县滦南县", + "工作经验:": "3-5年", + "职位类别:": "工程监理", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/9/9", + "有效期限:": "2025/9/7", + "福利": [ + "企业给缴纳保险" + ], + "要求": [ + "第一    有全国注册监理工程师资格;", + "第二    有现场总监理工程师监理工作经验;具备现场总监工作经验,责任心强,能够独立完成现场总监职责范围内工作。" + ], + "联系": { + "联系人": "曹女士", + "联系方式": "15324150121", + "Email": "15324150121@163.com", + "公司地址": "滦南县建设路绿景中心城西门南侧商业楼" + } + } + } + ] + }, + { + "cid": "3933", + "cname": "物业顾问", + "position_list": [] + }, + { + "cid": "3934", + "cname": "管道", + "position_list": [ + { + "position_name": " 压力管道工程师", + "position_url": "/companyhome/post.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d&id=201296", + "company_name": "唐山天鸿建设集团有限责任公司", + "company_url": "/companyhome/company.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d", + "job_info": { + "招聘专业:": "工科", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "男", + "年龄要求:": "30--50岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "管道", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/14", + "有效期限:": "2025/8/14", + "福利": [], + "要求": [ + "1、压力管道年审;", + "2、压力管道体系文件管理;", + "3、施工方案及技术指导。", + "要求:", + "1、男,大专以上学历,焊接类专业最佳,3年以上压力管道安装及资料填报工作经验;", + "2、掌握及应用压力管道工程施工及验收相关的规范、标准、图集;", + "3、优秀者可降低录用标准。" + ], + "联系": { + "联系人": "黄先生", + "联系方式": "0315-5256986、18903150558", + "Email": "tianhongjianan@163.com", + "公司地址": "开平区税务庄北街" + } + } + } + ] + }, + { + "cid": "3935", + "cname": "建筑施工管理", + "position_list": [ + { + "position_name": " 建筑证书考试人员", + "position_url": "/companyhome/post.aspx?comp=emp0YzEyMw%3d%3d&id=581013", + "company_name": "唐山市中建天诚建筑装饰工程有限公司", + "company_url": "/companyhome/company.aspx?comp=emp0YzEyMw%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "100人", + "工作类型:": "不限", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "22--55岁", + "学历要求:": "高中", + "工作地区:": "路北区路北区", + "工作经验:": "1年及以下", + "职位类别:": "建筑施工管理", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/17", + "有效期限:": "2025/5/27", + "福利": [], + "要求": [ + "要求:无社保", + "内容:(1)考安全员A证", + "(2)考安全员C证", + "(3)考二级建造师+B证", + "福利:(1)考试所有费用由本单位承担", + "(2)考试合格补贴300—2000元(由证书等级所定)", + "(3)刚毕业大学生优先,待遇优待。", + "截止时间:8.13—8.20" + ], + "联系": { + "联系人": "杨女士", + "联系方式": "0315-7834444", + "Email": "834208893@qq.com", + "公司地址": "7824444" + } + } + }, + { + "position_name": " 一级市政建造师+高职+B", + "position_url": "/companyhome/post.aspx?comp=enAyODIzMDIy&id=581088", + "company_name": "河北中磐建设工程有限公司", + "company_url": "/companyhome/company.aspx?comp=enAyODIzMDIy", + "job_info": { + "招聘专业:": "", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "不限", + "年龄要求:": "25--45岁", + "学历要求:": "本科", + "工作地区:": "河北省河北", + "工作经验:": "3-5年", + "职位类别:": "建筑施工管理", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/14", + "有效期限:": "2025/5/10", + "福利": [ + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "企业给缴纳保险" + ], + "要求": [ + "1、要求有一级市政建造师,可兼职,也可人证合一。", + "2、人证合一要求有施工现场管理经验,可外驻管理现场。" + ], + "联系": { + "联系人": "白女士", + "联系方式": "15097571309", + "Email": "tscdszyl@163.com", + "公司地址": "唐山市路南区南湖影视基地沿街商业C6栋" + } + } + }, + { + "position_name": " 生产经理", + "position_url": "/companyhome/post.aspx?comp=cHRqejg4OA%3d%3d&id=203230", + "company_name": "唐山鹏通建筑工程有限责任公司", + "company_url": "/companyhome/company.aspx?comp=cHRqejg4OA%3d%3d", + "job_info": { + "招聘专业:": "土建类", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "25--45岁", + "学历要求:": "高中", + "工作地区:": "丰润区丰润区", + "工作经验:": "不限", + "职位类别:": "建筑施工管理", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/6", + "有效期限:": "2025/5/28", + "福利": [], + "要求": [ + "有建筑工程生产管理相关工作经验5年以上,能独立完成一个工程中的生产管理,协调工作,要求有较好的沟通能力,要求认真负责,责任心强。45周岁以下,土木工程专业" + ], + "联系": { + "联系人": "崔女士", + "联系方式": "15531516114", + "Email": "704680962@qq.com", + "公司地址": "唐山丰润区林荫路西侧(中建城304座21号)" + } + } + }, + { + "position_name": " 安全员", + "position_url": "/companyhome/post.aspx?comp=cHRqejg4OA%3d%3d&id=203233", + "company_name": "唐山鹏通建筑工程有限责任公司", + "company_url": "/companyhome/company.aspx?comp=cHRqejg4OA%3d%3d", + "job_info": { + "招聘专业:": "土建类", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "25--45岁", + "学历要求:": "高中", + "工作地区:": "丰润区丰润区", + "工作经验:": "不限", + "职位类别:": "建筑施工管理", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/6", + "有效期限:": "2025/5/28", + "福利": [], + "要求": [ + "能独立完成一个建筑工程施工现场的安全管理工作,要求有建筑工程安全相关工作经验3年以上,建筑工程相关专业" + ], + "联系": { + "联系人": "崔女士", + "联系方式": "15531516114", + "Email": "704680962@qq.com", + "公司地址": "唐山丰润区林荫路西侧(中建城304座21号)" + } + } + }, + { + "position_name": " 项目经理", + "position_url": "/companyhome/post.aspx?comp=cHRqejg4OA%3d%3d&id=208393", + "company_name": "唐山鹏通建筑工程有限责任公司", + "company_url": "/companyhome/company.aspx?comp=cHRqejg4OA%3d%3d", + "job_info": { + "招聘专业:": "土建类", + "招聘人数:": "3人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "男", + "年龄要求:": "35--45岁", + "学历要求:": "大专", + "工作地区:": "丰润区丰润区", + "工作经验:": "8-10年", + "职位类别:": "建筑施工管理", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/6", + "有效期限:": "2025/5/28", + "福利": [], + "要求": [ + "1、30-45周岁,大专以上学历,工民建或者建筑工程管理等相关专业。", + "2、具有五年以上建筑工程管理经验,熟悉设计、规划、配套、施工等业务流程,掌握建筑、结构、材料和现场施工监控要点,熟悉相关法律、法规。", + "3、具有较强的沟通、协调能力和一定的管理能力,具备领导才能,善于沟通和统筹管理。", + "4、具有大型综合建筑项目管理经验者优先。" + ], + "联系": { + "联系人": "崔女士", + "联系方式": "15531516114", + "Email": "704680962@qq.com", + "公司地址": "唐山丰润区林荫路西侧(中建城304座21号)" + } + } + }, + { + "position_name": " 安全文明施工负责人", + "position_url": "/companyhome/post.aspx?comp=cHRqejg4OA%3d%3d&id=213328", + "company_name": "唐山鹏通建筑工程有限责任公司", + "company_url": "/companyhome/company.aspx?comp=cHRqejg4OA%3d%3d", + "job_info": { + "招聘专业:": "建筑", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "男", + "年龄要求:": "30--40岁", + "学历要求:": "大专", + "工作地区:": "新区(丰润区)新区(丰润区)", + "工作经验:": "3-5年", + "职位类别:": "建筑施工管理", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "丰润", + "发布日期:": "2025/3/6", + "有效期限:": "2025/5/28", + "福利": [], + "要求": [ + "要求有房屋建筑现场安全文明施工管理经验3年以上,责任心强,沟通能力强。" + ], + "联系": { + "联系人": "崔女士", + "联系方式": "15531516114", + "Email": "704680962@qq.com", + "公司地址": "唐山丰润区林荫路西侧(中建城304座21号)" + } + } + }, + { + "position_name": " 市政道路工程技术负责人", + "position_url": "/companyhome/post.aspx?comp=cHRqejg4OA%3d%3d&id=579906", + "company_name": "唐山鹏通建筑工程有限责任公司", + "company_url": "/companyhome/company.aspx?comp=cHRqejg4OA%3d%3d", + "job_info": { + "招聘专业:": "市政专业,道路工程", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "男", + "年龄要求:": "25--50岁", + "学历要求:": "大专", + "工作地区:": "新区(丰润区)新区(丰润区)", + "工作经验:": "5-8年", + "职位类别:": "建筑施工管理", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "丰润区", + "发布日期:": "2025/3/6", + "有效期限:": "2025/5/28", + "福利": [], + "要求": [ + "要求有市政及道路工程工作经验5年以上,能独立完成市政道路工程全过程技术及管理工作,工作认真负责,沟通能力强,大专以上学历,年龄25-50周岁,无经验勿扰。" + ], + "联系": { + "联系人": "崔女士", + "联系方式": "15531516114", + "Email": "704680962@qq.com", + "公司地址": "唐山丰润区林荫路西侧(中建城304座21号)" + } + } + }, + { + "position_name": " 工程部经理", + "position_url": "/companyhome/post.aspx?comp=cHRqejg4OA%3d%3d&id=580503", + "company_name": "唐山鹏通建筑工程有限责任公司", + "company_url": "/companyhome/company.aspx?comp=cHRqejg4OA%3d%3d", + "job_info": { + "招聘专业:": "工程管理类专业", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "男", + "年龄要求:": "35--50岁", + "学历要求:": "大专", + "工作地区:": "新区(丰润区)新区(丰润区)", + "工作经验:": "8-10年", + "职位类别:": "建筑施工管理", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/6", + "有效期限:": "2025/5/28", + "福利": [], + "要求": [ + "要求有建筑工程房屋建筑管理经验8年以上工作经验,工民建、土木工程等建筑相关专业,持有建造师证,工程师证,一级建造师优先;具有深厚的建筑工程技术专业知识,,具有良好的执行力,良好的人事协调能力和沟通能力,有较好的文字表达能力和口头表达能力,具有高度的责任心。" + ], + "联系": { + "联系人": "崔女士", + "联系方式": "15531516114", + "Email": "704680962@qq.com", + "公司地址": "唐山丰润区林荫路西侧(中建城304座21号)" + } + } + }, + { + "position_name": " 市政工程项目经理", + "position_url": "/companyhome/post.aspx?comp=Z2NwNzkxMTAz&id=219836", + "company_name": "河北远通建设有限责任公司", + "company_url": "/companyhome/company.aspx?comp=Z2NwNzkxMTAz", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "18--60岁", + "学历要求:": "大专", + "工作地区:": "高新开发区高新开发区", + "工作经验:": "不限", + "职位类别:": "建筑施工管理", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/3", + "有效期限:": "2026/1/6", + "福利": [], + "要求": [ + "有建造师证书者优先录用" + ], + "联系": { + "联系人": "高女士", + "联系方式": "13832582666", + "Email": "1071017563@qq.com", + "公司地址": "高新区庆北道南侧、卫国路西" + } + } + }, + { + "position_name": " 资料员", + "position_url": "/companyhome/post.aspx?comp=Z2NwNzkxMTAz&id=220011", + "company_name": "河北远通建设有限责任公司", + "company_url": "/companyhome/company.aspx?comp=Z2NwNzkxMTAz", + "job_info": { + "招聘专业:": "管理工程类", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "2001--3500", + "要求性别:": "男", + "年龄要求:": "18--60岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "建筑施工管理", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/3", + "有效期限:": "2026/1/6", + "福利": [], + "要求": [ + "有工作经验" + ], + "联系": { + "联系人": "高女士", + "联系方式": "13832582666", + "Email": "1071017563@qq.com", + "公司地址": "高新区庆北道南侧、卫国路西" + } + } + }, + { + "position_name": " 水利工程项目经理", + "position_url": "/companyhome/post.aspx?comp=Z2NwNzkxMTAz&id=581376", + "company_name": "河北远通建设有限责任公司", + "company_url": "/companyhome/company.aspx?comp=Z2NwNzkxMTAz", + "job_info": { + "招聘专业:": "水利工程类", + "招聘人数:": "2人", + "工作类型:": "不限", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "18--60岁", + "学历要求:": "大专", + "工作地区:": "高新开发区高新开发区", + "工作经验:": "1-2年", + "职位类别:": "建筑施工管理", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/3", + "有效期限:": "2026/1/6", + "福利": [], + "要求": [ + "要求有工作经验,有水利建造师者优先录用。" + ], + "联系": { + "联系人": "高女士", + "联系方式": "13832582666", + "Email": "1071017563@qq.com", + "公司地址": "高新区庆北道南侧、卫国路西" + } + } + }, + { + "position_name": " 建筑项目经理", + "position_url": "/companyhome/post.aspx?comp=Z2NwNzkxMTAz&id=581998", + "company_name": "河北远通建设有限责任公司", + "company_url": "/companyhome/company.aspx?comp=Z2NwNzkxMTAz", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "男", + "年龄要求:": "18--60岁", + "学历要求:": "高中", + "工作地区:": "河北以外省份新疆", + "工作经验:": "不限", + "职位类别:": "建筑施工管理", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/3", + "有效期限:": "2026/1/6", + "福利": [], + "要求": [ + "要求具备建筑专业二级建造师执业资格,有施工经验者优先录用。" + ], + "联系": { + "联系人": "高女士", + "联系方式": "13703255028", + "Email": "1071017563@qq.com", + "公司地址": "高新区庆北道南侧、卫国路西" + } + } + }, + { + "position_name": " 技术负责人", + "position_url": "/companyhome/post.aspx?comp=dGFuZ3NoYW5sdXFpbmc4ODg%3d&id=585098", + "company_name": "唐山市陆清建筑工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dGFuZ3NoYW5sdXFpbmc4ODg%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "不限", + "年龄要求:": "30--55岁", + "学历要求:": "大专", + "工作地区:": "路北区路北区", + "工作经验:": "3-5年", + "职位类别:": "建筑施工管理", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/2/17", + "有效期限:": "2025/5/20", + "福利": [], + "要求": [ + "1、3年以上相关市政项目工作经验,熟悉市政施工现场施工技术工艺流程,规范", + "2、有独立编制管理方案的能力,独立对设计图纸复核能力。", + "3、  ?有很好的的现场沟通、协调、组织能力。", + "4、有二级建造师或中级职称优先" + ], + "联系": { + "联系人": "李经理", + "联系方式": "17713107786", + "Email": "tangshanluqing888", + "公司地址": "河北省唐山市路北区尚座商业街" + } + } + }, + { + "position_name": " 项目经理", + "position_url": "/companyhome/post.aspx?comp=dGFuZ3NoYW5sdXFpbmc4ODg%3d&id=585097", + "company_name": "唐山市陆清建筑工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dGFuZ3NoYW5sdXFpbmc4ODg%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "12000以上", + "要求性别:": "不限", + "年龄要求:": "30--55岁", + "学历要求:": "大专", + "工作地区:": "路北区路北区", + "工作经验:": "3-5年", + "职位类别:": "建筑施工管理", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/2/17", + "有效期限:": "2025/5/20", + "福利": [], + "要求": [ + "1、大专及以上学历,建筑、土木、结构类相关专业;", + "2、具有3年以上项目工作经验;作为项目经理至少完整操作过一个项目;", + "3、熟悉建筑施工企业管理制度、体系、规范、标准及相关工作的运作流程;", + "4、熟悉建筑市场的相关政策,能够协调相关单位工作;", + "5、熟悉工程质量管理、安全管理、进度管理、成本管理、技术管理等方面工作,具备协调能力和处理解决问题的能力,有出色的组织管理才能;", + "6、有较强的职业意识、责任心、工作主动性和严谨性,并具有较强的沟通协调和团队协作能力;", + "7、熟练使用办公软件,会用CAD作图。", + "8、有二级建造师及以上证书者优先招录。" + ], + "联系": { + "联系人": "李经理", + "联系方式": "17713107786", + "Email": "tangshanluqing888", + "公司地址": "河北省唐山市路北区尚座商业街" + } + } + }, + { + "position_name": " 装修项目经理", + "position_url": "/companyhome/post.aspx?comp=dHN4ZGpz&id=581978", + "company_name": "河北鑫鼎建设工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN4ZGpz", + "job_info": { + "招聘专业:": "建筑、土木、结构类相关专业;", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "男", + "年龄要求:": "25--50岁", + "学历要求:": "中专", + "工作地区:": "唐山市唐山市", + "工作经验:": "5-8年", + "职位类别:": "建筑施工管理", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/2/17", + "有效期限:": "2025/9/5", + "福利": [], + "要求": [ + "1、中专及以上学历,建筑、土木、结构类相关专业;", + "2、具有5年以上项目工作经验;作为项目经理至少完整操作过一个项目;", + "3、熟悉建筑施工企业管理制度、体系、规范、标准及相关工作的运作流程;", + "4、熟悉建筑市场的相关政策,能够协调相关单位工作;", + "5、熟悉工程质量管理、安全管理、进度管理、成本管理、技术管理等方面工作,具备协调能力和处理解决问题的能力,有出色的组织管理才能;", + "6、有较强的职业意识、责任心、工作主动性和严谨性,并具有较强的沟通协调和团队协作能力;", + "7、熟练使用办公软件,会用CAD作图。", + "8、有二级建造师及以上证书者优先招录。" + ], + "联系": { + "联系人": "单女士", + "联系方式": "15230935020", + "Email": "tsxdjs@163.com", + "公司地址": "河北省唐山市路北区骏安园101-2号二层底商" + } + } + }, + { + "position_name": " 副总经理", + "position_url": "/companyhome/post.aspx?comp=dGFuZ3NoYW5sdXFpbmc4ODg%3d&id=585089", + "company_name": "唐山市陆清建筑工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dGFuZ3NoYW5sdXFpbmc4ODg%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "12000以上", + "要求性别:": "不限", + "年龄要求:": "40--55岁", + "学历要求:": "大专", + "工作地区:": "路北区路北区", + "工作经验:": "10年以上", + "职位类别:": "建筑施工管理", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/2/17", + "有效期限:": "2025/5/20", + "福利": [], + "要求": [ + "1.建筑类相关专业。", + "2.年龄在40周岁以上;", + "3.十年以上工作经验,三年同岗位工作经验,主持过大型项目建筑施工管理工作者优先;", + "4.熟悉项目施工过程中各类施工项目的进度、质量、成本等管理,可以独立组织完成从项目筹备到竣工验收、最终结算等环节的全程管理;", + "5.具备优秀的计划管控、沟通协调和团队管理能力。" + ], + "联系": { + "联系人": "李经理", + "联系方式": "17713107786", + "Email": "tangshanluqing888", + "公司地址": "河北省唐山市路北区尚座商业街" + } + } + }, + { + "position_name": " 管培生", + "position_url": "/companyhome/post.aspx?comp=enAyODIzMDIy&id=581056", + "company_name": "河北中磐建设工程有限公司", + "company_url": "/companyhome/company.aspx?comp=enAyODIzMDIy", + "job_info": { + "招聘专业:": "", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "25--30岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "建筑施工管理", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/2/14", + "有效期限:": "2025/5/10", + "福利": [ + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "企业给缴纳保险" + ], + "要求": [ + "1、此职位为储备管理岗,面向优秀应、往届毕业生,有无经验均可。", + "2、要求学习能力、沟通能力强,优秀毕业生、优秀干部优先。", + "3、要求责任心强、适应力强。" + ], + "联系": { + "联系人": "尹女士", + "联系方式": "0315-2823022", + "Email": "tscdszyl@163.com", + "公司地址": "唐山市路南区南湖影视基地沿街商业C6栋" + } + } + }, + { + "position_name": " 市政管道工程师", + "position_url": "/companyhome/post.aspx?comp=dHN4ZGpz&id=584989", + "company_name": "河北鑫鼎建设工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN4ZGpz", + "job_info": { + "招聘专业:": "建筑、土木、结构类相关专业;", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "12000以上", + "要求性别:": "不限", + "年龄要求:": "30--50岁", + "学历要求:": "中专", + "工作地区:": "河北省河北", + "工作经验:": "5-8年", + "职位类别:": "建筑施工管理", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/1/7", + "有效期限:": "2025/9/5", + "福利": [], + "要求": [ + "1、大专以上学历,建筑、市政、机电类相关专业;", + "2、具有5年以上项目工作经验;至少完整主持过一个项目;", + "3、熟悉相关工程标准、规范,熟悉工程规划设计方案、专项技术工程方案、工程技术方案的审批;", + "4、了解建筑施工企业管理制度、体系、规范、标准及相关工作的运作流程;", + "5、熟悉工程质量管理、安全管理、进度管理、成本管理、技术管理等方面工作,具备协调能力和处理解决问题的能力,有出色的组织管理才能;", + "6、有较强的职业意识、责任心、工作主动性和严谨性,并具有较强的沟通协调和团队协作能力;", + "7、有二级建造师及以上证书者优先招录。" + ], + "联系": { + "联系人": "单女士", + "联系方式": "15230935020", + "Email": "tsxdjs@163.com", + "公司地址": "河北省唐山市路北区西北新西道竹安北路288号C-1号办公楼三层" + } + } + }, + { + "position_name": " 市政技术负责人", + "position_url": "/companyhome/post.aspx?comp=enAyODIzMDIy&id=559679", + "company_name": "河北中磐建设工程有限公司", + "company_url": "/companyhome/company.aspx?comp=enAyODIzMDIy", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "男", + "年龄要求:": "30--45岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "3-5年", + "职位类别:": "建筑施工管理", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/12/19", + "有效期限:": "2025/5/10", + "福利": [ + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "企业给缴纳保险" + ], + "要求": [ + "1、5年以上相关市政项目工作经验,熟悉市政施工现场施工技术工艺流程,规范", + "2、有独立编制管理方案的能力,独立对设计图纸复核能力。", + "3、  有很好的的现场沟通、协调、组织能力。", + "4、有二级建造师或中级职称优先" + ], + "联系": { + "联系人": "尹女士", + "联系方式": "0315-2823022", + "Email": "tscdszyl@163.com", + "公司地址": "唐山市路南区南湖影视基地沿街商业C6栋" + } + } + }, + { + "position_name": " 实习生", + "position_url": "/companyhome/post.aspx?comp=enAyODIzMDIy&id=205929", + "company_name": "河北中磐建设工程有限公司", + "company_url": "/companyhome/company.aspx?comp=enAyODIzMDIy", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "10人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "男", + "年龄要求:": "18--60岁", + "学历要求:": "本科", + "工作地区:": "中国中国", + "工作经验:": "不限", + "职位类别:": "建筑施工管理", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2024/12/19", + "有效期限:": "2025/5/10", + "福利": [ + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "企业给缴纳保险" + ], + "要求": [ + "1、建筑、市政、园林、绿化类或建筑施工相关专业,本科及以上学历应届生优先考虑;有无经验均可;", + "2、熟练操作CAD软件,会使用相关仪器,识图能力强;", + "3、认真负责、善于沟通,具备良好的团队合作精神和职业操守。" + ], + "联系": { + "联系人": "尹女士", + "联系方式": "0315-2823022", + "Email": "tscdszyl@163.com", + "公司地址": "唐山市路南区南湖影视基地沿街商业C6栋" + } + } + }, + { + "position_name": " 安全员", + "position_url": "/companyhome/post.aspx?comp=UlVJTUVJ&id=218635", + "company_name": "河北瑞美建设有限公司", + "company_url": "/companyhome/company.aspx?comp=UlVJTUVJ", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "男", + "年龄要求:": "26--45岁", + "学历要求:": "中专", + "工作地区:": "河北以外省份内蒙古", + "工作经验:": "3-5年", + "职位类别:": "建筑施工管理", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/11/28", + "有效期限:": "2025/4/19", + "福利": [ + "薪资高于同行业平均水平", + "提供免费工作餐或餐补", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "岗位职责:", + "1、监督安全生产,确保各项安全措施和规章制度得到严格执行。", + "2、定期检查生产现场,识别潜在的安全隐患,并提出改进措施。", + "3、提高员工安全意识和技能,确保施工人员在安全的环境中作业施工。", + "4、日常安全作业手续。", + "5、有安全员证书。", + "项目地点:包头市" + ], + "联系": { + "联系人": "王女士", + "联系方式": "18903389180", + "Email": "ruimei_js@126.com", + "公司地址": "唐山市路北区友谊路与翔云道交叉口汇金中心C座607" + } + } + }, + { + "position_name": " 施工员", + "position_url": "/companyhome/post.aspx?comp=UlVJTUVJ&id=203021", + "company_name": "河北瑞美建设有限公司", + "company_url": "/companyhome/company.aspx?comp=UlVJTUVJ", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "男", + "年龄要求:": "27--50岁", + "学历要求:": "本科", + "工作地区:": "中国中国", + "工作经验:": "5-8年", + "职位类别:": "建筑施工管理", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2024/11/28", + "有效期限:": "2025/4/19", + "福利": [ + "薪资高于同行业平均水平", + "提供免费工作餐或餐补", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "注意:项目在省外,能去的再投简历!!!", + "【任职要求】:", + "1、男,27-50岁,工民建或工程管理相关专业,  有4年以上组织现场施工的工作经验;", + "2、熟悉建筑规范、施工工艺、项目管理、能识图;熟练操作办公软件及CAD等专业软件;", + "3、能驻项目(包头项目),服从项目调配,做好项目与施工队、施工班组的协调配合,排除施工障碍,保证完成施工计划;", + "4、有钢结构工程、装修工程、冶金工业工程施工经验者优先录用", + "【岗位职责】:", + "1、施工现场的组织安排;", + "2、协调劳务层的施工进度、质量、安全,施工方案的执行。", + "3、监督材料、设备进场,确保工程顺利进行;", + "4、按时准确记录施工日志;", + "5、项目上临时出现的问题。" + ], + "联系": { + "联系人": "王女士", + "联系方式": "18903389180", + "Email": "ruimei_js@126.com", + "公司地址": "唐山市路北区友谊路与翔云道交叉口汇金中心C座607" + } + } + }, + { + "position_name": " 总工程师", + "position_url": "/companyhome/post.aspx?comp=UlVJTUVJ&id=199543", + "company_name": "河北瑞美建设有限公司", + "company_url": "/companyhome/company.aspx?comp=UlVJTUVJ", + "job_info": { + "招聘专业:": "土建类", + "招聘人数:": "3人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "不限", + "年龄要求:": "30--50岁", + "学历要求:": "本科", + "工作地区:": "中国中国", + "工作经验:": "5-8年", + "职位类别:": "建筑施工管理", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2024/11/28", + "有效期限:": "2025/4/19", + "福利": [ + "薪资高于同行业平均水平", + "提供免费工作餐或餐补", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "注意:注意:项目在省外,能去的再投简历!!!", + "1、二级及以上建筑类项目经理资格证,中级及以上职称,要求人证合一;", + "2、五年以上施工技术经验,熟悉施工流程、质量验收规范及施工图纸材料做法;", + "3、实际担任项目总工程师五年以上,能去外地项目出差;", + "4、熟悉施工新技术、新材料市场行情,掌握工程施工队技术和用人市场行情;", + "5、具有较好的人事协调能力和沟通能力,有较好的文字表达能力和口头表达能力。", + "岗位职责:", + "1、全面负责项目技术工作,对施工过程提供技术支持;", + "2、项目技术及安全管理第一责任人,监控工程质量安全,发现问题及时召集相关人员进行处理;", + "3、审批施工组织设计、施工方案,参加甲方组织的图纸会审、方案论证;", + "4、保证工程技术质量、安全文明、工期和效益;", + "5、负责各阶段工程的竣工验收与结算工作。" + ], + "联系": { + "联系人": "王女士", + "联系方式": "18903389180", + "Email": "ruimei_js@126.com", + "公司地址": "唐山市路北区友谊路与翔云道交叉口汇金中心C座607" + } + } + }, + { + "position_name": " 项目经理", + "position_url": "/companyhome/post.aspx?comp=UlVJTUVJ&id=199541", + "company_name": "河北瑞美建设有限公司", + "company_url": "/companyhome/company.aspx?comp=UlVJTUVJ", + "job_info": { + "招聘专业:": "土建类", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "12000以上", + "要求性别:": "男", + "年龄要求:": "28--50岁", + "学历要求:": "本科", + "工作地区:": "中国中国", + "工作经验:": "5-8年", + "职位类别:": "建筑施工管理", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2024/11/28", + "有效期限:": "2025/4/19", + "福利": [ + "薪资高于同行业平均水平", + "提供免费工作餐或餐补", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "注意:项目在省外,能去的再投简历!!!", + "一、任职资格:", + "1、具备二级及以上建筑类项目经理资格证,中级及以上职称,要求人证合一;", + "2、五年以上施工现场管理经验,熟悉施工流程、质量验收规范及施工图纸材料做法;", + "3、实际担任项目经理五年以上,根据项目需要能驻外地项目施工;", + "4、具有较好的人事协调能力和沟通能力,有较好的文字表达能力和口头表达能力。", + "5、有钢结构工程、装修工程项目管理经验者优先录用。", + "二、岗位职责:", + "1、全面负责项目管理工作,对施工过程总体控制;", + "2、项目成本控制及安全管理第一责任人,随时监控工程质量安全,发现问题及时召集相关人员进行处理;", + "3、审批施工组织设计、施工方案,参加甲方组织的图纸会审、方案论证;", + "4、保证工程质量、安全文明、工期和效益;", + "5、负责各阶段工程的竣工验收与结算工作" + ], + "联系": { + "联系人": "王女士", + "联系方式": "18903389180", + "Email": "ruimei_js@126.com", + "公司地址": "唐山市路北区友谊路与翔云道交叉口汇金中心C座607" + } + } + }, + { + "position_name": " 栋号长(有证书优先)", + "position_url": "/companyhome/post.aspx?comp=c2hlamk%3d&id=201261", + "company_name": "河北昊宇建筑设计有限公司", + "company_url": "/companyhome/company.aspx?comp=c2hlamk%3d", + "job_info": { + "招聘专业:": "土建类", + "招聘人数:": "3人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "男", + "年龄要求:": "30--40岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "3-5年", + "职位类别:": "建筑施工管理", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2024/5/29", + "有效期限:": "2025/6/1", + "福利": [], + "要求": [ + "1、  在工程项目经理的领导下,具体实施现场施工管理;  2、负责管理材料计划,坚持节约材料,降低成本,并按图纸计算工程量,提供材料采购计划,落实、监督现场材料的合理施工,控制损耗;  3、负责工程定位、标高引测及工程验线、标高复核等工作;  4、  具体落实各分项工程的纠正和预防措施;  5、根据进度要求,合理组织施工,对各种原因造成不能完成之作业计划的,与作业队协调应变措施,确保节点目标得以实现;  6、组织实施安全技术措施,分项工程施工前督促作业队内部对操作工人进行详细的安全技术交底;  7、对施工现场搭设脚手架、安全的电气机械设备等安全防护装置都要组织验收,合格后方可使用。  任职要求:  1、工民建、土木工程类相关专业,专科及以上学历,35岁以下;  2、至少三年以上大型建筑公司施工员、栋号长等相关岗位工作经验;  3、具备丰富的现场管理经验,熟悉施工工序,能合理安排人员、材料、机械组织现场施工;  4、具备控制现场进度、质量、安全及文明施工的能力;  5、具有很强的责任心,能承受工作压力。" + ], + "联系": { + "联系人": "王女士", + "联系方式": "15232518322", + "Email": "tshylw@126.com", + "公司地址": "唐山市高新区大陆阳光103楼" + } + } + }, + { + "position_name": " 筑炉助理工程师", + "position_url": "/companyhome/post.aspx?comp=dHNkc2p6Z2M%3d&id=580675", + "company_name": "唐山盾石建筑工程有限责任公司", + "company_url": "/companyhome/company.aspx?comp=dHNkc2p6Z2M%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "4人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "23--26岁", + "学历要求:": "本科", + "工作地区:": "丰润区丰润区", + "工作经验:": "不限", + "职位类别:": "建筑施工管理", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/5/20", + "有效期限:": "2025/5/21", + "福利": [], + "要求": [ + "1.负责项目施工技术管理;", + "2.负责项目结算、开票、收款工作;", + "3.负责下发项目人工绩效;", + "4.负责项目成本核算、概算;", + "5.负责项目协力队伍的申请及结算工作。" + ], + "联系": { + "联系人": "于女士", + "联系方式": "18031514188", + "Email": "gcgsrl@163.com", + "公司地址": "林荫路296号" + } + } + } + ] + }, + { + "cid": "3936", + "cname": "基础地下工程/岩土工程", + "position_list": [ + { + "position_name": " 检测工程师", + "position_url": "/companyhome/post.aspx?comp=dHN6aG9uZ2Rp&id=584907", + "company_name": "唐山中地地质工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN6aG9uZ2Rp", + "job_info": { + "招聘专业:": "", + "招聘人数:": "6人", + "工作类型:": "全职", + "月薪:": "2001--3500", + "要求性别:": "不限", + "年龄要求:": "22--35岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "3-5年", + "职位类别:": "基础地下工程/岩土工程", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/12", + "有效期限:": "2025/4/2", + "福利": [ + "薪资高于同行业平均水平", + "每周有两天休息时间", + "企业给缴纳住房公积金", + "有带薪年休假", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "有从事检测经验,学历本科及以上,年龄35岁以下,具有相关执业证书者优先考虑。" + ], + "联系": { + "联系人": "刘菲", + "联系方式": "0315-5266266", + "Email": "tszdzhbgs@163.com", + "公司地址": "唐山市北新西道157号" + } + } + } + ] + }, + { + "cid": "3937", + "cname": "港口与航道工程", + "position_list": [] + }, + { + "cid": "3938", + "cname": "城镇规划/土地规划", + "position_list": [] + }, + { + "cid": "3939", + "cname": "物业管理专员/助理", + "position_list": [ + { + "position_name": " 物业管家", + "position_url": "/companyhome/post.aspx?comp=ZnlkYzA1MTM%3d&id=571248", + "company_name": "福悦房地产开发有限公司", + "company_url": "/companyhome/company.aspx?comp=ZnlkYzA1MTM%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "2001--3500", + "要求性别:": "不限", + "年龄要求:": "22--40岁", + "学历要求:": "中专", + "工作地区:": "丰润区丰润区", + "工作经验:": "1-2年", + "职位类别:": "物业管理专员/助理", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/12", + "有效期限:": "2025/5/17", + "福利": [ + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "岗位职责:", + "1、负责小区业主关系管理;", + "2、负责小区环境卫生、绿化、公共秩序及设施设备的监管;", + "3、负责小区档案管理;", + "4、领导临时交办的其他事项任职要求;", + "任职要求", + "1.中专及以上学历,物业管理相关专业", + "2.有较强的沟通协调能力和亲和力、团队协作精神及责任心,普通话流利,熟练办公自动化操作,未来志愿在行业内成为优秀的业主伙伴;", + "3.德才兼备,热爱服务行业。有同行业同岗位工作经验" + ], + "联系": { + "联系人": "周萍萍", + "联系方式": "18931552757", + "Email": "fydc0513", + "公司地址": "河北省唐山市丰润区新军屯镇龙潭坨村" + } + } + }, + { + "position_name": " 物业副经理", + "position_url": "/companyhome/post.aspx?comp=d2xwMTk5OA%3d%3d&id=581962", + "company_name": "唐山绿景房地产开发有限公司", + "company_url": "/companyhome/company.aspx?comp=d2xwMTk5OA%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "不限", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "18--60岁", + "学历要求:": "高中", + "工作地区:": "滦南县滦南县", + "工作经验:": "3-5年", + "职位类别:": "物业管理专员/助理", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/5", + "有效期限:": "2025/9/7", + "福利": [ + "企业给缴纳保险" + ], + "要求": [ + "爱岗敬业,有责任心,有较强的沟通、协调能力,有相关工作经验者优先" + ], + "联系": { + "联系人": "曹女士", + "联系方式": "15324152231", + "Email": "15324150121@163.com", + "公司地址": "滦南县绿景中心城门市11-02" + } + } + }, + { + "position_name": " 物业主管", + "position_url": "/companyhome/post.aspx?comp=Z3VvemlyZW5saQ%3d%3d&id=579470", + "company_name": "唐山国资人力资源服务有限责任公司", + "company_url": "/companyhome/company.aspx?comp=Z3VvemlyZW5saQ%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "4人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "25--35岁", + "学历要求:": "大专", + "工作地区:": "路南区路南区", + "工作经验:": "3-5年", + "职位类别:": "物业管理专员/助理", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/4/8", + "有效期限:": "2025/4/9", + "福利": [ + "企业给缴纳保险" + ], + "要求": [ + "1、男女不限,年龄25-35周岁,大专以上学历;", + "2、3年以上大型商业地产项目同等岗位任职经验。", + "3、熟悉大型商业地产项目物业管理部工作性质、管理职能与工作范畴。", + "4、熟悉规范化物业管理部工作流程。", + "5、熟悉国家物业管理行业相关法律法规,物业管理条例。", + "6、为人正直、勤奋、吃苦耐劳、富有团队精神,有较强的综合协调能力。" + ], + "联系": { + "联系人": "张女士", + "联系方式": "0315-2853186", + "Email": "guozirenli@163.com", + "公司地址": "唐山市路南区车站路169号" + } + } + } + ] + }, + { + "cid": "3940", + "cname": "物业维修人员", + "position_list": [ + { + "position_name": " 综合维修/综合运行", + "position_url": "/companyhome/post.aspx?comp=amlhaGVuZw%3d%3d&id=582096", + "company_name": "唐山市嘉恒实业有限公司", + "company_url": "/companyhome/company.aspx?comp=amlhaGVuZw%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "2001--3500", + "要求性别:": "男", + "年龄要求:": "30--45岁", + "学历要求:": "中专", + "工作地区:": "路南区路南区", + "工作经验:": "1-2年", + "职位类别:": "物业维修人员", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2025/7/30", + "福利": [ + "薪资高于同行业平均水平", + "每周有两天休息时间", + "企业给缴纳住房公积金", + "有带薪年休假", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "1、空调、给排水、低压电气设备、电梯、弱电系统等设施维修及保养。", + "2、强电和暖通设施、设备的维护、维修和保养,日常的巡视工作。" + ], + "联系": { + "联系人": "李女士", + "联系方式": "0315-3739002", + "Email": "msb1608@163.com", + "公司地址": "唐山市路南区世博大厦" + } + } + }, + { + "position_name": " 物业维修技工", + "position_url": "/companyhome/post.aspx?comp=dHNocA%3d%3d&id=584994", + "company_name": "慧鹏建设集团有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNocA%3d%3d", + "job_info": { + "招聘专业:": "特种作业操作证(电工证)", + "招聘人数:": "3人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "18--55岁", + "学历要求:": "高中", + "工作地区:": "曹妃甸工业区曹妃甸工业区", + "工作经验:": "2-3年", + "职位类别:": "物业维修人员", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/2/21", + "有效期限:": "2025/6/6", + "福利": [], + "要求": [ + "岗位内容:", + "1、日常进行设备保养检查、故障排查、装修巡查等。", + "2、维护与升级公司所有水电保养记录和资料,记录分析日常消耗情况并制定节约措施。", + "任职要求:", + "1.具备基本的水电知识储备。", + "2.具备一定的团队合作能力和沟通协调能力,热爱动手操作。", + "1.年龄55岁以内", + "2.有两年以上相关工作经验", + "薪资:4300-5000", + "福利待遇:1.月休四天  2.餐补3.包住  4.缴纳五险", + "工作地点:曹妃甸大学城月亮湾商业街", + "电话18731597666" + ], + "联系": { + "联系人": "王经理", + "联系方式": "17796985191", + "Email": "tshpjz@163.com", + "公司地址": "曹妃甸大学城月亮湾商业街" + } + } + }, + { + "position_name": " 综合维修", + "position_url": "/companyhome/post.aspx?comp=Z3VvemlyZW5saQ%3d%3d&id=582079", + "company_name": "唐山国资人力资源服务有限责任公司", + "company_url": "/companyhome/company.aspx?comp=Z3VvemlyZW5saQ%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "男", + "年龄要求:": "18--50岁", + "学历要求:": "中专", + "工作地区:": "唐山市唐山市", + "工作经验:": "1-2年", + "职位类别:": "物业维修人员", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/7/4", + "有效期限:": "2025/4/9", + "福利": [ + "企业给缴纳保险" + ], + "要求": [ + "工作内容:1.负责园区内用水设备的日常维修,计划检修及保养", + "2.负责公共区域设备设施的日常巡视检修工作", + "3.负责泵房设备设施的巡视,维护及保养", + "4.配合其他综合维修工作", + "职位要求:身体健康,男性,有经验者,有工作经验者,必须得有操作证。每月有劳保,过年有慰问品。", + "工作时间:8:00-16:00,16:00-次日8:00,单休", + "待遇:3000+" + ], + "联系": { + "联系人": "经理", + "联系方式": "0315-2853186", + "Email": "2765302737@qq.com", + "公司地址": "唐山市路南区复兴路56号" + } + } + } + ] + }, + { + "cid": "3941", + "cname": "物业设施管理人员", + "position_list": [ + { + "position_name": " 维修部主管", + "position_url": "/companyhome/post.aspx?comp=amlhaGVuZw%3d%3d&id=585077", + "company_name": "唐山市嘉恒实业有限公司", + "company_url": "/companyhome/company.aspx?comp=amlhaGVuZw%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "30--45岁", + "学历要求:": "大专", + "工作地区:": "路南区路南区", + "工作经验:": "2-3年", + "职位类别:": "物业设施管理人员", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2025/7/30", + "福利": [ + "薪资高于同行业平均水平", + "每周有两天休息时间", + "企业给缴纳住房公积金", + "有带薪年休假", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "1、负责工程部的全面管理工作,保证物业公司各系统设备设施的完好和有效运转,对各种设备设施按要求及保养。", + "2、组织实施节能降耗及修旧利废工作。", + "3、处理客服部及关联部门保修,协调内部各部门各专业之间的关系。", + "4、二次装修方案审核、施工监管工作,保障公司设备设施不被损坏。", + "5、物料使用审核、检查。" + ], + "联系": { + "联系人": "李女士", + "联系方式": "13000000000", + "Email": "msb1608@163.com", + "公司地址": "唐山市路南区世博大厦" + } + } + } + ] + }, + { + "cid": "3942", + "cname": "房产项目配套工程师", + "position_list": [] + }, + { + "cid": "3943", + "cname": "房地产销售人员", + "position_list": [ + { + "position_name": " 置业顾问(古冶区)", + "position_url": "/companyhome/post.aspx?comp=ZG9uZ2h1YWRj&id=579510", + "company_name": "河北东华置业集团有限公司", + "company_url": "/companyhome/company.aspx?comp=ZG9uZ2h1YWRj", + "job_info": { + "招聘专业:": "无", + "招聘人数:": "3人", + "工作类型:": "全职", + "月薪:": "12000以上", + "要求性别:": "不限", + "年龄要求:": "22--35岁", + "学历要求:": "高中", + "工作地区:": "古冶区古冶区", + "工作经验:": "1-2年", + "职位类别:": "房地产销售人员", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2025/6/15", + "福利": [], + "要求": [ + "薪资待遇:年薪10万~30万", + "任职要求:", + "金山壹号作为产品力引领项目,提供古冶区同行业最高薪资待遇;我们期待勇于挑战高薪,善于传递项目价值的优秀同行的加入。", + "具体要求如下:", + "1、年龄22至35岁,高中及以上学历;", + "2、形象好、气质佳,有亲和力,身高:男士1.7米以上,女士1.6米以上;", + "3、有以往其他项目销冠经历者(年度或季度)优先;", + "4、热爱或擅长新媒体直播者优先;", + "5、有良好的语言表达能力和较强的沟通能力,积极乐观,具有良好团队精神。", + "岗位职责:", + "1、宣传介绍公司产品或服务,为客户提供专业咨询和服务;", + "2、注重产品价值传递,为客户提供适合客户需求的解决方案;", + "3、接电、接访、认购、签约,后续客户维系。" + ], + "联系": { + "联系人": "王经理", + "联系方式": "19912368088", + "Email": "807285579@qq.com", + "公司地址": "唐山市古冶区东华金山壹号售楼处" + } + } + }, + { + "position_name": " 营销后台经理", + "position_url": "/companyhome/post.aspx?comp=bGJjdDIwMTQ%3d&id=580250", + "company_name": "唐山市路北区城市建设投资集团有限公司", + "company_url": "/companyhome/company.aspx?comp=bGJjdDIwMTQ%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "25--40岁", + "学历要求:": "大专", + "工作地区:": "路北区路北区", + "工作经验:": "2-3年", + "职位类别:": "房地产销售人员", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/2/12", + "有效期限:": "2025/4/25", + "福利": [], + "要求": [ + "营销后台经理", + "【工作职责】", + "1.制作各种销售报表;根据领导需求对数据进行多维度统计,便于领导决策;", + "2.牵头组织项目销售资料会签工作,为客户签署资料及归档;", + "3.收取房款,为成交客户办理网签、备案及贷款手续;", + "4.办理各种变更手续,如退、换房、更名、变更付款方式等;维护销售系统各类信息;", + "5.渠道及销售代理佣金的统计、审核及发放工作;", + "6.合同立项、签署、付款;统计付款台账。", + "7.预售许可、不动产权证、价格备案、监管资金提取等外围手续跑办工作;", + "【任职要求】", + "1、熟悉唐山市场,具备项目全周期后台(内外勤)经历;  ?", + "2、熟悉房地产营销全流程;  ?", + "3、具备良好的人际沟通能力,组织协调能力强;  ?", + "4、一线房企3年以上相关工作经验优先。" + ], + "联系": { + "联系人": "杨杰", + "联系方式": "0315-2026751", + "Email": "lbctwj@163.com", + "公司地址": "机场路付3号" + } + } + }, + { + "position_name": " 项目销售负责人", + "position_url": "/companyhome/post.aspx?comp=bGJjdDIwMTQ%3d&id=585067", + "company_name": "唐山市路北区城市建设投资集团有限公司", + "company_url": "/companyhome/company.aspx?comp=bGJjdDIwMTQ%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "28--40岁", + "学历要求:": "本科", + "工作地区:": "路北区路北区", + "工作经验:": "3-5年", + "职位类别:": "房地产销售人员", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/2/12", + "有效期限:": "2025/4/25", + "福利": [], + "要求": [ + "【工作职责】", + "1、营销统筹:依据公司要求,明确项目各阶段营销目标、经营策略并编制营销方案推进达成,对项目业绩直接负责;", + "2、团队管理:组建带教项目营销团队,管理项目代理、分销等营销合作方,落实内外分工及职责;", + "3、项目定位:组织项目各阶段产品及市场调研和分析,提供针对性的经营方案;", + "4、销售落地:跟进项目各开发节点销售关联事宜,跟进项目客户、认购、签约、回款等核心指标完成情况;", + "5、经营协调:主导项目营销相关制度的建立、监督及执行,关联部门工作的沟通反馈,推动解决。", + "【任职要求】", + "1、熟悉唐山市场,具备项目全周期操盘经历;  ?", + "2、熟悉房地产营销全流程,具备丰富的房地产各条线专业知识、较强的市场分析、营销操盘、案场管理能力;  ?", + "3、具备良好的人际沟通能力,组织协调能力强;  ?", + "4、具有丰富的客户资源和客户关系,业绩优秀;", + "5、一线房企3年以上相关工作经验优先。" + ], + "联系": { + "联系人": "杨杰", + "联系方式": "0315-2026751", + "Email": "lbctwj@163.com", + "公司地址": "机场路付3号" + } + } + }, + { + "position_name": " 置业顾问", + "position_url": "/companyhome/post.aspx?comp=dHNocA%3d%3d&id=581022", + "company_name": "慧鹏建设集团有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNocA%3d%3d", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "8人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "18--35岁", + "学历要求:": "大专", + "工作地区:": "曹妃甸工业区曹妃甸工业区", + "工作经验:": "3-5年", + "职位类别:": "房地产销售人员", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/2/5", + "有效期限:": "2025/6/6", + "福利": [], + "要求": [ + "岗位描述:", + "1、有外拓外展的营销模式,利用各种网下渠道寻找需求客户,完成工作业绩指标;", + "2、负责新客户开发和售后服务工作,老客户的维护", + "3、开发、维护、巩固、提升与客户的关系;", + "4、完成上级领导交办的其它任务", + "岗位要求:", + "1、18-35周岁,大专及以上学历,品行端正,男女不限;", + "2、对房产销售感兴趣,热爱房产销售行业者;", + "3、为人正直诚实,肯学习。", + "4、具有良好的语言表达和沟通协调能力,积极乐观、勇于挑战高薪;" + ], + "联系": { + "联系人": "徐女士", + "联系方式": "17330152400", + "Email": "tshpjz@163.com", + "公司地址": "唐山市路南区西电路549号" + } + } + }, + { + "position_name": " 置业顾问", + "position_url": "/companyhome/post.aspx?comp=dG9uZ2h1YQ%3d%3d&id=584246", + "company_name": "唐山市通华房地产开发有限公司", + "company_url": "/companyhome/company.aspx?comp=dG9uZ2h1YQ%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "10人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "18--35岁", + "学历要求:": "大专", + "工作地区:": "丰润区丰润区", + "工作经验:": "不限", + "职位类别:": "房地产销售人员", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/12/6", + "有效期限:": "2025/12/2", + "福利": [], + "要求": [ + "形象好,气质佳,沟通能力强,善于表达,有工作经验优先,薪资待遇面议。" + ], + "联系": { + "联系人": "唐女士", + "联系方式": "0315-2333686", + "Email": "tonghua68@163.com", + "公司地址": "唐山市南新西道与站前路交叉口东南侧" + } + } + }, + { + "position_name": " 贝壳房产经纪人", + "position_url": "/companyhome/post.aspx?comp=eHNibnFo&id=583814", + "company_name": "西双版纳起航置业有限公司", + "company_url": "/companyhome/company.aspx?comp=eHNibnFo", + "job_info": { + "招聘专业:": "", + "招聘人数:": "10人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "24--40岁", + "学历要求:": "大专", + "工作地区:": "河北以外省份云南", + "工作经验:": "不限", + "职位类别:": "房地产销售人员", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/11/5", + "有效期限:": "2025/11/5", + "福利": [], + "要求": [ + "新毕业大学生优先,能吃苦耐劳,敢于挑战。工资3500+提成能过万元以上。", + "工作地点:云南省西双版纳市。" + ], + "联系": { + "联系人": "华经理", + "联系方式": "15131601317", + "Email": "xsbnqh", + "公司地址": "云南省西双版纳傣族自治州景洪市景洪工业园区万达舒邦小镇23栋113号" + } + } + }, + { + "position_name": " 置业顾问", + "position_url": "/companyhome/post.aspx?comp=ZG9uZ2h1YWRj&id=204384", + "company_name": "河北东华置业集团有限公司", + "company_url": "/companyhome/company.aspx?comp=ZG9uZ2h1YWRj", + "job_info": { + "招聘专业:": "营销策划类", + "招聘人数:": "10人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "不限", + "年龄要求:": "18--35岁", + "学历要求:": "高中", + "工作地区:": "丰南区丰南区", + "工作经验:": "2-3年", + "职位类别:": "房地产销售人员", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2024/6/18", + "有效期限:": "2025/6/15", + "福利": [], + "要求": [ + "1、主动维护公司声誉,对本楼盘进行宣传;", + "2、热情接待,细致讲解,耐心服务,务必让客户对我们提供的服务表示满意;", + "3、全面熟练地掌握本楼盘的规划、设计、施工、管理情况,了解房地产法律、法规以及相关交易知识,为客户提供满意的咨询;", + "4、制定个人销售方案、计划,严格按照公司的销售价格及交房标准进行销售;", + "5、挖掘潜在的客户;", + "6、进行市场调查,并对收集的情报进行研究;", + "7、注意相关资料、客户档案及销售情况的保密;", + "8、及时向销售部负责人反映客户信息,以便公司适时改变销售策略;", + "9、每天记录电话咨询及客户接待情况;", + "10、协助解决客户售后服务工作;", + "11、销售部同事间要互相尊重,互相学习,以团队利益为重;", + "12、做好对客户的追踪和联系;", + "13、每天做销售小结,每月做工作总结;", + "14、维护售楼现场的设施的完好及清洁。" + ], + "联系": { + "联系人": "李雪强", + "联系方式": "13373555543", + "Email": "1498426197@qq.com", + "公司地址": "唐山市丰南区湖岸新城南区南门西侧底商133号" + } + } + }, + { + "position_name": " 置业顾问", + "position_url": "/companyhome/post.aspx?comp=ZG9uZ2h1YWRj&id=216083", + "company_name": "河北东华置业集团有限公司", + "company_url": "/companyhome/company.aspx?comp=ZG9uZ2h1YWRj", + "job_info": { + "招聘专业:": "", + "招聘人数:": "6人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "18--35岁", + "学历要求:": "高中", + "工作地区:": "丰南区丰南区", + "工作经验:": "2-3年", + "职位类别:": "房地产销售人员", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/6/18", + "有效期限:": "2025/6/15", + "福利": [], + "要求": [ + "1、主动维护公司声誉,对本楼盘进行宣传;", + "2、热情接待,细致讲解,耐心服务,务必让客户对我们提供的服务表示满意;", + "3、全面熟练地掌握本楼盘的规划、设计、施工、管理情况,了解房地产法律、法规以及相关交易知识,为客户提供满意的咨询;", + "4、制定个人销售方案、计划,严格按照公司的销售价格及交房标准进行销售;", + "5、挖掘潜在的客户;", + "6、进行市场调查,并对收集的情报进行研究;", + "7、注意相关资料、客户档案及销售情况的保密;", + "8、及时向销售部负责人反映客户信息,以便公司适时改变销售策略;", + "9、每天记录电话咨询及客户接待情况;", + "10、协助解决客户售后服务工作;", + "11、销售部同事间要互相尊重,互相学习,以团队利益为重;", + "12、做好对客户的追踪和联系;", + "13、每天做销售小结,每月做工作总结;", + "14、维护售楼现场的设施的完好及清洁。" + ], + "联系": { + "联系人": "李先生", + "联系方式": "13373555543", + "Email": "1498426197@qq.com", + "公司地址": "唐山市丰南区东华·滨湖壹号院项目营销中心" + } + } + } + ] + }, + { + "cid": "3944", + "cname": "房地产评估", + "position_list": [ + { + "position_name": " 资产评估师及评估业务助理", + "position_url": "/companyhome/post.aspx?comp=VFNZRDAx&id=110313", + "company_name": "唐山永大会计师事务所有限公司", + "company_url": "/companyhome/company.aspx?comp=VFNZRDAx", + "job_info": { + "招聘专业:": "土建类", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "男", + "年龄要求:": "18--60岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "房地产评估", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2024/6/26", + "有效期限:": "2025/6/26", + "福利": [], + "要求": [ + "要求:本科以上学历,评估专业专科以上学历,应届毕业生优先录取。", + "待遇:试用期3个月,业务熟练后月均工资不低于5000元。正式入职后缴纳五险一金,双休,法定节假日全休。" + ], + "联系": { + "联系人": "马先生", + "联系方式": "0315-5188198", + "Email": "1062631443@qq.com", + "公司地址": "路北区君瑞花园商业楼1门554号" + } + } + }, + { + "position_name": " 房地产估价师,土地评估、房地产评估助理", + "position_url": "/companyhome/post.aspx?comp=VFNZRDAx&id=110314", + "company_name": "唐山永大会计师事务所有限公司", + "company_url": "/companyhome/company.aspx?comp=VFNZRDAx", + "job_info": { + "招聘专业:": "土建类、财经类", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "男", + "年龄要求:": "18--60岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "房地产评估", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2024/6/26", + "有效期限:": "2025/6/26", + "福利": [], + "要求": [ + "要求:本科以上学历,评估专业专科以上学历,应届毕业生优先录取。", + "待遇:试用期3个月,业务熟练后月均工资不低于5000元。正式入职后缴纳五险一金,双休,法定节假日全休。" + ], + "联系": { + "联系人": "马先生", + "联系方式": "0315-5188198", + "Email": "1062631443@qq.com", + "公司地址": "路北区君瑞花园商业楼1门554号" + } + } + } + ] + }, + { + "cid": "3945", + "cname": "施工人员", + "position_list": [ + { + "position_name": " 现场技术员", + "position_url": "/companyhome/post.aspx?comp=YmVpc2hhbmc%3d&id=585779", + "company_name": "河北北上节能科技有限公司", + "company_url": "/companyhome/company.aspx?comp=YmVpc2hhbmc%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "男", + "年龄要求:": "18--40岁", + "学历要求:": "高中", + "工作地区:": "河北省河北", + "工作经验:": "不限", + "职位类别:": "施工人员", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2025/5/21", + "福利": [ + "薪资高于同行业平均水平", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "吃苦耐劳,服从指挥,负责项目施工及管理、项目预算、商务事宜等" + ], + "联系": { + "联系人": "杨女士", + "联系方式": "15630586212", + "Email": "beifang1998@126.com", + "公司地址": "唐山市高新技术开发区学院北路1716号" + } + } + }, + { + "position_name": " 土建工程师", + "position_url": "/companyhome/post.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d&id=583464", + "company_name": "唐山天鸿建设集团有限责任公司", + "company_url": "/companyhome/company.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "不限", + "月薪:": "8001--12000", + "要求性别:": "男", + "年龄要求:": "30--45岁", + "学历要求:": "大专", + "工作地区:": "河北省河北", + "工作经验:": "不限", + "职位类别:": "施工人员", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/14", + "有效期限:": "2025/8/14", + "福利": [], + "要求": [ + "职责描述:", + "1、在项目经理的直接领导下开展工作,贯彻安全第一、预防为主的方针,按规定搞好安全防范措施,把安全工作落到实处,做到讲效益必须讲安全,抓生产首先必须抓安全。", + "2、认真熟悉施工图纸、编制各项施工组织设计方案和施工安全、质量、技术方案,编制各单项工程进度计划及人力、物力计划和机具、用具、设备计划。", + "3、  编制、组织职工按期开会学习,合理安排、科学引导、顺利完成本工程的各项施工任务。", + "4、协同项目经理、认真履行项目施工合同条款,保证施工顺利进行,维护企业的信誉和经济利益。", + "5、按施工进度计划的要求,安排施工队的工作,并对施工队进行安全、施工做法技术交底的实施、监督、检查。", + "6、负责按该工程的成本控制计划的实施、监督、检查。", + "7、按施工规范要求对安全、质量核对,监督、检查、预埋件的定位及安装。", + "8、负责对工地的文明施工要求工作的实施、监督、检查。", + "任职要求:", + "1、30-45岁,大专及以上学历,工程类专业,本科以上学历优先。", + "2、取得二级建造师、中级职称及以上资格,一级建造师优先。", + "3、土建、钢结构、市政项目工作7年及以上经验。", + "4、接受唐山周边县区。" + ], + "联系": { + "联系人": "黄先生", + "联系方式": "0315-5256986、18903150558", + "Email": "tianhongjianan@163.com", + "公司地址": "开平区税务庄北街" + } + } + }, + { + "position_name": " 市政道路工程生产经理", + "position_url": "/companyhome/post.aspx?comp=cHRqejg4OA%3d%3d&id=581186", + "company_name": "唐山鹏通建筑工程有限责任公司", + "company_url": "/companyhome/company.aspx?comp=cHRqejg4OA%3d%3d", + "job_info": { + "招聘专业:": "市政专业,道路工程", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "男", + "年龄要求:": "25--50岁", + "学历要求:": "大专", + "工作地区:": "新区(丰润区)新区(丰润区)", + "工作经验:": "3-5年", + "职位类别:": "施工人员", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/6", + "有效期限:": "2025/5/28", + "福利": [], + "要求": [ + "要求有市政及道路工程工作经验5年以上,能独立完成市政道路工程全过程管理工作,工作认真负责,沟通能力强,大专以上学历,年龄25-50周岁,无经验勿扰。" + ], + "联系": { + "联系人": "崔女士", + "联系方式": "15531516114", + "Email": "704680962@qq.com", + "公司地址": "唐山丰润区林荫路西侧(中建城304座21号)" + } + } + }, + { + "position_name": " 施工员", + "position_url": "/companyhome/post.aspx?comp=Z2NwNzkxMTAz&id=220033", + "company_name": "河北远通建设有限责任公司", + "company_url": "/companyhome/company.aspx?comp=Z2NwNzkxMTAz", + "job_info": { + "招聘专业:": "", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "男", + "年龄要求:": "18--40岁", + "学历要求:": "大专", + "工作地区:": "高新开发区高新开发区", + "工作经验:": "不限", + "职位类别:": "施工人员", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/3", + "有效期限:": "2026/1/6", + "福利": [], + "要求": [ + "有岗位证书和建造师证书优先" + ], + "联系": { + "联系人": "高女士", + "联系方式": "13832582666", + "Email": "1071017563@qq.com", + "公司地址": "高新区庆北道南侧、卫国路西" + } + } + }, + { + "position_name": " 技术员", + "position_url": "/companyhome/post.aspx?comp=Z2NwNzkxMTAz&id=220032", + "company_name": "河北远通建设有限责任公司", + "company_url": "/companyhome/company.aspx?comp=Z2NwNzkxMTAz", + "job_info": { + "招聘专业:": "有房屋建筑、市政工程相关工作经验", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "男", + "年龄要求:": "25--40岁", + "学历要求:": "大专", + "工作地区:": "高新开发区高新开发区", + "工作经验:": "3-5年", + "职位类别:": "施工人员", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/3", + "有效期限:": "2026/1/6", + "福利": [], + "要求": [ + "招聘房屋建筑工程、市政公用工程技术员、施工员、项目经理。" + ], + "联系": { + "联系人": "王女士", + "联系方式": "18231553983", + "Email": "1071017563@qq.com", + "公司地址": "高新区庆北道南侧、卫国路西" + } + } + }, + { + "position_name": " 电工", + "position_url": "/companyhome/post.aspx?comp=d2xwMTk5OA%3d%3d&id=567794", + "company_name": "唐山绿景房地产开发有限公司", + "company_url": "/companyhome/company.aspx?comp=d2xwMTk5OA%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "18--60岁", + "学历要求:": "中专", + "工作地区:": "滦南县滦南县", + "工作经验:": "1年及以下", + "职位类别:": "施工人员", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/1", + "有效期限:": "2025/9/7", + "福利": [ + "企业给缴纳保险" + ], + "要求": [ + "懂得电工知识,有相关工作经验者、电工证者优先" + ], + "联系": { + "联系人": "曹女士", + "联系方式": "15324150121", + "Email": "15324150121@163.com", + "公司地址": "滦南县绿景中心城门市11-02" + } + } + }, + { + "position_name": " 水电工程师", + "position_url": "/companyhome/post.aspx?comp=d2xwMTk5OA%3d%3d&id=565868", + "company_name": "唐山绿景房地产开发有限公司", + "company_url": "/companyhome/company.aspx?comp=d2xwMTk5OA%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "30--55岁", + "学历要求:": "大专", + "工作地区:": "滦南县滦南县", + "工作经验:": "3-5年", + "职位类别:": "施工人员", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/9/9", + "有效期限:": "2025/9/7", + "福利": [ + "企业给缴纳保险" + ], + "要求": [ + "岗位职责:", + "1、组织贯彻实施国家和上级指定的各项技术标准、规定、规范和技术质量管理制度;", + "2、贯彻公司的管理方针,负责实施施工项目的质量计划,确保管理目标的实现;", + "3、负责组织施工方案,施工组织设计的交底及实施过程中的检查、监督工作。熟悉CAD软件,熟悉施工图纸及工程的质量要求;", + "4、负责组织施工图纸会审,向有关人员进行施工技术、测量、质量、安全交底,制定施工技术和安全生产措施。配合各管理人员解决施工现场存在的难点或重点技术事项;", + "5、负责组织施工项目的质量评定,并参加隐蔽工程验收", + "6、领导交办其他事项", + "任职资格:", + "1、全日制大专以上学历", + "2、3年以上土建类项目水电施工经验", + "工资面议" + ], + "联系": { + "联系人": "曹女士", + "联系方式": "15324150121", + "Email": "15324150121@163.com", + "公司地址": "滦南县绿景中心城门市11-02" + } + } + }, + { + "position_name": " 施工质检员", + "position_url": "/companyhome/post.aspx?comp=c2hlamk%3d&id=580785", + "company_name": "河北昊宇建筑设计有限公司", + "company_url": "/companyhome/company.aspx?comp=c2hlamk%3d", + "job_info": { + "招聘专业:": "土木工程专业", + "招聘人数:": "3人", + "工作类型:": "实习", + "月薪:": "2001--3500", + "要求性别:": "不限", + "年龄要求:": "18--30岁", + "学历要求:": "大专", + "工作地区:": "丰南区丰南区", + "工作经验:": "应届毕业生", + "职位类别:": "施工人员", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/5/29", + "有效期限:": "2025/6/1", + "福利": [], + "要求": [ + "1、主要负责施工现场材料进厂的检验,施工过程中质量的检验;", + "2、负责各栋楼的实测实量,质量监督、数据统计;", + "3、日常配合各栋号长的检查工作等;" + ], + "联系": { + "联系人": "张女士", + "联系方式": "1823529693", + "Email": "tshylw@126.com", + "公司地址": "唐山市高新区大陆阳光103楼705室" + } + } + } + ] + }, + { + "cid": "3946", + "cname": "规划设计师", + "position_list": [ + { + "position_name": " 注册规划师", + "position_url": "/companyhome/post.aspx?comp=SldTSjEyMw%3d%3d&id=194226", + "company_name": "唐山吉屋建筑设计咨询有限公司", + "company_url": "/companyhome/company.aspx?comp=SldTSjEyMw%3d%3d", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "不限", + "年龄要求:": "18--60岁", + "学历要求:": "本科", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "规划设计师", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/17", + "有效期限:": "2025/3/26", + "福利": [ + "薪资高于同行业平均水平", + "企业给缴纳住房公积金", + "有带薪年休假", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "1、大本科及以上学历,熟练使用各种设计软件。", + "2、具有注册规划师证书", + "3、薪资待遇面议" + ], + "联系": { + "联系人": "人事", + "联系方式": "15130511011", + "Email": "344734108@qq.com", + "公司地址": "唐山高新技术产业园区火炬路126号" + } + } + }, + { + "position_name": " 规划设计", + "position_url": "/companyhome/post.aspx?comp=SldTSjEyMw%3d%3d&id=194230", + "company_name": "唐山吉屋建筑设计咨询有限公司", + "company_url": "/companyhome/company.aspx?comp=SldTSjEyMw%3d%3d", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "不限", + "年龄要求:": "24--40岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "1-2年", + "职位类别:": "规划设计师", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/17", + "有效期限:": "2025/3/26", + "福利": [ + "薪资高于同行业平均水平", + "企业给缴纳住房公积金", + "有带薪年休假", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "1、大专及以上学历,环艺等相关专业", + "2、有设计工作经验,能熟练使用PS/CAD", + "3、具备较强的管理、沟通、协调能力,面对工程管理中遇到的问题,能及时提出有效的解决方案" + ], + "联系": { + "联系人": "人事", + "联系方式": "15130511011", + "Email": "lcmsjy@163.com", + "公司地址": "唐山市丰润区大庆西道与卫国路交叉口西北200米" + } + } + }, + { + "position_name": " 建筑师助理", + "position_url": "/companyhome/post.aspx?comp=dHN0Y3NqeQ%3d%3d&id=184759", + "company_name": "唐山陶瓷集团设计研究有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN0Y3NqeQ%3d%3d", + "job_info": { + "招聘专业:": "土建类", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "18--60岁", + "学历要求:": "大专", + "工作地区:": "路北区路北区", + "工作经验:": "不限", + "职位类别:": "规划设计师", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2024/5/22", + "有效期限:": "2025/5/22", + "福利": [], + "要求": [ + "配合建筑师进行施工图设计" + ], + "联系": { + "联系人": "王女士", + "联系方式": "13014314496", + "Email": "tstcsjy@163.com", + "公司地址": "高新区龙泽北路凤城阳光4单元8层" + } + } + } + ] + }, + { + "cid": "3947", + "cname": "测绘员/测量员", + "position_list": [ + { + "position_name": " 紧急招聘助理工程师(可接受应届毕业生)", + "position_url": "/companyhome/post.aspx?comp=aGVuZ3l1eml4dW4%3d&id=163433", + "company_name": "唐山市恒誉工程技术咨询有限责任公司", + "company_url": "/companyhome/company.aspx?comp=aGVuZ3l1eml4dW4%3d", + "job_info": { + "招聘专业:": "土建类", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "男", + "年龄要求:": "20--35岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "测绘员/测量员", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2025/6/11", + "福利": [ + "薪资高于同行业平均水平", + "年底有奖金或13/14月薪", + "企业给缴纳保险" + ], + "要求": [ + "要求:", + "1.有较强的学习能力,可接受应届毕业生,公司实行老带新政策;", + "2.善于沟通与交流;", + "3.本科生优先。", + "待遇:", + "1.月休4天,工资3500~4500元/月,上保险;", + "2.外出有餐补;", + "3.欢迎有理想的年轻人加入。", + "请慎重投简历,非诚勿扰!" + ], + "联系": { + "联系人": "张先生", + "联系方式": "17713188951", + "Email": "hyjdzx@126.com", + "公司地址": "唐山市路北区陶瓷文化创业中心" + } + } + }, + { + "position_name": " 施工员", + "position_url": "/companyhome/post.aspx?comp=cHRqejg4OA%3d%3d&id=203228", + "company_name": "唐山鹏通建筑工程有限责任公司", + "company_url": "/companyhome/company.aspx?comp=cHRqejg4OA%3d%3d", + "job_info": { + "招聘专业:": "土建类", + "招聘人数:": "10人", + "工作类型:": "全职", + "月薪:": "2001--3500", + "要求性别:": "男", + "年龄要求:": "20--35岁", + "学历要求:": "大专", + "工作地区:": "丰润区丰润区", + "工作经验:": "不限", + "职位类别:": "测绘员/测量员", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/6", + "有效期限:": "2025/5/28", + "福利": [], + "要求": [ + "负责建筑工程施工现场的施工测量放线工作,要求建筑工程相关专业,有房屋建筑相关工作经验者优先" + ], + "联系": { + "联系人": "崔女士", + "联系方式": "15531516114", + "Email": "704680962@qq.com", + "公司地址": "唐山丰润区林荫路西侧(中建城304座21号)" + } + } + } + ] + }, + { + "cid": "3948", + "cname": "资料员", + "position_list": [ + { + "position_name": " 工地资料员", + "position_url": "/companyhome/post.aspx?comp=dHNsZg%3d%3d&id=581377", + "company_name": "唐山联发工程管理有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNsZg%3d%3d", + "job_info": { + "招聘专业:": "土木工程", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "18--45岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "1-2年", + "职位类别:": "资料员", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "丰南周边", + "发布日期:": "2025/3/19", + "有效期限:": "2026/3/19", + "福利": [], + "要求": [ + "做好工程项目现场监理资料,能够独立完成资料的管理归档。", + "未婚女性不予考虑,薪资3000---5000元,月休4天。" + ], + "联系": { + "联系人": "孙经理", + "联系方式": "0315-8192603", + "Email": "sunbo646689@126.com", + "公司地址": "丰南区光明大街金盛花园底商231、233、235、237号" + } + } + }, + { + "position_name": " 资料员", + "position_url": "/companyhome/post.aspx?comp=YWplbHp5MTEx&id=585814", + "company_name": "唐山安居人力资源服务有限公司", + "company_url": "/companyhome/company.aspx?comp=YWplbHp5MTEx", + "job_info": { + "招聘专业:": "", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "25--50岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "资料员", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/4/18", + "福利": [ + "薪资高于同行业平均水平" + ], + "要求": [ + "岗位要求:", + "要求建筑系列专业方向,持有资料员证书,熟悉本行业法律法规及规范要求,有完成3个以上5万㎡建筑施工资料管理工作经验,与属地质监部门关系融洽,熟悉各项验收的流程及资料要求。", + "岗位职责:", + "负责施工过程中各类资料的收集、检查、汇总等,确保工程资料编制质量;", + "负责工程合同管理及相关流程报审;", + "配合项目经理组织各项工程验收;", + "完成好项目经理交办的其他工作。" + ], + "联系": { + "联系人": "王女士", + "联系方式": "13000000000", + "Email": "ajrlzp@163.com", + "公司地址": "河北省唐山市路北区" + } + } + }, + { + "position_name": " 资料员", + "position_url": "/companyhome/post.aspx?comp=bGJjdDIwMTQ%3d&id=82222", + "company_name": "唐山市路北区城市建设投资集团有限公司", + "company_url": "/companyhome/company.aspx?comp=bGJjdDIwMTQ%3d", + "job_info": { + "招聘专业:": "土建类", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "25--45岁", + "学历要求:": "大专", + "工作地区:": "路北区路北区", + "工作经验:": "2-3年", + "职位类别:": "资料员", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/14", + "有效期限:": "2025/4/25", + "福利": [], + "要求": [ + "1、具有房地产3年以上资料员岗位工作经验,熟悉房地产行业档案资料收集、整理、移交、保管等工作程序,工程管理类大专以上学历;", + "2、具有良好语言、文字表达能力,具备良好职业道德及团队合作精神;", + "3、待遇面议" + ], + "联系": { + "联系人": "吴佳", + "联系方式": "0315-2026751", + "Email": "lbctwj@163.com", + "公司地址": "机场路付3号" + } + } + }, + { + "position_name": " 机电资料员", + "position_url": "/companyhome/post.aspx?comp=dGlhbmppbnNoZW5neXVhbjAwMQ%3d%3d&id=576603", + "company_name": "天津晟原建筑工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dGlhbmppbnNoZW5neXVhbjAwMQ%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "18--50岁", + "学历要求:": "大专", + "工作地区:": "路北区路北区", + "工作经验:": "1-2年", + "职位类别:": "资料员", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/13", + "有效期限:": "2025/6/13", + "福利": [], + "要求": [ + "接受短期临时出差", + "有相关资料员工作经验", + "沟通能力强" + ], + "联系": { + "联系人": "马女士", + "联系方式": "15097500278", + "Email": "625957189@qq.com", + "公司地址": "唐山市路北区梧桐大道梧桐苑底商" + } + } + }, + { + "position_name": " 现场资料员", + "position_url": "/companyhome/post.aspx?comp=dHN4ZGpz&id=580557", + "company_name": "河北鑫鼎建设工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN4ZGpz", + "job_info": { + "招聘专业:": "建筑类相关专业优先", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "18--55岁", + "学历要求:": "中专", + "工作地区:": "唐山市唐山市", + "工作经验:": "2-3年", + "职位类别:": "资料员", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/2/14", + "有效期限:": "2025/9/5", + "福利": [], + "要求": [ + "1、负责工程项目的所有图纸的接收、清点、登记、发放、归档、管理工作。", + "2、收集整理施工过程中所有技术变更、洽商记录、会议纪要等资料并归档。", + "3、负责备案资料的填写、会签、整理、报送、归档。", + "4、施工单位施工资料的编制、管理,做到完整、及时,与工程进度同步。", + "5、按时向公司档案室移交", + "6、负责向市城建档案馆的档案移交工作。", + "7、负责与项目有关的各类合同的档案管理", + "任职要求", + "1、中专及以上学历,工程造价或建筑类相关专业;", + "2、具有2年以上项目现场工作经验;至少完整跟踪过一个项目;", + "3、熟悉相关工程标准、规范;", + "4、了解建筑施工企业管理制度、体系、规范、标准及相关工作的运作流程;", + "5、熟悉工程质量管理、安全管理、进度管理、成本管理、技术管理等方面工作,具备协调能力和处理解决问题的能力;", + "6、有较强的职业意识、责任心、工作主动性和严谨性,并具有较强的沟通协调和团队协作能力;", + "7、熟练使用办公软件,资料软件,会用CAD画图。" + ], + "联系": { + "联系人": "单女士", + "联系方式": "15230935020", + "Email": "tsxdjs@163.com", + "公司地址": "河北省唐山市路北区骏安园101-2号二层底商" + } + } + }, + { + "position_name": " 安全员", + "position_url": "/companyhome/post.aspx?comp=dHN4ZGpz&id=583366", + "company_name": "河北鑫鼎建设工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN4ZGpz", + "job_info": { + "招聘专业:": "建筑、土木、结构类相关专业;", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "20--50岁", + "学历要求:": "中专", + "工作地区:": "唐山市唐山市", + "工作经验:": "2-3年", + "职位类别:": "资料员", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/1/15", + "有效期限:": "2025/9/5", + "福利": [], + "要求": [ + "1.能转社保,", + "2.有安全C本,", + "3.能做现场安全管理,安全资料、技术资料。", + "年龄20--50,男女,学历不限,待遇面谈。", + "15230935020" + ], + "联系": { + "联系人": "单女士", + "联系方式": "15230935020", + "Email": "tsxdjs@163.com", + "公司地址": "河北省唐山市路北区骏安园101-2号二层底商" + } + } + }, + { + "position_name": " 资料员", + "position_url": "/companyhome/post.aspx?comp=UlVJTUVJ&id=214383", + "company_name": "河北瑞美建设有限公司", + "company_url": "/companyhome/company.aspx?comp=UlVJTUVJ", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "25--50岁", + "学历要求:": "大专", + "工作地区:": "中国中国", + "工作经验:": "3-5年", + "职位类别:": "资料员", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/11/28", + "有效期限:": "2025/4/19", + "福利": [ + "薪资高于同行业平均水平", + "提供免费工作餐或餐补", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "【任职要求】:1、熟悉建筑工程资料管理规程,能独立完成施工资料的编写工作;", + "2、熟悉建筑业档案管理、工程资料收集、整理、编排、组卷工作;", + "3、熟练使用资料专用软件,CAD、WORD、EXCEL、PS等常用办公软件;", + "【岗位职责】:1、负责工程施工资料及相关工作;", + "2、负责开工准备等相关手续;", + "3、工程相关资料的收集、整理、上报、存档、借阅。", + "4、工程日志及工程各项记录的整理、存档;", + "5、竣工资料的编制、上报、存档。", + "【薪资待遇】:3500-5000元+饭补、试用期1-3个月,转正后上五险" + ], + "联系": { + "联系人": "王女士", + "联系方式": "18903389180", + "Email": "ruimei_js@126.com", + "公司地址": "唐山市路北区友谊路与翔云道交叉口汇金中心C座607" + } + } + } + ] + }, + { + "cid": "3949", + "cname": "安全主任", + "position_list": [ + { + "position_name": " 安全主管", + "position_url": "/companyhome/post.aspx?comp=YWplbHp5MTEx&id=585819", + "company_name": "唐山安居人力资源服务有限公司", + "company_url": "/companyhome/company.aspx?comp=YWplbHp5MTEx", + "job_info": { + "招聘专业:": "", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "25--50岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "安全主任", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/4/18", + "福利": [ + "薪资高于同行业平均水平" + ], + "要求": [ + "负责统筹施工现场安全工作,熟悉掌握国家及地区现行的安全管理法律法规及相关政策,熟悉安全资料的编制标准,熟悉双控管理机制的建设和管理措施,熟悉掌握各类工程各级别风险源的辨识的管控方法,具备组织现场安全检查和迎接主管部门安全督查的能力。", + "具有中级注册安全工程师、安全员证书等优先。" + ], + "联系": { + "联系人": "王女士", + "联系方式": "13000000000", + "Email": "ajrlzp@163.com", + "公司地址": "河北省唐山市路北区" + } + } + }, + { + "position_name": " 安全员", + "position_url": "/companyhome/post.aspx?comp=YWplbHp5MTEx&id=585815", + "company_name": "唐山安居人力资源服务有限公司", + "company_url": "/companyhome/company.aspx?comp=YWplbHp5MTEx", + "job_info": { + "招聘专业:": "", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "25--50岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "安全主任", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/4/18", + "福利": [ + "薪资高于同行业平均水平" + ], + "要求": [ + "要求建筑系列专业方向,持有安全员证书,熟悉本行业法律法规及规范要求,具有3年以上本岗位现场工作经验,具有3个以上5万㎡项目安全管理工作经验;", + "岗位职责:", + "负责现场职业健康安全和环境管理工作;", + "监督专项施工方案的实施;", + "监督安全技术措施的落实执行;", + "组织安全生产检查和隐患排查、治理;", + "危险源辨识评价与监控工作、现场消防管理工作和应急管理体系的建立运行,应急预案演练等工作;", + "负责安全网上监督填写、项目安全资料编制工作;", + "负责施工现场安全文明施工、扬尘治理监督实施工作;", + "具备依据规范熟练解答安全、扬尘监督部门提问的能力等。" + ], + "联系": { + "联系人": "王女士", + "联系方式": "13000000000", + "Email": "ajrlzp@163.com", + "公司地址": "河北省唐山市路北区" + } + } + }, + { + "position_name": " 施工安全员", + "position_url": "/companyhome/post.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d&id=583463", + "company_name": "唐山天鸿建设集团有限责任公司", + "company_url": "/companyhome/company.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "男", + "年龄要求:": "30--45岁", + "学历要求:": "大专", + "工作地区:": "河北省河北", + "工作经验:": "3-5年", + "职位类别:": "安全主任", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/14", + "有效期限:": "2025/8/14", + "福利": [], + "要求": [ + "任职资格:", + "1、具有3年以上建筑施工安全管理经验,取得过专职安全员证书C本。", + "2、能够独立编制项目安全管理资料,熟悉建筑施工安全规范和有关法律、法规。", + "3、在项目上能够开展安全风险辨识和隐患排查治理。", + "4、熟练使用word、excel等办公软件,能够较好的与上级主管部门进行沟通,上报安全资料,及时办理各种作业手续。", + "5、能够服从公司安排,长期在外项目进行安全管理。", + "6、以前所在项目取得过省、市级安全文明工地者优先。", + "工作内容:", + "1、作为项目部专职安全管理人员,协助项目经理开展项目安全文明施工策划,协助办理项目安全备案及各类入场手续。", + "2、对项目进场人员开展安全教育,建立个人安全管理档案,及时填报项目安全资料及公司要求的有关安全资料。", + "3、对施工现场作业活动进行隐患排查,发现违章行为及时进行制止,按制度严肃考核,督促落实隐患整改。", + "4、组织对进场设备,临时设施的验收工作,及时填报各类安全验收资料。", + "5、与上级主管部门开展有效沟通,完成项目在省住建安全管理系统填报,及时办理各种作业手续。", + "6、按照公司安全管理制度完成其他有关安全管理活动。", + "职位福利:五险、包吃、包住、交通补助、通讯补助、定期体检" + ], + "联系": { + "联系人": "黄先生", + "联系方式": "0315-5256986、18903150558", + "Email": "tianhongjianan@163.com", + "公司地址": "开平区税务庄北街" + } + } + }, + { + "position_name": " 安全总监", + "position_url": "/companyhome/post.aspx?comp=cHRqejg4OA%3d%3d&id=215341", + "company_name": "唐山鹏通建筑工程有限责任公司", + "company_url": "/companyhome/company.aspx?comp=cHRqejg4OA%3d%3d", + "job_info": { + "招聘专业:": "建筑", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "男", + "年龄要求:": "30--45岁", + "学历要求:": "大专", + "工作地区:": "新区(丰润区)新区(丰润区)", + "工作经验:": "3-5年", + "职位类别:": "安全主任", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/6", + "有效期限:": "2025/5/28", + "福利": [], + "要求": [ + "要求有建筑施工单位安全部部长的工作经历5年以上,能完成公司各项目的有关安全的各项工作,沟通能力强,组织协调能力强,责任心强,踏实肯干,有国企单位工作经验的优先录用。" + ], + "联系": { + "联系人": "崔女士", + "联系方式": "15531516114", + "Email": "704680962@qq.com", + "公司地址": "唐山丰润区林荫路西侧(中建城304座21号)" + } + } + }, + { + "position_name": " 安全员", + "position_url": "/companyhome/post.aspx?comp=dHNseWhia2p5eGdz&id=583499", + "company_name": "唐山绿源环保科技有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNseWhia2p5eGdz", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "男", + "年龄要求:": "22--50岁", + "学历要求:": "大专", + "工作地区:": "路南区路南区", + "工作经验:": "不限", + "职位类别:": "安全主任", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/12/18", + "有效期限:": "2025/12/18", + "福利": [ + "企业给缴纳住房公积金", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "企业给缴纳保险" + ], + "要求": [ + "岗位职责:主要负责机电设备安装施工现场的安全管理工作。", + "任职要求:有安全员C本,能够接受一个月左右的短期出差,熟练使用电脑和办公软件,认真负责。" + ], + "联系": { + "联系人": "办公室", + "联系方式": "17731485603", + "Email": "610758629@qq.com", + "公司地址": "唐山市路南区世博广场互联网+双创中心7楼绿源环保综合办公室" + } + } + } + ] + }, + { + "cid": "3950", + "cname": "铁路工程", + "position_list": [] + }, + { + "cid": "3951", + "cname": "智能大厦/布线/弱电/安防", + "position_list": [ + { + "position_name": " 智能化(弱电)系统检修运维", + "position_url": "/companyhome/post.aspx?comp=dHNydW50YWk%3d&id=193881", + "company_name": "唐山市润泰科技有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNydW50YWk%3d", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "男", + "年龄要求:": "20--45岁", + "学历要求:": "中专", + "工作地区:": "路北区路北区", + "工作经验:": "1年及以下", + "职位类别:": "智能大厦/布线/弱电/安防", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/7/5", + "福利": [ + "每周有两天休息时间", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "央企智能化(弱电)系统维修维护,工作环境好,国家法定节假日正常休假,五险,交补话补,午餐,要求踏实稳重,必须具有相关工作经验" + ], + "联系": { + "联系人": "刘先生", + "联系方式": "13931516889", + "Email": "13931516889@163.com", + "公司地址": "唐山市路北区龙泽南路景致名苑1号楼" + } + } + }, + { + "position_name": " 监控安装人员", + "position_url": "/companyhome/post.aspx?comp=Ymprag%3d%3d&id=211771", + "company_name": "河北博嘉科技有限公司", + "company_url": "/companyhome/company.aspx?comp=Ymprag%3d%3d", + "job_info": { + "招聘专业:": "计算机类", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "男", + "年龄要求:": "18--45岁", + "学历要求:": "高中", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "智能大厦/布线/弱电/安防", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2024/6/20", + "有效期限:": "2025/6/5", + "福利": [], + "要求": [ + "任职要求:", + "1.具有良好的职业素养和水准。", + "2.动手能力较强,可接受应届生。", + "3.工作积极主动,好学上进,良好的团队合作意识。", + "4.熟悉计算机硬件操作,了解监控系统优先录用。", + "5.能适应五区十县短期出差。", + "三、福利待遇:", + "1.周休1天,法定假日全休    ,年终奖", + "2.试用期1个月,3个月后上五险,基本工资+补助+话补(实报实销)", + "3.根据个人能力上调工资。" + ], + "联系": { + "联系人": "倪女士", + "联系方式": "15931510117", + "Email": "HYC966@163.com", + "公司地址": "高新技术产业园区火炬路60号" + } + } + } + ] + }, + { + "cid": "3952", + "cname": "房地产项目/开发/策划经理", + "position_list": [ + { + "position_name": " 钢结构施工项目经理", + "position_url": "/companyhome/post.aspx?comp=aGVuZ3l1eml4dW4%3d&id=584919", + "company_name": "唐山市恒誉工程技术咨询有限责任公司", + "company_url": "/companyhome/company.aspx?comp=aGVuZ3l1eml4dW4%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "4人", + "工作类型:": "全职", + "月薪:": "8001--12000", + "要求性别:": "不限", + "年龄要求:": "30--45岁", + "学历要求:": "本科", + "工作地区:": "路北区路北区", + "工作经验:": "5-8年", + "职位类别:": "房地产项目/开发/策划经理", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2025/6/11", + "福利": [ + "薪资高于同行业平均水平", + "年底有奖金或13/14月薪", + "企业给缴纳保险" + ], + "要求": [ + "1.有钢结构施工经验;2.经培训熟悉网架工程施工;3.中级以上职称;4.有独立完成项目经验;5.有注册建造师证者优先;" + ], + "联系": { + "联系人": "张先生", + "联系方式": "17713188951", + "Email": "hyjdzx@126.com", + "公司地址": "唐山市路北区陶瓷文化创业中心" + } + } + }, + { + "position_name": " 项目经理", + "position_url": "/companyhome/post.aspx?comp=dHN5dHpoYg%3d%3d&id=585084", + "company_name": "唐山远通实业有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN5dHpoYg%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "男", + "年龄要求:": "35--50岁", + "学历要求:": "大专", + "工作地区:": "唐海县唐海县", + "工作经验:": "8-10年", + "职位类别:": "房地产项目/开发/策划经理", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2025/4/4", + "福利": [], + "要求": [ + "负责工程项目现场的全面管理,统筹协调监督各工种有序衔接,人材机的实际消耗,根据图纸及现场实际情况编制施工方案,对现场项目的质量,安全,进度负责" + ], + "联系": { + "联系人": "陈经理", + "联系方式": "18131531788", + "Email": "tsytzhb@163.com", + "公司地址": "曹妃甸区唐海镇唐海路西侧74-1号(如意快捷酒店西行50米)" + } + } + }, + { + "position_name": " 滦南售楼员", + "position_url": "/companyhome/post.aspx?comp=d2xwMTk5OA%3d%3d&id=569057", + "company_name": "唐山绿景房地产开发有限公司", + "company_url": "/companyhome/company.aspx?comp=d2xwMTk5OA%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "18--42岁", + "学历要求:": "大专", + "工作地区:": "滦南县滦南县", + "工作经验:": "1-2年", + "职位类别:": "房地产项目/开发/策划经理", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无(滦南本地优先)", + "发布日期:": "2025/3/5", + "有效期限:": "2025/9/7", + "福利": [ + "企业给缴纳保险" + ], + "要求": [ + "(1)具有大专学历以上", + "(2)熟练掌握计算机操作及办公室软件", + "(3)具有良好的职业操守,具有良好的沟通能力和团队合作精神,工作认真负责,积极上进", + "(4)最好具有一定的财会基础", + "(5)已婚已育", + "(6)薪资待遇:面议", + "有驾照并会开车者,优先录用!" + ], + "联系": { + "联系人": "曹女士", + "联系方式": "15324150121", + "Email": "15324150121@163.com", + "公司地址": "滦南县绿景中心城门市11-02" + } + } + }, + { + "position_name": " 法务", + "position_url": "/companyhome/post.aspx?comp=d2xwMTk5OA%3d%3d&id=580549", + "company_name": "唐山绿景房地产开发有限公司", + "company_url": "/companyhome/company.aspx?comp=d2xwMTk5OA%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "18--50岁", + "学历要求:": "本科", + "工作地区:": "滦南县滦南县", + "工作经验:": "2-3年", + "职位类别:": "房地产项目/开发/策划经理", + "外语要求:": "英语", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/5", + "有效期限:": "2025/9/7", + "福利": [ + "企业给缴纳保险" + ], + "要求": [ + "1、本科及以上学历,有  2-3  年工作  (经验)", + "2、熟悉(公司法)、合同法、经济法等方面的法律法规。", + "3、扎实的法律功底,良好的沟通和协调能力,较强的文字表达", + "能力;", + "4、能独立开展合同审查、法律咨询、法律风险管控等相关工作;", + "5、良好的职业操守,法律思维严谨、逻辑性强,正直、诚实" + ], + "联系": { + "联系人": "曹女士", + "联系方式": "15324152231", + "Email": "15324150121@163.com", + "公司地址": "滦南县绿景中心城门市11-02" + } + } + }, + { + "position_name": " 乐亭售楼 人员", + "position_url": "/companyhome/post.aspx?comp=d2xwMTk5OA%3d%3d&id=569058", + "company_name": "唐山绿景房地产开发有限公司", + "company_url": "/companyhome/company.aspx?comp=d2xwMTk5OA%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "2人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "18--42岁", + "学历要求:": "大专", + "工作地区:": "乐亭县乐亭县", + "工作经验:": "1-2年", + "职位类别:": "房地产项目/开发/策划经理", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无(乐亭本地优先)", + "发布日期:": "2025/2/17", + "有效期限:": "2025/9/7", + "福利": [ + "企业给缴纳保险" + ], + "要求": [ + "(1)具有大专学历以上", + "(2)具有良好的职业操守,具有良好的沟通能力和团队合作精神,工作认真负责,积极上进", + "(3)有售楼经验者优先录用", + "(4)薪资待遇:面议" + ], + "联系": { + "联系人": "曹女士", + "联系方式": "15324150121", + "Email": "15324150121@163.com", + "公司地址": "滦南县绿景中心城门市11-02" + } + } + }, + { + "position_name": " 电气工程师", + "position_url": "/companyhome/post.aspx?comp=cmh6eTc3MjI5ODg%3d&id=583484", + "company_name": "唐山瑞华置业有限公司", + "company_url": "/companyhome/company.aspx?comp=cmh6eTc3MjI5ODg%3d", + "job_info": { + "招聘专业:": "机电一体化或计算机专业", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "18--40岁", + "学历要求:": "硕士", + "工作地区:": "唐山市唐山市", + "工作经验:": "3-5年", + "职位类别:": "房地产项目/开发/策划经理", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/10/14", + "有效期限:": "2025/4/25", + "福利": [ + "有带薪年休假", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "企业给缴纳保险" + ], + "要求": [ + "负责组织各部门的信息传递工作,保证各部门信息沟通顺畅;", + "协调各部门的工作行为,使工作流程顺畅,实现共同的战略目标;", + "负责公司的年终总结工作,包括会议安排及跟催各部门编写总结报告" + ], + "联系": { + "联系人": "高美英", + "联系方式": "13000000000", + "Email": "rhzy7722988", + "公司地址": "唐山市开平区马家沟新工村矿西路118号" + } + } + }, + { + "position_name": " 水暖工程师", + "position_url": "/companyhome/post.aspx?comp=d2xwMTk5OA%3d%3d&id=565867", + "company_name": "唐山绿景房地产开发有限公司", + "company_url": "/companyhome/company.aspx?comp=d2xwMTk5OA%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "不限", + "年龄要求:": "30--55岁", + "学历要求:": "大专", + "工作地区:": "滦南县滦南县", + "工作经验:": "3-5年", + "职位类别:": "房地产项目/开发/策划经理", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/9/9", + "有效期限:": "2025/9/7", + "福利": [ + "企业给缴纳保险" + ], + "要求": [ + "岗位职责:", + "1、组织贯彻实施国家和上级指定的各项技术标准、规定、规范和技术质量管理制度;", + "2、贯彻公司的管理方针,负责实施施工项目的质量计划,确保管理目标的实现;", + "3、负责组织施工方案,施工组织设计的交底及实施过程中的检查、监督工作。熟悉CAD软件,熟悉施工图纸及工程的质量要求;", + "4、负责组织施工图纸会审,向有关人员进行施工技术、测量、质量、安全交底,制定施工技术和安全生产措施。配合各管理人员解决施工现场存在的难点或重点技术事项;", + "5、负责组织施工项目的质量评定,并参加隐蔽工程验收", + "6、领导交办其他事项", + "任职资格:", + "1、全日制大专以上学历", + "2、3年以上土建类项目水暖施工经验", + "工资面议" + ], + "联系": { + "联系人": "曹女士", + "联系方式": "15324150121", + "Email": "15324150121@163.com", + "公司地址": "滦南县绿景中心城门市11-02" + } + } + }, + { + "position_name": " 总经理助理", + "position_url": "/companyhome/post.aspx?comp=d2xwMTk5OA%3d%3d&id=577613", + "company_name": "唐山绿景房地产开发有限公司", + "company_url": "/companyhome/company.aspx?comp=d2xwMTk5OA%3d%3d", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "男", + "年龄要求:": "25--40岁", + "学历要求:": "高中", + "工作地区:": "滦南县滦南县", + "工作经验:": "5-8年", + "职位类别:": "房地产项目/开发/策划经理", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/9/9", + "有效期限:": "2025/9/7", + "福利": [ + "企业给缴纳保险" + ], + "要求": [ + "会开车,安全驾龄不少于5年,无不良驾驶记录,会电脑及办公软件操作,工作认真,有责任心,土木、建筑、工程类专业优先,正式工作,上五险" + ], + "联系": { + "联系人": "曹女士", + "联系方式": "15324150121", + "Email": "15324150121@163.com", + "公司地址": "滦南县绿景中心城门市11-02" + } + } + }, + { + "position_name": " 施工技术人员", + "position_url": "/companyhome/post.aspx?comp=c2hlamk%3d&id=198700", + "company_name": "河北昊宇建筑设计有限公司", + "company_url": "/companyhome/company.aspx?comp=c2hlamk%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "男", + "年龄要求:": "25--50岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "3-5年", + "职位类别:": "房地产项目/开发/策划经理", + "外语要求:": "英语", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2024/5/29", + "有效期限:": "2025/6/1", + "福利": [], + "要求": [ + "1.工程管理、土木工程等相关专业", + "2.踏实、稳重", + "3.缴纳五险一金", + "4.体检、外出考察等。" + ], + "联系": { + "联系人": "李克清", + "联系方式": "15511965159", + "Email": "sheji2008sheji@163.com", + "公司地址": "唐山市高新区建设北路101号高科总部大厦12层" + } + } + } + ] + }, + { + "cid": "3953", + "cname": "高级物业顾问", + "position_list": [] + } + ] + }, + { + "id": "3983", + "name": "交通运输(海陆空)类", + "child": [ + { + "cid": "3984", + "cname": "交通运输(海陆空)类" + }, + { + "cid": "3985", + "cname": "调度员", + "position_list": [] + }, + { + "cid": "3986", + "cname": "船员", + "position_list": [] + }, + { + "cid": "3987", + "cname": "乘务员", + "position_list": [ + { + "position_name": " 铁路工作人员+包食宿", + "position_url": "/companyhome/post.aspx?comp=aGJ0cQ%3d%3d&id=204217", + "company_name": "河北傲卫勤务安防工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGJ0cQ%3d%3d", + "job_info": { + "招聘专业:": "铁路工程类", + "招聘人数:": "15人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "女", + "年龄要求:": "18--24岁", + "学历要求:": "高中", + "工作地区:": "中国中国", + "工作经验:": "不限", + "职位类别:": "乘务员", + "外语要求:": "", + "外语等级:": "良好", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2025/8/19", + "福利": [], + "要求": [ + "工作内容:", + "1、负责协助乘客上下车,检查票务,认座,乘客咨询等工作;", + "2、负责协助车站入站(出站)口检票工作;", + "3、负责协助列车、站内安全检查(包括协助,抽查旅客身份证件);", + "任职要求:", + "1.年龄:女性18-24周岁,男性18-28周岁,高中以上学历,退伍军人优先入用(需有退伍军人证件);", + "2.身高:女1.62米以上,体重65kg以内;男1.75米以上,体重70kg以内;", + "3.身体健康、品行良好、无纹身、前科、赌博吸毒酗酒等不良行为;", + "4.  无精神疾病等不能自控行为的疾病及病史。", + "5.上几休几倒班制,具体根据单位统一分配。", + "薪资福利:", + "1、基本工资+其他福利津贴,一线城市合成工资每月不低于4000-6000元,二三线城市每月3000-5000。平均年薪不低于7-10W。", + "2、享受法定节假日三倍工资及带薪15天年假;新员工入职满一年以上享受工龄工资。", + "3、免费提供食宿、被褥、免费无线网,宿舍有空调,24小时热水澡;", + "4、有管理潜力者公司会极力培养,(班组长,队长、项目经理及以上职务,有很大晋升空间)", + "5、首签1-3年,转正统一缴纳五险(养老险、医疗险、工伤险、失业险、生育险)", + "6、公司不定期免费组织员工外出旅游、聚餐等活动;", + "岗位工作地点:", + "1,面向全国各级城市以省会城市为主相对就近调配安排。" + ], + "联系": { + "联系人": "王主任", + "联系方式": "15369505556", + "Email": "253118579@qq.com", + "公司地址": "" + } + } + }, + { + "position_name": " 高铁乘务员", + "position_url": "/companyhome/post.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d&id=579858", + "company_name": "河北冀列铁路工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "20人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "18--28岁", + "学历要求:": "中专", + "工作地区:": "唐山市唐山市", + "工作经验:": "1年及以下", + "职位类别:": "乘务员", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/5/17", + "福利": [], + "要求": [ + "男士18-28周岁,身高170以上,女士18-28周岁,身高160以上、无纹身及前科。", + "薪资待遇:综合薪资4000-7000、上几休几、五险一金、管吃住。", + "岗位职责:", + "1、组织旅客上、下车,检查票务,认座,旅客咨询,通报到站等工作", + "2、防止旅客将易燃、易爆等危险品带入站内,车内", + "3、整理车厢旅客行李,巡视车厢", + "4、协助铁路负责维持站内、车内秩序和安全工作", + "工作地址:根据户籍地结合岗位空缺就近分配。" + ], + "联系": { + "联系人": "李先生", + "联系方式": "13184915933", + "Email": "hebeijilie123", + "公司地址": "唐山市路南区新华联广场" + } + } + }, + { + "position_name": " 车站助理", + "position_url": "/companyhome/post.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d&id=579864", + "company_name": "河北冀列铁路工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "20人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "18--28岁", + "学历要求:": "中专", + "工作地区:": "迁安市迁安市", + "工作经验:": "1年及以下", + "职位类别:": "乘务员", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/5/17", + "福利": [], + "要求": [ + "男士18-28周岁,身高170以上,女士18-28周岁,身高160以上、无纹身及前科。", + "薪资待遇:综合薪资4000-7000、上几休几、五险一金、管吃住。", + "岗位职责:", + "1、组织旅客上、下车,检查票务,认座,旅客咨询,通报到站等工作", + "2、防止旅客将易燃、易爆等危险品带入站内,车内", + "3、整理车厢旅客行李,巡视车厢", + "4、协助铁路负责维持站内、车内秩序和安全工作", + "工作地址:根据户籍地结合岗位空缺就近分配。" + ], + "联系": { + "联系人": "李先生", + "联系方式": "13184915933", + "Email": "hebeijilie123", + "公司地址": "唐山市路南区新华联广场" + } + } + }, + { + "position_name": " 高铁乘务员", + "position_url": "/companyhome/post.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d&id=580602", + "company_name": "河北冀列铁路工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d", + "job_info": { + "招聘专业:": "158以上", + "招聘人数:": "20人", + "工作类型:": "不限", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "18--28岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "1年及以下", + "职位类别:": "乘务员", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/5/17", + "福利": [], + "要求": [ + "高铁乘务员:是在旅客列车为旅客进行服务的工作人员,他们在旅客上车前要检查每一个人的票防止有人错乘或无票登车。帮旅客拿行李,当列车出发后还要整理行李,防止行李从行李架上掉下来,防止旅客受伤,每到一个站就要报站保证旅客知道旅途到站信息。", + "应聘条件:1、高铁乘务员女:年龄18-25周岁,身高165cm-175cm,均为净身高。2、高铁乘务员男:年龄18-25周岁,身高175cm-185cm,均为净身高。3、学历:高中,中专及以上学历、无纹身,无明显伤疤,无犯罪记录。", + "乘务岗位薪资待遇:薪资组成基本工资+出车次数+列车效益+工作质量+客流量+奖金等。综合工资4000--7000左右。缴纳五险一金,包吃住。", + "工作时间和地点:上几休几,缴纳五险一金,节假日三倍工资,统一提供食宿,根据户籍地岗位空缺就近上岗。" + ], + "联系": { + "联系人": "李先生", + "联系方式": "13184915933", + "Email": "hebeijilie123", + "公司地址": "唐山市路南区新华联广场" + } + } + }, + { + "position_name": " 高铁安检员", + "position_url": "/companyhome/post.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d&id=580603", + "company_name": "河北冀列铁路工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d", + "job_info": { + "招聘专业:": "158以上", + "招聘人数:": "20人", + "工作类型:": "不限", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "18--28岁", + "学历要求:": "中专", + "工作地区:": "唐山市唐山市", + "工作经验:": "1年及以下", + "职位类别:": "乘务员", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/5/17", + "福利": [], + "要求": [ + "工作内容:1、协助乘客上、下车,检查,认座和乘客咨询等工作;", + "2、协助车站入站(出站)口安全及检票工作;", + "3、协助列车、站内安全检查(站岗、抽查乘客身份)。", + "职位要求:1,年龄18-28,具有良好的语言沟通能力", + "2,净身高160/170以上", + "3,中专及以上学历", + "4,五官端正,面容姣好,身材匀称,形象气质佳", + "福利待遇:综合薪资  4000-7000以上", + "(基本工资+其他福利津贴)", + "2,转正后上几休几,上半个月班休半个月", + "3,免费宿舍,被褥,免费无线网,宿舍有空调,24小时热", + "水澡", + "4,晋升:一年一次晋升机会,并享受岗位津贴。" + ], + "联系": { + "联系人": "李先生", + "联系方式": "13184915933", + "Email": "hebeijilie123", + "公司地址": "唐山市路南区新华联广场" + } + } + }, + { + "position_name": " 车站助理", + "position_url": "/companyhome/post.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d&id=579870", + "company_name": "河北冀列铁路工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "20人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "18--28岁", + "学历要求:": "中专", + "工作地区:": "滦县滦县", + "工作经验:": "1年及以下", + "职位类别:": "乘务员", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/5/17", + "福利": [], + "要求": [ + "男士18-28周岁,身高170以上,女士18-28周岁,身高160以上、无纹身及前科。", + "薪资待遇:综合薪资4000-7000、上几休几、五险一金、管吃住。", + "岗位职责:", + "1、组织旅客上、下车,检查票务,认座,旅客咨询,通报到站等工作", + "2、防止旅客将易燃、易爆等危险品带入站内,车内", + "3、整理车厢旅客行李,巡视车厢", + "4、协助铁路负责维持站内、车内秩序和安全工作", + "工作地址:根据户籍地结合岗位空缺就近分配。" + ], + "联系": { + "联系人": "李先生", + "联系方式": "13184915933", + "Email": "hebeijilie123", + "公司地址": "唐山市路南区新华联广场" + } + } + }, + { + "position_name": " 高铁乘务员", + "position_url": "/companyhome/post.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d&id=579871", + "company_name": "河北冀列铁路工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "20人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "18--28岁", + "学历要求:": "中专", + "工作地区:": "滦南县滦南县", + "工作经验:": "1年及以下", + "职位类别:": "乘务员", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/5/17", + "福利": [], + "要求": [ + "男士18-28周岁,身高170以上,女士18-28周岁,身高160以上、无纹身及前科。", + "薪资待遇:综合薪资4000-7000、上几休几、五险一金、管吃住。", + "岗位职责:", + "1、组织旅客上、下车,检查票务,认座,旅客咨询,通报到站等工作", + "2、防止旅客将易燃、易爆等危险品带入站内,车内", + "3、整理车厢旅客行李,巡视车厢", + "4、协助铁路负责维持站内、车内秩序和安全工作", + "工作地址:根据户籍地结合岗位空缺就近分配。" + ], + "联系": { + "联系人": "李先生", + "联系方式": "13184915933", + "Email": "hebeijilie123", + "公司地址": "唐山市路南区新华联广场" + } + } + }, + { + "position_name": " 列车安检员", + "position_url": "/companyhome/post.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d&id=579872", + "company_name": "河北冀列铁路工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "20人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "18--28岁", + "学历要求:": "中专", + "工作地区:": "唐海县唐海县", + "工作经验:": "1年及以下", + "职位类别:": "乘务员", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/5/17", + "福利": [], + "要求": [ + "男士18-28周岁,身高170以上,女士18-28周岁,身高160以上、无纹身及前科。", + "薪资待遇:综合薪资4000-7000、上几休几、五险一金、管吃住。", + "岗位职责:", + "1、组织旅客上、下车,检查票务,认座,旅客咨询,通报到站等工作", + "2、防止旅客将易燃、易爆等危险品带入站内,车内", + "3、整理车厢旅客行李,巡视车厢", + "4、协助铁路负责维持站内、车内秩序和安全工作", + "工作地址:根据户籍地结合岗位空缺就近分配。" + ], + "联系": { + "联系人": "李先生", + "联系方式": "13184915933", + "Email": "hebeijilie123", + "公司地址": "唐山市路南区新华联广场" + } + } + }, + { + "position_name": " 站内工作人员", + "position_url": "/companyhome/post.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d&id=579873", + "company_name": "河北冀列铁路工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "20人", + "工作类型:": "不限", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "18--28岁", + "学历要求:": "高中", + "工作地区:": "丰南区丰南区", + "工作经验:": "1年及以下", + "职位类别:": "乘务员", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/5/17", + "福利": [], + "要求": [ + "男士18-28周岁,身高170以上,女士18-28周岁,身高160以上、无纹身及前科。", + "薪资待遇:综合薪资4000-7000、上几休几、五险一金、管吃住。", + "岗位职责:", + "1、组织旅客上、下车,检查票务,认座,旅客咨询,通报到站等工作", + "2、防止旅客将易燃、易爆等危险品带入站内,车内", + "3、整理车厢旅客行李,巡视车厢", + "4、协助铁路负责维持站内、车内秩序和安全工作", + "工作地址:根据户籍地结合岗位空缺就近分配。" + ], + "联系": { + "联系人": "李先生", + "联系方式": "13184915933", + "Email": "hebeijilie123", + "公司地址": "唐山市路南区新华联广场" + } + } + }, + { + "position_name": " 高铁乘务员", + "position_url": "/companyhome/post.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d&id=579874", + "company_name": "河北冀列铁路工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "20人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "18--28岁", + "学历要求:": "高中", + "工作地区:": "遵化市遵化市", + "工作经验:": "1年及以下", + "职位类别:": "乘务员", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/5/17", + "福利": [], + "要求": [ + "男士18-28周岁,身高170以上,女士18-28周岁,身高160以上、无纹身及前科。", + "薪资待遇:综合薪资4000-7000、上几休几、五险一金、管吃住。", + "岗位职责:", + "1、组织旅客上、下车,检查票务,认座,旅客咨询,通报到站等工作", + "2、防止旅客将易燃、易爆等危险品带入站内,车内", + "3、整理车厢旅客行李,巡视车厢", + "4、协助铁路负责维持站内、车内秩序和安全工作", + "工作地址:根据户籍地结合岗位空缺就近分配。" + ], + "联系": { + "联系人": "李先生", + "联系方式": "13184915933", + "Email": "hebeijilie123", + "公司地址": "唐山市路南区新华联广场" + } + } + }, + { + "position_name": " 列车安检员", + "position_url": "/companyhome/post.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d&id=579875", + "company_name": "河北冀列铁路工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "20人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "18--28岁", + "学历要求:": "高中", + "工作地区:": "开平区开平区", + "工作经验:": "1年及以下", + "职位类别:": "乘务员", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/5/17", + "福利": [], + "要求": [ + "男士18-28周岁,身高170以上,女士18-28周岁,身高160以上、无纹身及前科。", + "薪资待遇:综合薪资4000-7000、上几休几、五险一金、管吃住。", + "岗位职责:", + "1、组织旅客上、下车,检查票务,认座,旅客咨询,通报到站等工作", + "2、防止旅客将易燃、易爆等危险品带入站内,车内", + "3、整理车厢旅客行李,巡视车厢", + "4、协助铁路负责维持站内、车内秩序和安全工作", + "工作地址:根据户籍地结合岗位空缺就近分配。" + ], + "联系": { + "联系人": "李先生", + "联系方式": "13184915933", + "Email": "hebeijilie123", + "公司地址": "唐山市路南区新华联广场" + } + } + }, + { + "position_name": " 高铁乘务员", + "position_url": "/companyhome/post.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d&id=579876", + "company_name": "河北冀列铁路工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "20人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "18--28岁", + "学历要求:": "高中", + "工作地区:": "路北区路北区", + "工作经验:": "1年及以下", + "职位类别:": "乘务员", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/5/17", + "福利": [], + "要求": [ + "男士18-28周岁,身高170以上,女士18-28周岁,身高160以上、无纹身及前科。", + "薪资待遇:综合薪资4000-7000、上几休几、五险一金、管吃住。", + "岗位职责:", + "1、组织旅客上、下车,检查票务,认座,旅客咨询,通报到站等工作", + "2、防止旅客将易燃、易爆等危险品带入站内,车内", + "3、整理车厢旅客行李,巡视车厢", + "4、协助铁路负责维持站内、车内秩序和安全工作", + "工作地址:根据户籍地结合岗位空缺就近分配。" + ], + "联系": { + "联系人": "李先生", + "联系方式": "13184915933", + "Email": "hebeijilie123", + "公司地址": "唐山市路南区新华联广场" + } + } + }, + { + "position_name": " 列车安检员", + "position_url": "/companyhome/post.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d&id=579879", + "company_name": "河北冀列铁路工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "20人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "18--28岁", + "学历要求:": "高中", + "工作地区:": "路南区路南区", + "工作经验:": "1年及以下", + "职位类别:": "乘务员", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/5/17", + "福利": [], + "要求": [ + "男士18-28周岁,身高170以上,女士18-28周岁,身高160以上、无纹身及前科。", + "薪资待遇:综合薪资4000-7000、上几休几、五险一金、管吃住。", + "岗位职责:", + "1、组织旅客上、下车,检查票务,认座,旅客咨询,通报到站等工作", + "2、防止旅客将易燃、易爆等危险品带入站内,车内", + "3、整理车厢旅客行李,巡视车厢", + "4、协助铁路负责维持站内、车内秩序和安全工作", + "工作地址:根据户籍地结合岗位空缺就近分配。" + ], + "联系": { + "联系人": "李先生", + "联系方式": "13184915933", + "Email": "hebeijilie123", + "公司地址": "唐山市路南区新华联广场" + } + } + }, + { + "position_name": " 站内工作人员", + "position_url": "/companyhome/post.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d&id=579888", + "company_name": "河北冀列铁路工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "20人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "18--28岁", + "学历要求:": "高中", + "工作地区:": "路南区路南区", + "工作经验:": "不限", + "职位类别:": "乘务员", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/5/17", + "福利": [], + "要求": [ + "男士18-28周岁,身高170以上,女士18-28周岁,身高160以上、无纹身及前科。", + "薪资待遇:综合薪资4000-7000、上几休几、五险一金、管吃住。", + "岗位职责:", + "1、组织旅客上、下车,检查票务,认座,旅客咨询,通报到站等工作", + "2、防止旅客将易燃、易爆等危险品带入站内,车内", + "3、整理车厢旅客行李,巡视车厢", + "4、协助铁路负责维持站内、车内秩序和安全工作", + "工作地址:根据户籍地结合岗位空缺就近分配。" + ], + "联系": { + "联系人": "李先生", + "联系方式": "13184915933", + "Email": "hebeijilie123", + "公司地址": "唐山市路南区新华联广场" + } + } + } + ] + }, + { + "cid": "3988", + "cname": "司机", + "position_list": [ + { + "position_name": " 总经理专职司机", + "position_url": "/companyhome/post.aspx?comp=dGFuZ3NoYW5sdXFpbmc4ODg%3d&id=585090", + "company_name": "唐山市陆清建筑工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dGFuZ3NoYW5sdXFpbmc4ODg%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "27--40岁", + "学历要求:": "大专", + "工作地区:": "路北区路北区", + "工作经验:": "3-5年", + "职位类别:": "司机", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/5/20", + "福利": [], + "要求": [ + "1、品行端正、办事机敏、形象良好。", + "2、3年以上领导司机工作经验,具备奔驰、宝马等高端车辆驾驶经验。", + "3、熟悉京津冀地区路况。", + "4、退伍军人优先考虑。", + "5、试用期3个月,试用合格公司缴纳五险。", + "6、工资底薪+车补+饭补", + "7、如各方面条件优秀,女性司机亦可投递简历。" + ], + "联系": { + "联系人": "李经理", + "联系方式": "17713107786", + "Email": "tangshanluqing888", + "公司地址": "河北省唐山市路北区尚座商业街" + } + } + }, + { + "position_name": " 专职司机", + "position_url": "/companyhome/post.aspx?comp=dHNqbWU%3d&id=207818", + "company_name": "唐山金山腾宇科技有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNqbWU%3d", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "男", + "年龄要求:": "30--35岁", + "学历要求:": "大专", + "工作地区:": "唐山市唐山市", + "工作经验:": "5-8年", + "职位类别:": "司机", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/14", + "有效期限:": "2025/4/15", + "福利": [], + "要求": [ + "一、任职要求:", + "1.形象气质良好,身体健康、无纹身、不近视,无不良嗜好,身高175以上,体型匀称,退伍军人或警校毕业者优先;", + "2.驾龄5年以上,驾驶技术娴熟,熟悉唐山周边路况,熟悉车辆维修保养工作;", + "3.有领导专职司机工作经验者优先;", + "4.懂商务礼仪,普通话标准,性格温和,能够承受一定的工作压力;", + "5、适应出差。", + "二、福利待遇:五险一金、具体薪资面议。" + ], + "联系": { + "联系人": "人力资源", + "联系方式": "0315-3858712", + "Email": "690788036@qq.com", + "公司地址": "唐山市高新区庆北道31号" + } + } + }, + { + "position_name": " 总经理司机", + "position_url": "/companyhome/post.aspx?comp=cHRqejg4OA%3d%3d&id=560952", + "company_name": "唐山鹏通建筑工程有限责任公司", + "company_url": "/companyhome/company.aspx?comp=cHRqejg4OA%3d%3d", + "job_info": { + "招聘专业:": "驾龄5年以上", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "2001--3500", + "要求性别:": "男", + "年龄要求:": "25--45岁", + "学历要求:": "高中", + "工作地区:": "新区(丰润区)新区(丰润区)", + "工作经验:": "5-8年", + "职位类别:": "司机", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "丰润区", + "发布日期:": "2025/3/6", + "有效期限:": "2025/5/28", + "福利": [], + "要求": [ + "要求c本驾龄5年以上,有给总经理开车经历者优先,干净利落,能吃苦耐劳,爱好钓鱼者优先。" + ], + "联系": { + "联系人": "崔女士", + "联系方式": "15531516114", + "Email": "704680962@qq.com", + "公司地址": "唐山丰润区林荫路西侧(中建城304座21号)" + } + } + }, + { + "position_name": " 司机", + "position_url": "/companyhome/post.aspx?comp=Z2NwNzkxMTAz&id=220030", + "company_name": "河北远通建设有限责任公司", + "company_url": "/companyhome/company.aspx?comp=Z2NwNzkxMTAz", + "job_info": { + "招聘专业:": "运输类", + "招聘人数:": "1人", + "工作类型:": "全职", + "月薪:": "2001--3500", + "要求性别:": "男", + "年龄要求:": "25--40岁", + "学历要求:": "大专", + "工作地区:": "高新开发区高新开发区", + "工作经验:": "不限", + "职位类别:": "司机", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/3", + "有效期限:": "2026/1/6", + "福利": [], + "要求": [ + "要求25-40岁之间,部队开过小车者优先录用。" + ], + "联系": { + "联系人": "高女士", + "联系方式": "13832582666", + "Email": "1071017563@qq.com", + "公司地址": "高新区庆北道南侧、卫国路西" + } + } + }, + { + "position_name": " 4.2米箱货司机", + "position_url": "/companyhome/post.aspx?comp=aGVuZ2hlc2h1bjEyMw%3d%3d&id=585004", + "company_name": "天津恒合顺新材料科技有限公司", + "company_url": "/companyhome/company.aspx?comp=aGVuZ2hlc2h1bjEyMw%3d%3d", + "job_info": { + "招聘专业:": "不限", + "招聘人数:": "20人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "18--60岁", + "学历要求:": "高中", + "工作地区:": "河北以外省份天津", + "工作经验:": "2-3年", + "职位类别:": "司机", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/2/3", + "有效期限:": "2026/1/22", + "福利": [ + "薪资高于同行业平均水平", + "企业给缴纳保险" + ], + "要求": [ + "C本,驾驶技术熟练,无重大交通事故。公司十公里范围内送货。" + ], + "联系": { + "联系人": "邵经理", + "联系方式": "13582563515", + "Email": "2251173913@qq.com", + "公司地址": "唐山市丰润区任各庄镇后泥河村" + } + } + }, + { + "position_name": " 半挂驾驶员", + "position_url": "/companyhome/post.aspx?comp=a3l3bDI1OA%3d%3d&id=583520", + "company_name": "唐山焜烨物流有限公司", + "company_url": "/companyhome/company.aspx?comp=a3l3bDI1OA%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "10人", + "工作类型:": "全职", + "月薪:": "面议", + "要求性别:": "男", + "年龄要求:": "25--53岁", + "学历要求:": "高中", + "工作地区:": "路北区路北区", + "工作经验:": "2-3年", + "职位类别:": "司机", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2024/11/1", + "有效期限:": "2025/10/29", + "福利": [ + "薪资高于同行业平均水平", + "企业给缴纳保险" + ], + "要求": [ + "招聘挂车驾驶员", + "拉邮政快递,省内省外路线", + "不用装卸", + "有ETC和加油卡", + "工伤保险", + "工资:按趟计算" + ], + "联系": { + "联系人": "袁主管", + "联系方式": "13230885191", + "Email": "jinfengyouxiang@163.com", + "公司地址": "唐山市路北区普洛斯物流园" + } + } + } + ] + }, + { + "cid": "3989", + "cname": "航空/列车/船舶操作维修", + "position_list": [ + { + "position_name": " 直招高铁乘警", + "position_url": "/companyhome/post.aspx?comp=aGJ0cQ%3d%3d&id=198453", + "company_name": "河北傲卫勤务安防工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGJ0cQ%3d%3d", + "job_info": { + "招聘专业:": "铁路工程类", + "招聘人数:": "15人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "女", + "年龄要求:": "20--24岁", + "学历要求:": "中专", + "工作地区:": "唐山市唐山市", + "工作经验:": "不限", + "职位类别:": "航空/列车/船舶操作维修", + "外语要求:": "", + "外语等级:": "一般", + "政治面貌:": "群众", + "户口要求:": "无", + "发布日期:": "2025/3/19", + "有效期限:": "2025/8/19", + "福利": [], + "要求": [ + "工作内容:", + "1、负责协助乘客上下车,检查票务,认座,乘客咨询等工作;", + "2、负责协助车站入站(出站)口检票工作;", + "3、负责协助列车、站内安全检查(包括协助,抽查旅客身份证件);", + "任职要求:", + "1.年龄:18-24周岁,高中以上学历,退伍军人优先入用(需有退伍军人证件);", + "2.身高:女1.62米以上,体重65kg以内;男1.75米以上,体重70kg以内;", + "3.身体健康、品行良好、无纹身、前科、赌博吸毒酗酒等不良行为;", + "4  无精神疾病等不能自控行为的疾病及病史。", + "5,工作时间8小时,上几休几倒班制,具体根据单位统一分配。", + "薪资福利:", + "1、基本工资+其他福利津贴,一线城市合成工资每月不低于4000-6000元,二三线城市每月3000-5000。平均年薪不低于7-10W。", + "2、每月公休4-8天,享受法定节假日三倍工资及带薪15天年假;新员工入职满一年以上享受工龄工资。", + "3、免费提供食宿、被褥、免费无线网,宿舍有空调,24小时热水澡;", + "4、有管理潜力者公司会极力培养,(班组长,队长、项目经理及以上职务,有很大晋升空间)", + "5、首签1-3年,转正统一缴纳五险(养老险、医疗险、工伤险、失业险、生育险)", + "6、公司不定期免费组织员工外出旅游、聚餐等活动;", + "岗位工作地点:", + "1,面向全国各级城市以省会城市为主相对就近调配安排。" + ], + "联系": { + "联系人": "王主任", + "联系方式": "15369505556", + "Email": "253118579@qq.com", + "公司地址": "15369505556" + } + } + } + ] + }, + { + "cid": "3990", + "cname": "公交/地铁", + "position_list": [ + { + "position_name": " 列车安检员", + "position_url": "/companyhome/post.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d&id=579861", + "company_name": "河北冀列铁路工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "20人", + "工作类型:": "不限", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "18--28岁", + "学历要求:": "中专", + "工作地区:": "迁西县迁西县", + "工作经验:": "1年及以下", + "职位类别:": "公交/地铁", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/5/17", + "福利": [], + "要求": [ + "男士18-28周岁,身高170以上,女士18-28周岁,身高160以上、无纹身及前科。", + "薪资待遇:综合薪资4000-7000、上几休几、五险一金、管吃住。", + "岗位职责:", + "1、组织旅客上、下车,检查票务,认座,旅客咨询,通报到站等工作", + "2、防止旅客将易燃、易爆等危险品带入站内,车内", + "3、整理车厢旅客行李,巡视车厢", + "4、协助铁路负责维持站内、车内秩序和安全工作", + "工作地址:根据户籍地结合岗位空缺就近分配。" + ], + "联系": { + "联系人": "李先生", + "联系方式": "13184915933", + "Email": "hebeijilie123", + "公司地址": "唐山市路南区新华联广场" + } + } + }, + { + "position_name": " 站内工作人员", + "position_url": "/companyhome/post.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d&id=579865", + "company_name": "河北冀列铁路工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "20人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "18--28岁", + "学历要求:": "中专", + "工作地区:": "玉田县玉田县", + "工作经验:": "1年及以下", + "职位类别:": "公交/地铁", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/5/17", + "福利": [], + "要求": [ + "男士18-28周岁,身高170以上,女士18-28周岁,身高160以上、无纹身及前科。", + "薪资待遇:综合薪资4000-7000、上几休几、五险一金、管吃住。", + "岗位职责:", + "1、组织旅客上、下车,检查票务,认座,旅客咨询,通报到站等工作", + "2、防止旅客将易燃、易爆等危险品带入站内,车内", + "3、整理车厢旅客行李,巡视车厢", + "4、协助铁路负责维持站内、车内秩序和安全工作", + "工作地址:根据户籍地结合岗位空缺就近分配。" + ], + "联系": { + "联系人": "李先生", + "联系方式": "13184915933", + "Email": "hebeijilie123", + "公司地址": "唐山市路南区新华联广场" + } + } + }, + { + "position_name": " 列车安检员", + "position_url": "/companyhome/post.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d&id=579867", + "company_name": "河北冀列铁路工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "20人", + "工作类型:": "全职", + "月薪:": "3501--5000", + "要求性别:": "不限", + "年龄要求:": "18--28岁", + "学历要求:": "中专", + "工作地区:": "乐亭县乐亭县", + "工作经验:": "1年及以下", + "职位类别:": "公交/地铁", + "外语要求:": "不限", + "外语等级:": "一般", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/3/18", + "有效期限:": "2025/5/17", + "福利": [], + "要求": [ + "男士18-28周岁,身高170以上,女士18-28周岁,身高160以上、无纹身及前科。", + "薪资待遇:综合薪资4000-7000、上几休几、五险一金、管吃住。", + "岗位职责:", + "1、组织旅客上、下车,检查票务,认座,旅客咨询,通报到站等工作", + "2、防止旅客将易燃、易爆等危险品带入站内,车内", + "3、整理车厢旅客行李,巡视车厢", + "4、协助铁路负责维持站内、车内秩序和安全工作", + "工作地址:根据户籍地结合岗位空缺就近分配。" + ], + "联系": { + "联系人": "李先生", + "联系方式": "13184915933", + "Email": "hebeijilie123", + "公司地址": "唐山市路南区新华联广场" + } + } + } + ] + }, + { + "cid": "3991", + "cname": "空乘人员", + "position_list": [] + }, + { + "cid": "3992", + "cname": "船务/空运陆运操作", + "position_list": [] + } + ] + }, + { + "id": "4088", + "name": "地矿冶金类", + "child": [ + { + "cid": "4089", + "cname": "地矿冶金类" + }, + { + "cid": "4090", + "cname": "采矿工程师", + "position_list": [] + }, + { + "cid": "4091", + "cname": "选矿工程师", + "position_list": [] + }, + { + "cid": "4092", + "cname": "矿物加工工程师", + "position_list": [ + { + "position_name": " 选矿工艺工程师", + "position_url": "/companyhome/post.aspx?comp=dHNsaw%3d%3d&id=220554", + "company_name": "唐山陆凯科技有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNsaw%3d%3d", + "job_info": { + "招聘专业:": "", + "招聘人数:": "5人", + "工作类型:": "全职", + "月薪:": "5001--8000", + "要求性别:": "不限", + "年龄要求:": "23--30岁", + "学历要求:": "本科", + "工作地区:": "高新开发区高新开发区", + "工作经验:": "1年及以下", + "职位类别:": "矿物加工工程师", + "外语要求:": "", + "外语等级:": "优秀", + "政治面貌:": "", + "户口要求:": "无", + "发布日期:": "2025/2/15", + "有效期限:": "2025/9/27", + "福利": [ + "薪资高于同行业平均水平", + "每周有两天休息时间", + "企业给缴纳住房公积金", + "年底有奖金或13/14月薪", + "提供免费工作餐或餐补", + "有计划组织员工集体旅游", + "企业公费组织员工培训", + "每天工作时间不超过8小时", + "企业给缴纳保险" + ], + "要求": [ + "全日制本科及以上学历,矿物加工工程专业优先,具有正确的人生观、思想观、价值观,爱国敬业,积极向上,热爱矿物加工专业技术工作,具有撰写论文、制定试验方案、项目方案的能力,能适应出差去现场做实验和调试。" + ], + "联系": { + "联系人": "郭女士", + "联系方式": "0315-3859838", + "Email": "lkhr@lk-t.com.cn", + "公司地址": "唐山市高新技术开发区火炬路208号" + } + } + } + ] + }, + { + "cid": "4093", + "cname": "矿山管理/采矿管理", + "position_list": [] + }, + { + "cid": "4094", + "cname": "矿山/采矿安全管理", + "position_list": [] + }, + { + "cid": "4095", + "cname": "爆破技术", + "position_list": [] + } + ] + } +] \ No newline at end of file diff --git a/web/tsrcw/main.py b/web/tsrcw/main.py new file mode 100644 index 0000000..a5c5752 --- /dev/null +++ b/web/tsrcw/main.py @@ -0,0 +1,175 @@ +import json +import re +import time + +import requests +from lxml import etree + + +class Tsrcw: + def __init__(self): + self.headers = { + "accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", + "accept-language": "zh-CN,zh;q=0.9,en;q=0.8", + "cache-control": "no-cache", + "pragma": "no-cache", + "priority": "u=0, i", + "referer": "https://www.tsrcw.com/persondh/latest.aspx", + "sec-ch-ua": "\"Chromium\";v=\"134\", \"Not:A-Brand\";v=\"24\", \"Google Chrome\";v=\"134\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "sec-fetch-dest": "document", + "sec-fetch-mode": "navigate", + "sec-fetch-site": "same-origin", + "sec-fetch-user": "?1", + "upgrade-insecure-requests": "1", + "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36" + } + self.cookies = { + "ASP.NET_SessionId": "1hroesd0og5cqszyv42jkf30", + "yzmCookiestr": "ImgCode=1132&ExpireDate=2025/3/19 13:22:40&HaveUsed=1", + "PersonUser": "name=wxfkali222&key=0A1AD61BFD75D12B25A946E01AA2E894" + } + + def get_index2html(self): + url = "https://www.tsrcw.com/default.aspx" + response = requests.get(url, headers=self.headers, cookies=self.cookies) + with open("index.html", "w", encoding="utf-8") as f: + f.write(response.text) + html = response.text + url_list = re.findall(r'url: \'/html/ashx/globla\.ashx\?action=(.*?)\'', html) + return url_list + + def get_idlist(self): + # url = "https://www.tsrcw.com/html/ashx/globla.ashx" + # params = { + # "action": "zwlistEight" + # } + # response = requests.get(url, headers=self.headers, cookies=self.cookies, params=params) + # jsonf = json.dumps(response.json().get('msg'), ensure_ascii=False) + # with open("idlist.json", "w", encoding="utf-8") as f: + # f.write(jsonf) + with open("idlist.json", "r", encoding="utf-8") as f: + jsonf = f.read() + return jsonf + + def get_detaillist(self, jsonf): + idlist = json.loads(jsonf) + for item in idlist: + for c in item.get('child'): + cid = c.get('cid') + if c.get("cname") == item.get("name"): + continue + url = "https://www.tsrcw.com/persondh/latest.aspx" + params = { + "job": "{}".format(cid) + } + response = requests.get(url, headers=self.headers, cookies=self.cookies, params=params) + html = response.text + xpathobj = etree.HTML(html) + position_name = xpathobj.xpath("//td[@class='text-left']/p/a/text()") + position_url = xpathobj.xpath("//td[@class='text-left']/p/a/@href") + company_name = xpathobj.xpath("//td[@class='w400']/div/span/a/text()") + company_url = xpathobj.xpath("//td[@class='w400']/div/span/a/@href") + + if len(position_url) > 0: + position_list = [{ + "position_name":position_name[index], + "position_url":position_url[index], + "company_name":company_name[index], + "company_url":company_url[index] + }for index,i in enumerate(position_name)] + if len(position_list) >= 20: + params2 = params.copy() + params2["page"] = "2" # 整个网站没有第三页的数据 + response2 = requests.get(url, headers=self.headers, cookies=self.cookies, params=params2) + html2 = response2.text + xpathobj2 = etree.HTML(html2) + position_name2 = xpathobj2.xpath("//td[@class='text-left']/p/a/text()") + position_url2 = xpathobj2.xpath("//td[@class='text-left']/p/a/@href") + company_name2 = xpathobj2.xpath("//td[@class='w400']/div/span/a/text()") + company_url2 = xpathobj2.xpath("//td[@class='w400']/div/span/a/@href") + for index,i in enumerate(position_name2): + position_list.append({ + "position_name":position_name2[index], + "position_url":position_url2[index], + "company_name":company_name2[index], + "company_url":company_url2[index] + }) + c["position_list"] = position_list + else: + c["position_list"] = [] + + + p_list = json.dumps(idlist, ensure_ascii=False) + with open("plist.json", "w", encoding="utf-8") as f: + f.write(p_list) + + def get_poition_info(self): + q = [] + y = 0 + with open("plist.json", "r", encoding="utf-8") as f: + jsonf = f.read() + plist = json.loads(jsonf) + for item in plist: + for c in item.get('child'): + if c.get("cname") == item.get("name"): + continue + if len(c.get("position_list")) == 0: + continue + position_list = c.get("position_list") + for position in position_list: + href = position.get("position_url") + url = "https://www.tsrcw.com" + href + print(url) + response = requests.get(url, headers=self.headers, cookies=self.cookies) + html = response.text + xpathobj = etree.HTML(html) + job_info = {} + position_table = xpathobj.xpath("//div[@class='baseinfo']/table/tr") + for row in position_table: + position_key_list = [key.strip() for key in row.xpath("th/text()") if key.strip()] + position_value_list = [''.join(value.xpath(".//text()")).strip() for value in row.xpath("td")] + while len(position_value_list) < len(position_key_list): + position_value_list.append('') # 在末尾补充空字符串 + + for key, value in zip(position_key_list, position_value_list): + if ":" in value: + value = value.replace(":", "") + if "\u3000\u3000" in key: + key = key.replace("\u3000\u3000", "") + if "\r\n " in value: + value = value.replace("\r\n ", "") + job_info[key] = value + fl = xpathobj.xpath("//div[@class='s12_div']/text()") + job_info["福利"] = fl + yq = xpathobj.xpath("//div[@class='requirement']/div[@class='content']/text()") + yq = [i.replace('\r\n ','').replace('\r','').strip() for i in yq if i.strip()] + job_info["要求"] = yq + lxk = xpathobj.xpath("//div[@class='contactus']/div[@class='content']/ul/li/span/text()") + lxk = [i.replace(' ','').strip() for i in lxk if i.strip()] + lxv = xpathobj.xpath("//div[@class='contactus']/div[@class='content']/ul/li/text()") + lxv = [i.replace(':','').strip() for i in lxv if i.strip()] + lximg = xpathobj.xpath("//div[@class='contactus']/div[@class='content']/ul/li/img/@src") + if len(yq) == 0 and len(lxk) == 0: + q.append(url) + continue + + if lxv[1] == '' and lxv[2] == '': + lxv[1] = lximg[0].split('value=')[1] + lxv[2] = lximg[1].split('value=')[1] + lx = dict(zip(lxk, lxv)) + job_info["联系"] = lx + # time.sleepe11) + position["job_info"] = job_info + print("=====",y,"=====") + y += 1 + + with open("job_info.json", "w", encoding="utf-8") as f: + f.write(json.dumps(plist, ensure_ascii=False)) + with open("position_info_back.json", "w", encoding="utf-8") as f: + f.write(json.dumps(c, ensure_ascii=False)) + +if __name__ == '__main__': + tsrcw = Tsrcw() + tsrcw.get_poition_info() diff --git a/web/tsrcw/plist.json b/web/tsrcw/plist.json new file mode 100644 index 0000000..31cc60e --- /dev/null +++ b/web/tsrcw/plist.json @@ -0,0 +1,3344 @@ +[ + { + "id": "3560", + "name": "计算机类", + "child": [ + { + "cid": "3561", + "cname": "系统分析员", + "position_list": [] + }, + { + "cid": "3562", + "cname": "软件开发与测试", + "position_list": [ + { + "position_name": " 软件开发岗(劳务派遣)", + "position_url": "/companyhome/post.aspx?comp=em1rZ3RzeQ%3d%3d&id=581999", + "company_name": "中煤科工集团唐山研究院有限公司", + "company_url": "/companyhome/company.aspx?comp=em1rZ3RzeQ%3d%3d" + }, + { + "position_name": " 软件工程师", + "position_url": "/companyhome/post.aspx?comp=RFJaREg%3d&id=215236", + "company_name": "唐山东润自动化工程股份有限公司", + "company_url": "/companyhome/company.aspx?comp=RFJaREg%3d" + } + ] + }, + { + "cid": "3563", + "cname": "系统维护/网络管理", + "position_list": [ + { + "position_name": " 网宣", + "position_url": "/companyhome/post.aspx?comp=amhsdzEwMDI%3d&id=194485", + "company_name": "唐山市建华自动控制设备厂", + "company_url": "/companyhome/company.aspx?comp=amhsdzEwMDI%3d" + }, + { + "position_name": " 驻厂维保", + "position_url": "/companyhome/post.aspx?comp=aHVheWFu&id=8506", + "company_name": "唐山市华岩网络工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aHVheWFu" + }, + { + "position_name": " 网络维修", + "position_url": "/companyhome/post.aspx?comp=eHV5dWppbmt1bi04ODg%3d&id=165161", + "company_name": "河北旭宇金坤药业有限公司", + "company_url": "/companyhome/company.aspx?comp=eHV5dWppbmt1bi04ODg%3d" + } + ] + }, + { + "cid": "3564", + "cname": "网络工程", + "position_list": [ + { + "position_name": " 监控系统工程师", + "position_url": "/companyhome/post.aspx?comp=Ymprag%3d%3d&id=168864", + "company_name": "河北博嘉科技有限公司", + "company_url": "/companyhome/company.aspx?comp=Ymprag%3d%3d" + } + ] + }, + { + "cid": "3565", + "cname": "网站信息管理/内容编辑", + "position_list": [] + }, + { + "cid": "3566", + "cname": "网站策划", + "position_list": [] + }, + { + "cid": "3567", + "cname": "网页设计制作/网页美工", + "position_list": [] + }, + { + "cid": "3568", + "cname": "多媒体设计与开发", + "position_list": [] + }, + { + "cid": "3569", + "cname": "计算机辅助设计与绘图", + "position_list": [] + }, + { + "cid": "3570", + "cname": "数据库开发与管理", + "position_list": [] + }, + { + "cid": "3571", + "cname": "系统集成/技术支持", + "position_list": [ + { + "position_name": " 网络及软硬件维护人员", + "position_url": "/companyhome/post.aspx?comp=emhhbmdodWF3ZWk%3d&id=20968", + "company_name": "唐山市鑫炜驰科技有限公司", + "company_url": "/companyhome/company.aspx?comp=emhhbmdodWF3ZWk%3d" + }, + { + "position_name": " 技术", + "position_url": "/companyhome/post.aspx?comp=dHNqbGR6MDg%3d&id=51395", + "company_name": "唐山市巨龙电子中心", + "company_url": "/companyhome/company.aspx?comp=dHNqbGR6MDg%3d" + }, + { + "position_name": " 网络运维技术", + "position_url": "/companyhome/post.aspx?comp=eXV5YW5na2VqaQ%3d%3d&id=585108", + "company_name": "唐山玉洋科技服务有限公司", + "company_url": "/companyhome/company.aspx?comp=eXV5YW5na2VqaQ%3d%3d" + } + ] + }, + { + "cid": "3572", + "cname": "系统安全管理", + "position_list": [] + }, + { + "cid": "3573", + "cname": "计算机类" + }, + { + "cid": "3574", + "cname": "信息安全工程师", + "position_list": [] + }, + { + "cid": "3575", + "cname": "ERP技术/开发应用工程师", + "position_list": [] + }, + { + "cid": "3576", + "cname": "系统管理员/网络管理员", + "position_list": [] + }, + { + "cid": "3577", + "cname": "硬件测试工程师", + "position_list": [] + }, + { + "cid": "3578", + "cname": "信息系统分析员", + "position_list": [] + }, + { + "cid": "3579", + "cname": "工程师/软件测试工程师", + "position_list": [] + }, + { + "cid": "3580", + "cname": "硬件工程师", + "position_list": [] + }, + { + "cid": "3581", + "cname": "数据库工程师/管理员", + "position_list": [ + { + "position_name": " 数采工程师", + "position_url": "/companyhome/post.aspx?comp=YmdndDcyMDUwODk%3d&id=585027", + "company_name": "秦皇岛佰工钢铁有限公司", + "company_url": "/companyhome/company.aspx?comp=YmdndDcyMDUwODk%3d" + } + ] + }, + { + "cid": "3582", + "cname": "系统集成工程师", + "position_list": [] + }, + { + "cid": "3583", + "cname": "系统架构师", + "position_list": [] + }, + { + "cid": "3584", + "cname": "ERP实施顾问", + "position_list": [ + { + "position_name": " ERP工程师", + "position_url": "/companyhome/post.aspx?comp=YmdndDcyMDUwODk%3d&id=585028", + "company_name": "秦皇岛佰工钢铁有限公司", + "company_url": "/companyhome/company.aspx?comp=YmdndDcyMDUwODk%3d" + } + ] + }, + { + "cid": "3585", + "cname": "软件UI设计师/工程师", + "position_list": [] + }, + { + "cid": "3586", + "cname": "研发工程师 需求工程师", + "position_list": [ + { + "position_name": " 软件工程师", + "position_url": "/companyhome/post.aspx?comp=amhsdzEwMDI%3d&id=575356", + "company_name": "唐山市建华自动控制设备厂", + "company_url": "/companyhome/company.aspx?comp=amhsdzEwMDI%3d" + }, + { + "position_name": " 软件开发工程师", + "position_url": "/companyhome/post.aspx?comp=YmdndDcyMDUwODk%3d&id=585029", + "company_name": "秦皇岛佰工钢铁有限公司", + "company_url": "/companyhome/company.aspx?comp=YmdndDcyMDUwODk%3d" + } + ] + }, + { + "cid": "3587", + "cname": "网站运营管理/运营专员", + "position_list": [] + }, + { + "cid": "3588", + "cname": "游戏设计/开发", + "position_list": [] + }, + { + "cid": "3589", + "cname": "游戏策划", + "position_list": [] + }, + { + "cid": "3590", + "cname": "游戏界面设计师", + "position_list": [] + }, + { + "cid": "3591", + "cname": "特效设计师", + "position_list": [] + }, + { + "cid": "3592", + "cname": "视觉设计师", + "position_list": [] + }, + { + "cid": "3593", + "cname": "语音/视频/图形开发工程师", + "position_list": [] + }, + { + "cid": "3594", + "cname": "Flash设计/开发", + "position_list": [] + }, + { + "cid": "3595", + "cname": "UI/UE设计师/顾问", + "position_list": [] + }, + { + "cid": "3596", + "cname": "三维/3D设计/制作", + "position_list": [] + }, + { + "cid": "3597", + "cname": "网络优化师/SEO", + "position_list": [ + { + "position_name": " 电脑网管员", + "position_url": "/companyhome/post.aspx?comp=dGZ3eg%3d%3d&id=578563", + "company_name": "唐山市金正钢板有限公司", + "company_url": "/companyhome/company.aspx?comp=dGZ3eg%3d%3d" + } + ] + } + ] + }, + { + "id": "3726", + "name": "财务类", + "child": [ + { + "cid": "3727", + "cname": "财务总监/经理/主任", + "position_list": [ + { + "position_name": " 财务副部长", + "position_url": "/companyhome/post.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d&id=585799", + "company_name": "唐山天鸿建设集团有限责任公司", + "company_url": "/companyhome/company.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d" + }, + { + "position_name": " 财务经理", + "position_url": "/companyhome/post.aspx?comp=dHlybDEyMzQ1Ng%3d%3d&id=583513", + "company_name": "河北唐银钢铁有限公司", + "company_url": "/companyhome/company.aspx?comp=dHlybDEyMzQ1Ng%3d%3d" + }, + { + "position_name": " 财务部主任", + "position_url": "/companyhome/post.aspx?comp=dHNqZHJqMjAwOA%3d%3d&id=581325", + "company_name": "中溶科技股份有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNqZHJqMjAwOA%3d%3d" + } + ] + }, + { + "cid": "3728", + "cname": "财务", + "position_list": [ + { + "position_name": " 内账会计", + "position_url": "/companyhome/post.aspx?comp=aGVuZ2hlc2h1bjEyMw%3d%3d&id=585005", + "company_name": "天津恒合顺新材料科技有限公司", + "company_url": "/companyhome/company.aspx?comp=aGVuZ2hlc2h1bjEyMw%3d%3d" + }, + { + "position_name": " 预算员4000-8000", + "position_url": "/companyhome/post.aspx?comp=aG9uZzEwMDMx&id=566904", + "company_name": "唐山方舟实业有限公司", + "company_url": "/companyhome/company.aspx?comp=aG9uZzEwMDMx" + } + ] + }, + { + "cid": "3729", + "cname": "出纳/收银", + "position_list": [ + { + "position_name": " 出纳", + "position_url": "/companyhome/post.aspx?comp=dHN5dHpoYg%3d%3d&id=569289", + "company_name": "唐山远通实业有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN5dHpoYg%3d%3d" + }, + { + "position_name": " 会计(出纳)", + "position_url": "/companyhome/post.aspx?comp=eHV5dWppbmt1bi04ODg%3d&id=208060", + "company_name": "河北旭宇金坤药业有限公司", + "company_url": "/companyhome/company.aspx?comp=eHV5dWppbmt1bi04ODg%3d" + }, + { + "position_name": " 出纳", + "position_url": "/companyhome/post.aspx?comp=emp0YzEyMw%3d%3d&id=198557", + "company_name": "唐山市中建天诚建筑装饰工程有限公司", + "company_url": "/companyhome/company.aspx?comp=emp0YzEyMw%3d%3d" + }, + { + "position_name": " 出纳", + "position_url": "/companyhome/post.aspx?comp=dGFuZ3NoYW5zaHVzZW4%3d&id=579901", + "company_name": "唐山市树森商贸有限公司", + "company_url": "/companyhome/company.aspx?comp=dGFuZ3NoYW5zaHVzZW4%3d" + }, + { + "position_name": " 出纳", + "position_url": "/companyhome/post.aspx?comp=dHNocA%3d%3d&id=239926", + "company_name": "慧鹏建设集团有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNocA%3d%3d" + }, + { + "position_name": " 出纳", + "position_url": "/companyhome/post.aspx?comp=dG9uZ3hpbmdvbmdzaQ%3d%3d&id=583517", + "company_name": "唐山曹妃甸区通鑫再生资源回收利用有限公司", + "company_url": "/companyhome/company.aspx?comp=dG9uZ3hpbmdvbmdzaQ%3d%3d" + }, + { + "position_name": " 现金会计", + "position_url": "/companyhome/post.aspx?comp=enAyODIzMDIy&id=581053", + "company_name": "河北中磐建设工程有限公司", + "company_url": "/companyhome/company.aspx?comp=enAyODIzMDIy" + } + ] + }, + { + "cid": "3730", + "cname": "统计", + "position_list": [ + { + "position_name": " 统计员", + "position_url": "/companyhome/post.aspx?comp=eHV5dWppbmt1bi04ODg%3d&id=208061", + "company_name": "河北旭宇金坤药业有限公司", + "company_url": "/companyhome/company.aspx?comp=eHV5dWppbmt1bi04ODg%3d" + }, + { + "position_name": " 预算员", + "position_url": "/companyhome/post.aspx?comp=Z2pseWQxMjM%3d&id=581880", + "company_name": "唐山国际旅游岛文化旅游运营管理有限公司", + "company_url": "/companyhome/company.aspx?comp=Z2pseWQxMjM%3d" + } + ] + }, + { + "cid": "3731", + "cname": "审计", + "position_list": [ + { + "position_name": " 审计项目经理", + "position_url": "/companyhome/post.aspx?comp=NTMwMTIxOA%3d%3d&id=192349", + "company_name": "唐山市合衡会计师事务所(普通合伙)", + "company_url": "/companyhome/company.aspx?comp=NTMwMTIxOA%3d%3d" + }, + { + "position_name": " 审计助理", + "position_url": "/companyhome/post.aspx?comp=NTMwMTIxOA%3d%3d&id=192352", + "company_name": "唐山市合衡会计师事务所(普通合伙)", + "company_url": "/companyhome/company.aspx?comp=NTMwMTIxOA%3d%3d" + }, + { + "position_name": " 注册会计师", + "position_url": "/companyhome/post.aspx?comp=NTMwMTIxOA%3d%3d&id=192353", + "company_name": "唐山市合衡会计师事务所(普通合伙)", + "company_url": "/companyhome/company.aspx?comp=NTMwMTIxOA%3d%3d" + }, + { + "position_name": " 注册造价师", + "position_url": "/companyhome/post.aspx?comp=NTMwMTIxOA%3d%3d&id=581949", + "company_name": "唐山市合衡会计师事务所(普通合伙)", + "company_url": "/companyhome/company.aspx?comp=NTMwMTIxOA%3d%3d" + }, + { + "position_name": " 注册会计师及会计审计助理", + "position_url": "/companyhome/post.aspx?comp=VFNZRDAx&id=191689", + "company_name": "唐山永大会计师事务所有限公司", + "company_url": "/companyhome/company.aspx?comp=VFNZRDAx" + } + ] + }, + { + "cid": "3732", + "cname": "税务师/税务专员", + "position_list": [] + }, + { + "cid": "3733", + "cname": "财务总监", + "position_list": [ + { + "position_name": " 工程会计", + "position_url": "/companyhome/post.aspx?comp=YmVpc2hhbmc%3d&id=584894", + "company_name": "河北北上节能科技有限公司", + "company_url": "/companyhome/company.aspx?comp=YmVpc2hhbmc%3d" + } + ] + }, + { + "cid": "3734", + "cname": "融资经理", + "position_list": [] + }, + { + "cid": "3735", + "cname": "会计师/会计", + "position_list": [ + { + "position_name": " 会计主管", + "position_url": "/companyhome/post.aspx?comp=dHN5dHpoYg%3d%3d&id=217986", + "company_name": "唐山远通实业有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN5dHpoYg%3d%3d" + }, + { + "position_name": " 会计", + "position_url": "/companyhome/post.aspx?comp=dHN5dHpoYg%3d%3d&id=579679", + "company_name": "唐山远通实业有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN5dHpoYg%3d%3d" + }, + { + "position_name": " 三级账", + "position_url": "/companyhome/post.aspx?comp=enF6ZzY2NjY%3d&id=220158", + "company_name": "中起重工机械有限公司", + "company_url": "/companyhome/company.aspx?comp=enF6ZzY2NjY%3d" + }, + { + "position_name": " 主管会计一名", + "position_url": "/companyhome/post.aspx?comp=dHNzdHkxMTE%3d&id=585101", + "company_name": "唐山市庭源会计咨询有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNzdHkxMTE%3d" + }, + { + "position_name": " 管理会计(劳务派遣)", + "position_url": "/companyhome/post.aspx?comp=em1rZ3RzeQ%3d%3d&id=581452", + "company_name": "中煤科工集团唐山研究院有限公司", + "company_url": "/companyhome/company.aspx?comp=em1rZ3RzeQ%3d%3d" + } + ] + }, + { + "cid": "3736", + "cname": "总帐主管", + "position_list": [] + }, + { + "cid": "3737", + "cname": "财务分析经理/主管", + "position_list": [] + }, + { + "cid": "3738", + "cname": "财务顾问", + "position_list": [] + }, + { + "cid": "3739", + "cname": "成本会计", + "position_list": [ + { + "position_name": " 成本会计", + "position_url": "/companyhome/post.aspx?comp=Q0NLSjE5MTk%3d&id=581346", + "company_name": "创超科技(唐山)有限公司", + "company_url": "/companyhome/company.aspx?comp=Q0NLSjE5MTk%3d" + }, + { + "position_name": " 建筑施工财务", + "position_url": "/companyhome/post.aspx?comp=aGVuZ3l1eml4dW4%3d&id=584920", + "company_name": "唐山市恒誉工程技术咨询有限责任公司", + "company_url": "/companyhome/company.aspx?comp=aGVuZ3l1eml4dW4%3d" + }, + { + "position_name": " 成本会计", + "position_url": "/companyhome/post.aspx?comp=amlhaGVuZw%3d%3d&id=585793", + "company_name": "唐山市嘉恒实业有限公司", + "company_url": "/companyhome/company.aspx?comp=amlhaGVuZw%3d%3d" + }, + { + "position_name": " 主管会计", + "position_url": "/companyhome/post.aspx?comp=dGZ3eg%3d%3d&id=151839", + "company_name": "唐山市金正钢板有限公司", + "company_url": "/companyhome/company.aspx?comp=dGZ3eg%3d%3d" + }, + { + "position_name": " 成本会计", + "position_url": "/companyhome/post.aspx?comp=eHV5dWppbmt1bi04ODg%3d&id=167432", + "company_name": "河北旭宇金坤药业有限公司", + "company_url": "/companyhome/company.aspx?comp=eHV5dWppbmt1bi04ODg%3d" + }, + { + "position_name": " 会计", + "position_url": "/companyhome/post.aspx?comp=dHNocA%3d%3d&id=239927", + "company_name": "慧鹏建设集团有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNocA%3d%3d" + }, + { + "position_name": " 成本会计", + "position_url": "/companyhome/post.aspx?comp=cmNwcQ%3d%3d&id=585000", + "company_name": "唐山市人才派遣中心", + "company_url": "/companyhome/company.aspx?comp=cmNwcQ%3d%3d" + }, + { + "position_name": " 成本会计", + "position_url": "/companyhome/post.aspx?comp=dHN4ZGpz&id=582526", + "company_name": "河北鑫鼎建设工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN4ZGpz" + } + ] + }, + { + "cid": "3740", + "cname": "会计文员", + "position_list": [ + { + "position_name": " 开票专员《已婚已育》", + "position_url": "/companyhome/post.aspx?comp=enF6ZzY2NjY%3d&id=580260", + "company_name": "中起重工机械有限公司", + "company_url": "/companyhome/company.aspx?comp=enF6ZzY2NjY%3d" + }, + { + "position_name": " 财务人员", + "position_url": "/companyhome/post.aspx?comp=dG9uZ2FpOTk5&id=584949", + "company_name": "河北彤爱商贸有限责任公司", + "company_url": "/companyhome/company.aspx?comp=dG9uZ2FpOTk5" + }, + { + "position_name": " 统计", + "position_url": "/companyhome/post.aspx?comp=aG9uZzEwMDMx&id=582557", + "company_name": "唐山方舟实业有限公司", + "company_url": "/companyhome/company.aspx?comp=aG9uZzEwMDMx" + } + ] + }, + { + "cid": "3741", + "cname": "资金专员", + "position_list": [] + }, + { + "cid": "3742", + "cname": "财务类" + } + ] + }, + { + "id": "3743", + "name": "工业/工厂类", + "child": [ + { + "cid": "3744", + "cname": "工业/工厂类" + }, + { + "cid": "3745", + "cname": "生产管理", + "position_list": [ + { + "position_name": " 质检工程师", + "position_url": "/companyhome/post.aspx?comp=endsag%3d%3d&id=565037", + "company_name": "中物杭萧绿建科技股份有限公司", + "company_url": "/companyhome/company.aspx?comp=endsag%3d%3d" + }, + { + "position_name": " 修船主管", + "position_url": "/companyhome/post.aspx?comp=aG9uZzEwMDMx&id=567776", + "company_name": "唐山方舟实业有限公司", + "company_url": "/companyhome/company.aspx?comp=aG9uZzEwMDMx" + } + ] + }, + { + "cid": "3746", + "cname": "工程管理", + "position_list": [] + }, + { + "cid": "3747", + "cname": "品质管理", + "position_list": [ + { + "position_name": " 品质检验员", + "position_url": "/companyhome/post.aspx?comp=dHNsaw%3d%3d&id=220543", + "company_name": "唐山陆凯科技有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNsaw%3d%3d" + } + ] + }, + { + "cid": "3748", + "cname": "物料管理", + "position_list": [ + { + "position_name": " 轴承管理、轧辊管理", + "position_url": "/companyhome/post.aspx?comp=anhocjAwMQ%3d%3d&id=584962", + "company_name": "河北津西钢铁集团股份有限公司", + "company_url": "/companyhome/company.aspx?comp=anhocjAwMQ%3d%3d" + } + ] + }, + { + "cid": "3749", + "cname": "设备管理", + "position_list": [ + { + "position_name": " 设备机动部部长", + "position_url": "/companyhome/post.aspx?comp=dHlybDEyMzQ1Ng%3d%3d&id=583834", + "company_name": "河北唐银钢铁有限公司", + "company_url": "/companyhome/company.aspx?comp=dHlybDEyMzQ1Ng%3d%3d" + }, + { + "position_name": " 磨床维护保养管理", + "position_url": "/companyhome/post.aspx?comp=anhocjAwMQ%3d%3d&id=584963", + "company_name": "河北津西钢铁集团股份有限公司", + "company_url": "/companyhome/company.aspx?comp=anhocjAwMQ%3d%3d" + }, + { + "position_name": " 设备主任", + "position_url": "/companyhome/post.aspx?comp=YmFpc2hhbjIwMjE%3d&id=583488", + "company_name": "河北百善医药科技有限公司", + "company_url": "/companyhome/company.aspx?comp=YmFpc2hhbjIwMjE%3d" + }, + { + "position_name": " 设备部经理", + "position_url": "/companyhome/post.aspx?comp=YmFpc2hhbjIwMjE%3d&id=583498", + "company_name": "河北百善医药科技有限公司", + "company_url": "/companyhome/company.aspx?comp=YmFpc2hhbjIwMjE%3d" + }, + { + "position_name": " 现场运维", + "position_url": "/companyhome/post.aspx?comp=Z3VvemlyZW5saQ%3d%3d&id=581235", + "company_name": "唐山国资人力资源服务有限责任公司", + "company_url": "/companyhome/company.aspx?comp=Z3VvemlyZW5saQ%3d%3d" + } + ] + }, + { + "cid": "3750", + "cname": "仓库管理", + "position_list": [ + { + "position_name": " 库工", + "position_url": "/companyhome/post.aspx?comp=eHV5dWppbmt1bi04ODg%3d&id=201442", + "company_name": "河北旭宇金坤药业有限公司", + "company_url": "/companyhome/company.aspx?comp=eHV5dWppbmt1bi04ODg%3d" + }, + { + "position_name": " 库房主管/库管", + "position_url": "/companyhome/post.aspx?comp=WlRIVA%3d%3d&id=221320", + "company_name": "唐山中铁亨通道岔有限公司", + "company_url": "/companyhome/company.aspx?comp=WlRIVA%3d%3d" + }, + { + "position_name": " 库管员", + "position_url": "/companyhome/post.aspx?comp=MTUzMzMyNTU4Mjk%3d&id=582029", + "company_name": "河北西博曼电气设备有限公司", + "company_url": "/companyhome/company.aspx?comp=MTUzMzMyNTU4Mjk%3d" + }, + { + "position_name": " 收发质检员", + "position_url": "/companyhome/post.aspx?comp=endsag%3d%3d&id=582913", + "company_name": "中物杭萧绿建科技股份有限公司", + "company_url": "/companyhome/company.aspx?comp=endsag%3d%3d" + } + ] + }, + { + "cid": "3751", + "cname": "计划员/调度", + "position_list": [] + }, + { + "cid": "3752", + "cname": "化验员", + "position_list": [ + { + "position_name": " 化验员", + "position_url": "/companyhome/post.aspx?comp=dG9uZ3hpbmdvbmdzaQ%3d%3d&id=584199", + "company_name": "唐山曹妃甸区通鑫再生资源回收利用有限公司", + "company_url": "/companyhome/company.aspx?comp=dG9uZ3hpbmdvbmdzaQ%3d%3d" + }, + { + "position_name": " 化验员", + "position_url": "/companyhome/post.aspx?comp=YmFpc2hhbjIwMjE%3d&id=583496", + "company_name": "河北百善医药科技有限公司", + "company_url": "/companyhome/company.aspx?comp=YmFpc2hhbjIwMjE%3d" + } + ] + }, + { + "cid": "3753", + "cname": "跟单员", + "position_list": [] + }, + { + "cid": "3754", + "cname": "生产经理/车间主任", + "position_list": [ + { + "position_name": " 生产管理(劳务派遣)", + "position_url": "/companyhome/post.aspx?comp=em1rZ3RzeQ%3d%3d&id=582003", + "company_name": "中煤科工集团唐山研究院有限公司", + "company_url": "/companyhome/company.aspx?comp=em1rZ3RzeQ%3d%3d" + } + ] + }, + { + "cid": "3755", + "cname": "工程师/副总工程师", + "position_list": [ + { + "position_name": " 技术支持", + "position_url": "/companyhome/post.aspx?comp=dHN6bmVj&id=559677", + "company_name": "唐山智能电子有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN6bmVj" + } + ] + }, + { + "cid": "3756", + "cname": "质量管理/测试经理(QA/QC经理)", + "position_list": [] + }, + { + "cid": "3757", + "cname": "物料管理/物控", + "position_list": [] + }, + { + "cid": "3758", + "cname": "设备管理工程师", + "position_list": [ + { + "position_name": " 设备工程师", + "position_url": "/companyhome/post.aspx?comp=amlhaGVuZw%3d%3d&id=584189", + "company_name": "唐山市嘉恒实业有限公司", + "company_url": "/companyhome/company.aspx?comp=amlhaGVuZw%3d%3d" + } + ] + }, + { + "cid": "3759", + "cname": "调度/生产计划协调员", + "position_list": [] + }, + { + "cid": "3760", + "cname": "工厂跟单员", + "position_list": [] + }, + { + "cid": "3761", + "cname": "采购专员", + "position_list": [ + { + "position_name": " 采购员", + "position_url": "/companyhome/post.aspx?comp=amlhaGVuZw%3d%3d&id=584175", + "company_name": "唐山市嘉恒实业有限公司", + "company_url": "/companyhome/company.aspx?comp=amlhaGVuZw%3d%3d" + } + ] + }, + { + "cid": "3762", + "cname": "质量检验员/测试员", + "position_list": [ + { + "position_name": " 质量检验员", + "position_url": "/companyhome/post.aspx?comp=dHNqeWIxMjM0NTY%3d&id=211632", + "company_name": "唐山金裕博精密机械技术有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNqeWIxMjM0NTY%3d" + }, + { + "position_name": " 质检员", + "position_url": "/companyhome/post.aspx?comp=dHNqeWIxMjM0NTY%3d&id=581329", + "company_name": "唐山金裕博精密机械技术有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNqeWIxMjM0NTY%3d" + }, + { + "position_name": " 质检员", + "position_url": "/companyhome/post.aspx?comp=dGFuZ3NoYW5uYWlzaHVu&id=170088", + "company_name": "唐山耐顺金属制品有限公司", + "company_url": "/companyhome/company.aspx?comp=dGFuZ3NoYW5uYWlzaHVu" + } + ] + }, + { + "cid": "3763", + "cname": "认证体系工程师/审核员", + "position_list": [] + }, + { + "cid": "3764", + "cname": "采购经理/主管", + "position_list": [ + { + "position_name": " 招采询价经理", + "position_url": "/companyhome/post.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d&id=585800", + "company_name": "唐山天鸿建设集团有限责任公司", + "company_url": "/companyhome/company.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d" + } + ] + }, + { + "cid": "3765", + "cname": "质量管理/测试主管(QA/QC主管)", + "position_list": [ + { + "position_name": " QA质管员", + "position_url": "/companyhome/post.aspx?comp=eHV5dWppbmt1bi04ODg%3d&id=208039", + "company_name": "河北旭宇金坤药业有限公司", + "company_url": "/companyhome/company.aspx?comp=eHV5dWppbmt1bi04ODg%3d" + } + ] + }, + { + "cid": "3766", + "cname": "质量管理/测试工程师(QA/QC工程师)", + "position_list": [ + { + "position_name": " 质检员", + "position_url": "/companyhome/post.aspx?comp=dHNseWhia2p5eGdz&id=580111", + "company_name": "唐山绿源环保科技有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNseWhia2p5eGdz" + }, + { + "position_name": " 检测技术员", + "position_url": "/companyhome/post.aspx?comp=eWluZ21laWtlamk%3d&id=583831", + "company_name": "唐山曹妃甸映美科技有限公司", + "company_url": "/companyhome/company.aspx?comp=eWluZ21laWtlamk%3d" + } + ] + }, + { + "cid": "3767", + "cname": "仓库经理/主管", + "position_list": [] + }, + { + "cid": "3768", + "cname": "生产助理", + "position_list": [ + { + "position_name": " 设备维修工", + "position_url": "/companyhome/post.aspx?comp=dGZ3eg%3d%3d&id=578566", + "company_name": "唐山市金正钢板有限公司", + "company_url": "/companyhome/company.aspx?comp=dGZ3eg%3d%3d" + } + ] + }, + { + "cid": "3769", + "cname": "安全工程师", + "position_list": [] + }, + { + "cid": "3770", + "cname": "包装工程师", + "position_list": [] + }, + { + "cid": "3771", + "cname": "产品开发/技术/工艺", + "position_list": [ + { + "position_name": " 硬件工程师", + "position_url": "/companyhome/post.aspx?comp=amhsdzEwMDI%3d&id=194255", + "company_name": "唐山市建华自动控制设备厂", + "company_url": "/companyhome/company.aspx?comp=amhsdzEwMDI%3d" + }, + { + "position_name": " 新产品开发技术人员", + "position_url": "/companyhome/post.aspx?comp=amlhaGVuZw%3d%3d&id=367444", + "company_name": "唐山市嘉恒实业有限公司", + "company_url": "/companyhome/company.aspx?comp=amlhaGVuZw%3d%3d" + }, + { + "position_name": " 技术员", + "position_url": "/companyhome/post.aspx?comp=dGNnYw%3d%3d&id=226403", + "company_name": "唐山齿轮集团有限公司", + "company_url": "/companyhome/company.aspx?comp=dGNnYw%3d%3d" + }, + { + "position_name": " 机械设计与工艺工程师", + "position_url": "/companyhome/post.aspx?comp=dHNqeWIxMjM0NTY%3d&id=584202", + "company_name": "唐山金裕博精密机械技术有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNqeWIxMjM0NTY%3d" + } + ] + }, + { + "cid": "3772", + "cname": "环境/健康/安全工程师(EHS)", + "position_list": [ + { + "position_name": " 副部长", + "position_url": "/companyhome/post.aspx?comp=endsag%3d%3d&id=583822", + "company_name": "中物杭萧绿建科技股份有限公司", + "company_url": "/companyhome/company.aspx?comp=endsag%3d%3d" + } + ] + } + ] + }, + { + "id": "3793", + "name": "机械/设备维修类", + "child": [ + { + "cid": "3794", + "cname": "铸造/锻造工程师", + "position_list": [] + }, + { + "cid": "3795", + "cname": "机械工程师", + "position_list": [ + { + "position_name": " 机械工程师(有经验)", + "position_url": "/companyhome/post.aspx?comp=dHN6bmVj&id=59395", + "company_name": "唐山智能电子有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN6bmVj" + }, + { + "position_name": " 机械工程师", + "position_url": "/companyhome/post.aspx?comp=dHNoZW5ndG9uZ2tq&id=140384", + "company_name": "河北绿之梦环保科技有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNoZW5ndG9uZ2tq" + }, + { + "position_name": " 项目经理", + "position_url": "/companyhome/post.aspx?comp=dHNseWhia2p5eGdz&id=179613", + "company_name": "唐山绿源环保科技有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNseWhia2p5eGdz" + }, + { + "position_name": " 机械设计工程师", + "position_url": "/companyhome/post.aspx?comp=dHN0ejExMQ%3d%3d&id=95152", + "company_name": "唐山市天泽专用焊接设备有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN0ejExMQ%3d%3d" + }, + { + "position_name": " 机械工程师", + "position_url": "/companyhome/post.aspx?comp=dHNqbWU%3d&id=581373", + "company_name": "唐山金山腾宇科技有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNqbWU%3d" + }, + { + "position_name": " 机械设计员", + "position_url": "/companyhome/post.aspx?comp=dGFuZ3NoYW5sb25naHVpMTIz&id=584968", + "company_name": "唐山隆汇重工科技有限公司", + "company_url": "/companyhome/company.aspx?comp=dGFuZ3NoYW5sb25naHVpMTIz" + }, + { + "position_name": " 技术人员(机械)", + "position_url": "/companyhome/post.aspx?comp=dHN6aG9uZ2Rp&id=572670", + "company_name": "唐山中地地质工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN6aG9uZ2Rp" + }, + { + "position_name": " 机械工程师", + "position_url": "/companyhome/post.aspx?comp=bmxkMTIz&id=581455", + "company_name": "诺莱顿矿山机械设备制造(唐山)有限公司", + "company_url": "/companyhome/company.aspx?comp=bmxkMTIz" + }, + { + "position_name": " 机械工程师", + "position_url": "/companyhome/post.aspx?comp=dHNoYmp4&id=585106", + "company_name": "唐山市环保机械工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNoYmp4" + }, + { + "position_name": " 机械工程师", + "position_url": "/companyhome/post.aspx?comp=bmxkMTIz&id=585082", + "company_name": "诺莱顿矿山机械设备制造(唐山)有限公司", + "company_url": "/companyhome/company.aspx?comp=bmxkMTIz" + }, + { + "position_name": " 机械工程师", + "position_url": "/companyhome/post.aspx?comp=MTUzMzMyNTU4Mjk%3d&id=584905", + "company_name": "河北西博曼电气设备有限公司", + "company_url": "/companyhome/company.aspx?comp=MTUzMzMyNTU4Mjk%3d" + } + ] + }, + { + "cid": "3796", + "cname": "注塑工程师", + "position_list": [] + }, + { + "cid": "3797", + "cname": "机械/设备维修类" + }, + { + "cid": "3798", + "cname": "塑性加工/铸造/焊接/切割", + "position_list": [ + { + "position_name": " 钳工学徒工", + "position_url": "/companyhome/post.aspx?comp=dHNkZWhvdWppeGll&id=50016", + "company_name": "唐山德厚机械制造有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNkZWhvdWppeGll" + } + ] + }, + { + "cid": "3799", + "cname": "精密机械/精密仪器/仪器仪表", + "position_list": [ + { + "position_name": " 数控铣工", + "position_url": "/companyhome/post.aspx?comp=dHNqeWIxMjM0NTY%3d&id=367425", + "company_name": "唐山金裕博精密机械技术有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNqeWIxMjM0NTY%3d" + } + ] + }, + { + "cid": "3800", + "cname": "机械设计/制造/制图", + "position_list": [ + { + "position_name": " 机械设计工程师", + "position_url": "/companyhome/post.aspx?comp=Q0NLSjE5MTk%3d&id=569016", + "company_name": "创超科技(唐山)有限公司", + "company_url": "/companyhome/company.aspx?comp=Q0NLSjE5MTk%3d" + }, + { + "position_name": " 机械设计", + "position_url": "/companyhome/post.aspx?comp=dGZ3eg%3d%3d&id=585066", + "company_name": "唐山市金正钢板有限公司", + "company_url": "/companyhome/company.aspx?comp=dGZ3eg%3d%3d" + }, + { + "position_name": " 食堂做饭大姐", + "position_url": "/companyhome/post.aspx?comp=enF6ZzY2NjY%3d&id=580452", + "company_name": "中起重工机械有限公司", + "company_url": "/companyhome/company.aspx?comp=enF6ZzY2NjY%3d" + }, + { + "position_name": " 技术", + "position_url": "/companyhome/post.aspx?comp=Z3VkZWppY2hlMTIz&id=585769", + "company_name": "唐山市固得机车车辆配件有限公司", + "company_url": "/companyhome/company.aspx?comp=Z3VkZWppY2hlMTIz" + }, + { + "position_name": " 会计主管", + "position_url": "/companyhome/post.aspx?comp=enF6ZzY2NjY%3d&id=252442", + "company_name": "中起重工机械有限公司", + "company_url": "/companyhome/company.aspx?comp=enF6ZzY2NjY%3d" + }, + { + "position_name": " 设计工程师", + "position_url": "/companyhome/post.aspx?comp=dHNsaA%3d%3d&id=581983", + "company_name": "唐山雷浩能源技术装备有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNsaA%3d%3d" + }, + { + "position_name": " 机械设计工程师", + "position_url": "/companyhome/post.aspx?comp=dHNsaw%3d%3d&id=220535", + "company_name": "唐山陆凯科技有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNsaw%3d%3d" + }, + { + "position_name": " 机械研发工程师", + "position_url": "/companyhome/post.aspx?comp=dHNsaw%3d%3d&id=220540", + "company_name": "唐山陆凯科技有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNsaw%3d%3d" + }, + { + "position_name": " 制造工艺工程师", + "position_url": "/companyhome/post.aspx?comp=dHNsaw%3d%3d&id=220550", + "company_name": "唐山陆凯科技有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNsaw%3d%3d" + }, + { + "position_name": " 机械设计技术员", + "position_url": "/companyhome/post.aspx?comp=amlhaGVuZw%3d%3d&id=76577", + "company_name": "唐山市嘉恒实业有限公司", + "company_url": "/companyhome/company.aspx?comp=amlhaGVuZw%3d%3d" + }, + { + "position_name": " 机械设计、机械自动化生产线设计", + "position_url": "/companyhome/post.aspx?comp=dHNoY2p4eno%3d&id=177702", + "company_name": "唐山市华诚机械制造有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNoY2p4eno%3d" + }, + { + "position_name": " 机械制造类专业", + "position_url": "/companyhome/post.aspx?comp=dGFuZ3NoYW5uYWlzaHVu&id=118040", + "company_name": "唐山耐顺金属制品有限公司", + "company_url": "/companyhome/company.aspx?comp=dGFuZ3NoYW5uYWlzaHVu" + }, + { + "position_name": " 机械设计", + "position_url": "/companyhome/post.aspx?comp=dHNseWhia2p5eGdz&id=149611", + "company_name": "唐山绿源环保科技有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNseWhia2p5eGdz" + }, + { + "position_name": " 机械设计师", + "position_url": "/companyhome/post.aspx?comp=aGV4aWFuZw%3d%3d&id=220508", + "company_name": "唐山贺祥智能科技股份有限公司", + "company_url": "/companyhome/company.aspx?comp=aGV4aWFuZw%3d%3d" + }, + { + "position_name": " 气动技术工程师", + "position_url": "/companyhome/post.aspx?comp=dHNoYmp4&id=580126", + "company_name": "唐山市环保机械工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNoYmp4" + }, + { + "position_name": " 机械制图员", + "position_url": "/companyhome/post.aspx?comp=RFJaREg%3d&id=29858", + "company_name": "唐山东润自动化工程股份有限公司", + "company_url": "/companyhome/company.aspx?comp=RFJaREg%3d" + }, + { + "position_name": " 技术员(机械)", + "position_url": "/companyhome/post.aspx?comp=dGFuZ2NoZWdq&id=581369", + "company_name": "唐山道和电气设备有限公司", + "company_url": "/companyhome/company.aspx?comp=dGFuZ2NoZWdq" + } + ] + }, + { + "cid": "3801", + "cname": "机电一体化工程师", + "position_list": [ + { + "position_name": " 电气自动化工程师", + "position_url": "/companyhome/post.aspx?comp=Q0NLSjE5MTk%3d&id=579487", + "company_name": "创超科技(唐山)有限公司", + "company_url": "/companyhome/company.aspx?comp=Q0NLSjE5MTk%3d" + }, + { + "position_name": " 电气设计工程师", + "position_url": "/companyhome/post.aspx?comp=dHN0ejExMQ%3d%3d&id=95154", + "company_name": "唐山市天泽专用焊接设备有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN0ejExMQ%3d%3d" + }, + { + "position_name": " 电气安装调试工程师(下井)", + "position_url": "/companyhome/post.aspx?comp=bmxkMTIz&id=582564", + "company_name": "诺莱顿矿山机械设备制造(唐山)有限公司", + "company_url": "/companyhome/company.aspx?comp=bmxkMTIz" + }, + { + "position_name": " 电气工程师", + "position_url": "/companyhome/post.aspx?comp=bmxkMTIz&id=582050", + "company_name": "诺莱顿矿山机械设备制造(唐山)有限公司", + "company_url": "/companyhome/company.aspx?comp=bmxkMTIz" + } + ] + }, + { + "cid": "3802", + "cname": "机床工程师", + "position_list": [] + }, + { + "cid": "3803", + "cname": "液压传动工程师", + "position_list": [ + { + "position_name": " 机电设备组长、副组长", + "position_url": "/companyhome/post.aspx?comp=anhocjAwMQ%3d%3d&id=584954", + "company_name": "河北津西钢铁集团股份有限公司", + "company_url": "/companyhome/company.aspx?comp=anhocjAwMQ%3d%3d" + }, + { + "position_name": " 液压工程师", + "position_url": "/companyhome/post.aspx?comp=anhocjAwMQ%3d%3d&id=584956", + "company_name": "河北津西钢铁集团股份有限公司", + "company_url": "/companyhome/company.aspx?comp=anhocjAwMQ%3d%3d" + } + ] + }, + { + "cid": "3804", + "cname": "机械自动化/工业自动化", + "position_list": [ + { + "position_name": " 机械实习生", + "position_url": "/companyhome/post.aspx?comp=dHN6bmVj&id=580138", + "company_name": "唐山智能电子有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN6bmVj" + }, + { + "position_name": " 销售", + "position_url": "/companyhome/post.aspx?comp=Q0NLSjE5MTk%3d&id=580917", + "company_name": "创超科技(唐山)有限公司", + "company_url": "/companyhome/company.aspx?comp=Q0NLSjE5MTk%3d" + }, + { + "position_name": " 售后维修人员", + "position_url": "/companyhome/post.aspx?comp=bmluZ2h1YWtlamk%3d&id=579304", + "company_name": "唐山宁华科技有限公司", + "company_url": "/companyhome/company.aspx?comp=bmluZ2h1YWtlamk%3d" + }, + { + "position_name": " 生产售后", + "position_url": "/companyhome/post.aspx?comp=aGJoeTEyMw%3d%3d&id=585065", + "company_name": "河北恒益分析仪器有限公司", + "company_url": "/companyhome/company.aspx?comp=aGJoeTEyMw%3d%3d" + }, + { + "position_name": " 机床数控技术专业", + "position_url": "/companyhome/post.aspx?comp=dGFuZ3NoYW5uYWlzaHVu&id=118034", + "company_name": "唐山耐顺金属制品有限公司", + "company_url": "/companyhome/company.aspx?comp=dGFuZ3NoYW5uYWlzaHVu" + }, + { + "position_name": " 机械工程师", + "position_url": "/companyhome/post.aspx?comp=anhocjAwMQ%3d%3d&id=584955", + "company_name": "河北津西钢铁集团股份有限公司", + "company_url": "/companyhome/company.aspx?comp=anhocjAwMQ%3d%3d" + }, + { + "position_name": " 机械设计师", + "position_url": "/companyhome/post.aspx?comp=eWluZ21laWtlamk%3d&id=583830", + "company_name": "唐山曹妃甸映美科技有限公司", + "company_url": "/companyhome/company.aspx?comp=eWluZ21laWtlamk%3d" + }, + { + "position_name": " 智能产线操作员", + "position_url": "/companyhome/post.aspx?comp=aGJranR0MTE%3d&id=582870", + "company_name": "河北扩疆铁塔制造有限公司", + "company_url": "/companyhome/company.aspx?comp=aGJranR0MTE%3d" + } + ] + }, + { + "cid": "3805", + "cname": "船舶工程师", + "position_list": [] + }, + { + "cid": "3806", + "cname": "压力容器/锅炉工程师", + "position_list": [ + { + "position_name": " 煤气发生炉操作工", + "position_url": "/companyhome/post.aspx?comp=enF6ZzY2NjY%3d&id=585143", + "company_name": "中起重工机械有限公司", + "company_url": "/companyhome/company.aspx?comp=enF6ZzY2NjY%3d" + } + ] + }, + { + "cid": "3807", + "cname": "工程/设备工程师", + "position_list": [ + { + "position_name": " 机电项目经理", + "position_url": "/companyhome/post.aspx?comp=dHNseWhia2p5eGdz&id=578490", + "company_name": "唐山绿源环保科技有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNseWhia2p5eGdz" + }, + { + "position_name": " 自动化工程师", + "position_url": "/companyhome/post.aspx?comp=emhwbDg4OA%3d%3d&id=585048", + "company_name": "中红普林医疗用品股份有限公司", + "company_url": "/companyhome/company.aspx?comp=emhwbDg4OA%3d%3d" + }, + { + "position_name": " 烧结设备工程师", + "position_url": "/companyhome/post.aspx?comp=anhocjAwMQ%3d%3d&id=579912", + "company_name": "河北津西钢铁集团股份有限公司", + "company_url": "/companyhome/company.aspx?comp=anhocjAwMQ%3d%3d" + }, + { + "position_name": " 资产评估助理", + "position_url": "/companyhome/post.aspx?comp=VFNZRDAx&id=214729", + "company_name": "唐山永大会计师事务所有限公司", + "company_url": "/companyhome/company.aspx?comp=VFNZRDAx" + } + ] + }, + { + "cid": "3808", + "cname": "金属制品", + "position_list": [] + }, + { + "cid": "3809", + "cname": "模具工程师", + "position_list": [] + }, + { + "cid": "3810", + "cname": "传感器工程师/光电", + "position_list": [] + }, + { + "cid": "3811", + "cname": "检测技术及仪器/计量测试工程师", + "position_list": [] + }, + { + "cid": "3812", + "cname": "机械设备与汽车、摩托维修工程师", + "position_list": [] + }, + { + "cid": "3813", + "cname": "焊接工程师", + "position_list": [ + { + "position_name": " 电梯维保技工", + "position_url": "/companyhome/post.aspx?comp=eXNqZHNiMTIz&id=585796", + "company_name": "唐山市永森机电设备有限公司", + "company_url": "/companyhome/company.aspx?comp=eXNqZHNiMTIz" + }, + { + "position_name": " 钢结构、管道生产技术副经理", + "position_url": "/companyhome/post.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d&id=585804", + "company_name": "唐山天鸿建设集团有限责任公司", + "company_url": "/companyhome/company.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d" + }, + { + "position_name": " 焊接工程师(IWE证书)", + "position_url": "/companyhome/post.aspx?comp=dGFuZ3NoYW5uYWlzaHVu&id=118039", + "company_name": "唐山耐顺金属制品有限公司", + "company_url": "/companyhome/company.aspx?comp=dGFuZ3NoYW5uYWlzaHVu" + } + ] + } + ] + }, + { + "id": "3870", + "name": "设计/广告类", + "child": [ + { + "cid": "3871", + "cname": "设计/广告类" + }, + { + "cid": "3872", + "cname": "广告设计/策划", + "position_list": [ + { + "position_name": " 新媒体文案策划", + "position_url": "/companyhome/post.aspx?comp=Z2pseWQxMjM%3d&id=581864", + "company_name": "唐山国际旅游岛文化旅游运营管理有限公司", + "company_url": "/companyhome/company.aspx?comp=Z2pseWQxMjM%3d" + } + ] + }, + { + "cid": "3873", + "cname": "广告制作/平面设计与制作", + "position_list": [] + }, + { + "cid": "3874", + "cname": "美术/图形设计", + "position_list": [ + { + "position_name": " 安检员月五千包食宿", + "position_url": "/companyhome/post.aspx?comp=aGJ0cQ%3d%3d&id=203394", + "company_name": "河北傲卫勤务安防工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGJ0cQ%3d%3d" + } + ] + }, + { + "cid": "3875", + "cname": "工业设计/产品设计师", + "position_list": [] + }, + { + "cid": "3876", + "cname": "服装设计", + "position_list": [] + }, + { + "cid": "3877", + "cname": "家具设计师", + "position_list": [] + }, + { + "cid": "3878", + "cname": "珠宝设计师", + "position_list": [] + }, + { + "cid": "3879", + "cname": "玩具设计师", + "position_list": [] + }, + { + "cid": "3880", + "cname": "电脑绘图员", + "position_list": [ + { + "position_name": " CAD制图", + "position_url": "/companyhome/post.aspx?comp=dGZ3eg%3d%3d&id=217807", + "company_name": "唐山市金正钢板有限公司", + "company_url": "/companyhome/company.aspx?comp=dGZ3eg%3d%3d" + } + ] + }, + { + "cid": "3881", + "cname": "产品包装设计师", + "position_list": [] + }, + { + "cid": "3882", + "cname": "形象设计师", + "position_list": [] + }, + { + "cid": "3883", + "cname": "策划总监/总经理", + "position_list": [] + }, + { + "cid": "3884", + "cname": "陈列/橱窗设计", + "position_list": [] + }, + { + "cid": "3885", + "cname": "展览设计", + "position_list": [] + }, + { + "cid": "3886", + "cname": "工业品设计师", + "position_list": [] + }, + { + "cid": "3887", + "cname": "动画/3D设计", + "position_list": [] + }, + { + "cid": "3888", + "cname": "平面设计师", + "position_list": [] + }, + { + "cid": "3889", + "cname": "排版设计员", + "position_list": [ + { + "position_name": " 排版员", + "position_url": "/companyhome/post.aspx?comp=endsag%3d%3d&id=581990", + "company_name": "中物杭萧绿建科技股份有限公司", + "company_url": "/companyhome/company.aspx?comp=endsag%3d%3d" + } + ] + }, + { + "cid": "3890", + "cname": "电话采编", + "position_list": [] + }, + { + "cid": "3891", + "cname": "广告创意总监", + "position_list": [] + }, + { + "cid": "3892", + "cname": "媒介策划/管理", + "position_list": [ + { + "position_name": " 策划运营", + "position_url": "/companyhome/post.aspx?comp=eHV5dWppbmt1bi04ODg%3d&id=213285", + "company_name": "河北旭宇金坤药业有限公司", + "company_url": "/companyhome/company.aspx?comp=eHV5dWppbmt1bi04ODg%3d" + } + ] + }, + { + "cid": "3893", + "cname": "活动策划", + "position_list": [ + { + "position_name": " 策划主管", + "position_url": "/companyhome/post.aspx?comp=Z2pseWQxMjM%3d&id=581860", + "company_name": "唐山国际旅游岛文化旅游运营管理有限公司", + "company_url": "/companyhome/company.aspx?comp=Z2pseWQxMjM%3d" + } + ] + }, + { + "cid": "3894", + "cname": "活动执行", + "position_list": [] + }, + { + "cid": "3895", + "cname": "舞美设计", + "position_list": [] + }, + { + "cid": "3896", + "cname": "后期制作/音效师", + "position_list": [] + } + ] + }, + { + "id": "3897", + "name": "行政/人事类", + "child": [ + { + "cid": "3898", + "cname": "行政/人事类" + }, + { + "cid": "3899", + "cname": "人力资源经理", + "position_list": [ + { + "position_name": " 人事经理", + "position_url": "/companyhome/post.aspx?comp=cnNjaA%3d%3d&id=584911", + "company_name": "唐山市路南日升车行", + "company_url": "/companyhome/company.aspx?comp=cnNjaA%3d%3d" + } + ] + }, + { + "cid": "3900", + "cname": "行政经理/主任/主管", + "position_list": [ + { + "position_name": " 办公室主任", + "position_url": "/companyhome/post.aspx?comp=dHN5dHpoYg%3d%3d&id=580782", + "company_name": "唐山远通实业有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN5dHpoYg%3d%3d" + }, + { + "position_name": " 综合部部长/行政主管", + "position_url": "/companyhome/post.aspx?comp=dGFuZ3NoYW5zaHVzZW4%3d&id=569013", + "company_name": "唐山市树森商贸有限公司", + "company_url": "/companyhome/company.aspx?comp=dGFuZ3NoYW5zaHVzZW4%3d" + }, + { + "position_name": " EHS 经理", + "position_url": "/companyhome/post.aspx?comp=amhv&id=585145", + "company_name": "哈斯科(唐山)冶金材料科技有限公司", + "company_url": "/companyhome/company.aspx?comp=amhv" + }, + { + "position_name": " 办公室主任", + "position_url": "/companyhome/post.aspx?comp=eHV5dWppbmt1bi04ODg%3d&id=173558", + "company_name": "河北旭宇金坤药业有限公司", + "company_url": "/companyhome/company.aspx?comp=eHV5dWppbmt1bi04ODg%3d" + } + ] + }, + { + "cid": "3901", + "cname": "招聘经理/主管", + "position_list": [ + { + "position_name": " 行政人事助理", + "position_url": "/companyhome/post.aspx?comp=c3p6YjU2Nzg5MA%3d%3d&id=583384", + "company_name": "中国人寿保险股份有限公司唐山分公司南新道营销服务部", + "company_url": "/companyhome/company.aspx?comp=c3p6YjU2Nzg5MA%3d%3d" + } + ] + }, + { + "cid": "3902", + "cname": "培训经理/主管", + "position_list": [ + { + "position_name": " 管理教师", + "position_url": "/companyhome/post.aspx?comp=eWhrZ2p0MTIzNDU%3d&id=585132", + "company_name": "河北亿和控股集团有限公司", + "company_url": "/companyhome/company.aspx?comp=eWhrZ2p0MTIzNDU%3d" + }, + { + "position_name": " 日常事务培训", + "position_url": "/companyhome/post.aspx?comp=anhocjAwMQ%3d%3d&id=584965", + "company_name": "河北津西钢铁集团股份有限公司", + "company_url": "/companyhome/company.aspx?comp=anhocjAwMQ%3d%3d" + }, + { + "position_name": " 员工培训员工培训与发展经理", + "position_url": "/companyhome/post.aspx?comp=Z2pseWQxMjM%3d&id=581856", + "company_name": "唐山国际旅游岛文化旅游运营管理有限公司", + "company_url": "/companyhome/company.aspx?comp=Z2pseWQxMjM%3d" + } + ] + }, + { + "cid": "3903", + "cname": "薪酬福利经理/主管", + "position_list": [] + }, + { + "cid": "3904", + "cname": "绩效考核经理/主管", + "position_list": [] + }, + { + "cid": "3905", + "cname": "人力资源总监", + "position_list": [] + }, + { + "cid": "3906", + "cname": "行政总监", + "position_list": [ + { + "position_name": " 综合组组长", + "position_url": "/companyhome/post.aspx?comp=anhocjAwMQ%3d%3d&id=584964", + "company_name": "河北津西钢铁集团股份有限公司", + "company_url": "/companyhome/company.aspx?comp=anhocjAwMQ%3d%3d" + } + ] + }, + { + "cid": "3907", + "cname": "人事专员", + "position_list": [ + { + "position_name": " 办公室文员", + "position_url": "/companyhome/post.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d&id=580052", + "company_name": "河北冀列铁路工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d" + } + ] + }, + { + "cid": "3908", + "cname": "行政专员/助理", + "position_list": [ + { + "position_name": " 办公室主任", + "position_url": "/companyhome/post.aspx?comp=dGFuZ3NoYW5sdXFpbmc4ODg%3d&id=585091", + "company_name": "唐山市陆清建筑工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dGFuZ3NoYW5sdXFpbmc4ODg%3d" + } + ] + }, + { + "cid": "3909", + "cname": "前台接待/总机/接待生", + "position_list": [ + { + "position_name": " 策划讲解专员", + "position_url": "/companyhome/post.aspx?comp=eHV5dWppbmt1bi04ODg%3d&id=207128", + "company_name": "河北旭宇金坤药业有限公司", + "company_url": "/companyhome/company.aspx?comp=eHV5dWppbmt1bi04ODg%3d" + }, + { + "position_name": " 前台", + "position_url": "/companyhome/post.aspx?comp=cXVhbmppbmdsdnNoaQ%3d%3d&id=580817", + "company_name": "河北全景律师事务所", + "company_url": "/companyhome/company.aspx?comp=cXVhbmppbmdsdnNoaQ%3d%3d" + } + ] + }, + { + "cid": "3910", + "cname": "高级秘书", + "position_list": [ + { + "position_name": " 文员(女士)", + "position_url": "/companyhome/post.aspx?comp=dHNqbWU%3d&id=585103", + "company_name": "唐山金山腾宇科技有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNqbWU%3d" + }, + { + "position_name": " 大客户经理", + "position_url": "/companyhome/post.aspx?comp=dHNoZW5ndG9uZ2tq&id=584934", + "company_name": "河北绿之梦环保科技有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNoZW5ndG9uZ2tq" + } + ] + }, + { + "cid": "3911", + "cname": "ISO专员", + "position_list": [] + }, + { + "cid": "3912", + "cname": "文案策划/资料编写", + "position_list": [ + { + "position_name": " 商务策划专员", + "position_url": "/companyhome/post.aspx?comp=enAyODIzMDIy&id=577560", + "company_name": "河北中磐建设工程有限公司", + "company_url": "/companyhome/company.aspx?comp=enAyODIzMDIy" + } + ] + }, + { + "cid": "3913", + "cname": "人力资源主管", + "position_list": [ + { + "position_name": " 人资科长", + "position_url": "/companyhome/post.aspx?comp=YmdndDcyMDUwODk%3d&id=585024", + "company_name": "秦皇岛佰工钢铁有限公司", + "company_url": "/companyhome/company.aspx?comp=YmdndDcyMDUwODk%3d" + }, + { + "position_name": " 人力资源主管", + "position_url": "/companyhome/post.aspx?comp=Y2hlbmZhY2FuZ2NodQ%3d%3d&id=582081", + "company_name": "唐山市辰发仓储有限公司", + "company_url": "/companyhome/company.aspx?comp=Y2hlbmZhY2FuZ2NodQ%3d%3d" + } + ] + }, + { + "cid": "3914", + "cname": "招聘专员/助理", + "position_list": [ + { + "position_name": " 招聘专员", + "position_url": "/companyhome/post.aspx?comp=YmVpc2hhbmc%3d&id=585104", + "company_name": "河北北上节能科技有限公司", + "company_url": "/companyhome/company.aspx?comp=YmVpc2hhbmc%3d" + }, + { + "position_name": " 人事专员", + "position_url": "/companyhome/post.aspx?comp=emhwbDg4OA%3d%3d&id=582903", + "company_name": "中红普林医疗用品股份有限公司", + "company_url": "/companyhome/company.aspx?comp=emhwbDg4OA%3d%3d" + } + ] + }, + { + "cid": "3915", + "cname": "猎头顾问/助理", + "position_list": [] + }, + { + "cid": "3916", + "cname": "人力资源信息系统专员", + "position_list": [] + }, + { + "cid": "3917", + "cname": "后勤人员", + "position_list": [ + { + "position_name": " 招标代理", + "position_url": "/companyhome/post.aspx?comp=dHNsZg%3d%3d&id=246780", + "company_name": "唐山联发工程管理有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNsZg%3d%3d" + }, + { + "position_name": " 保安经理/队长", + "position_url": "/companyhome/post.aspx?comp=ZnlkYzA1MTM%3d&id=585792", + "company_name": "福悦房地产开发有限公司", + "company_url": "/companyhome/company.aspx?comp=ZnlkYzA1MTM%3d" + }, + { + "position_name": " 物业保洁", + "position_url": "/companyhome/post.aspx?comp=ZnlkYzA1MTM%3d&id=563481", + "company_name": "福悦房地产开发有限公司", + "company_url": "/companyhome/company.aspx?comp=ZnlkYzA1MTM%3d" + }, + { + "position_name": " 保洁工", + "position_url": "/companyhome/post.aspx?comp=Z2NwNzkxMTAz&id=580565", + "company_name": "河北远通建设有限责任公司", + "company_url": "/companyhome/company.aspx?comp=Z2NwNzkxMTAz" + } + ] + }, + { + "cid": "3918", + "cname": "合同管理", + "position_list": [ + { + "position_name": " 司机兼助理", + "position_url": "/companyhome/post.aspx?comp=emdscTEyMzQ%3d&id=579425", + "company_name": "唐山泽广力强汽车销售服务有限公司", + "company_url": "/companyhome/company.aspx?comp=emdscTEyMzQ%3d" + } + ] + } + ] + }, + { + "id": "3919", + "name": "房地产/建筑/物业管理", + "child": [ + { + "cid": "3920", + "cname": "房地产/建筑/物业管理" + }, + { + "cid": "3921", + "cname": "结构土木/土建工程师", + "position_list": [ + { + "position_name": " 二级建造师证书使用", + "position_url": "/companyhome/post.aspx?comp=UlVJTUVJ&id=201589", + "company_name": "河北瑞美建设有限公司", + "company_url": "/companyhome/company.aspx?comp=UlVJTUVJ" + }, + { + "position_name": " 技术负责人", + "position_url": "/companyhome/post.aspx?comp=YWplbHp5MTEx&id=585820", + "company_name": "唐山安居人力资源服务有限公司", + "company_url": "/companyhome/company.aspx?comp=YWplbHp5MTEx" + }, + { + "position_name": " 应届毕业生", + "position_url": "/companyhome/post.aspx?comp=aGVuZ3l1eml4dW4%3d&id=166610", + "company_name": "唐山市恒誉工程技术咨询有限责任公司", + "company_url": "/companyhome/company.aspx?comp=aGVuZ3l1eml4dW4%3d" + }, + { + "position_name": " 检测工程师", + "position_url": "/companyhome/post.aspx?comp=aGVuZ3l1eml4dW4%3d&id=194645", + "company_name": "唐山市恒誉工程技术咨询有限责任公司", + "company_url": "/companyhome/company.aspx?comp=aGVuZ3l1eml4dW4%3d" + }, + { + "position_name": " 钢结构、网架设计", + "position_url": "/companyhome/post.aspx?comp=aGVuZ3l1eml4dW4%3d&id=200474", + "company_name": "唐山市恒誉工程技术咨询有限责任公司", + "company_url": "/companyhome/company.aspx?comp=aGVuZ3l1eml4dW4%3d" + }, + { + "position_name": " 技术员", + "position_url": "/companyhome/post.aspx?comp=YWplbHp5MTEx&id=585818", + "company_name": "唐山安居人力资源服务有限公司", + "company_url": "/companyhome/company.aspx?comp=YWplbHp5MTEx" + }, + { + "position_name": " 质量员", + "position_url": "/companyhome/post.aspx?comp=YWplbHp5MTEx&id=585817", + "company_name": "唐山安居人力资源服务有限公司", + "company_url": "/companyhome/company.aspx?comp=YWplbHp5MTEx" + }, + { + "position_name": " 材料员 (库管)", + "position_url": "/companyhome/post.aspx?comp=YWplbHp5MTEx&id=585813", + "company_name": "唐山安居人力资源服务有限公司", + "company_url": "/companyhome/company.aspx?comp=YWplbHp5MTEx" + }, + { + "position_name": " 结构工程师", + "position_url": "/companyhome/post.aspx?comp=aGVuZ3l1eml4dW4%3d&id=162067", + "company_name": "唐山市恒誉工程技术咨询有限责任公司", + "company_url": "/companyhome/company.aspx?comp=aGVuZ3l1eml4dW4%3d" + }, + { + "position_name": " 建筑方案设计", + "position_url": "/companyhome/post.aspx?comp=aGViZWlxaWFv&id=584223", + "company_name": "河北淇奥工程设计有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlxaWFv" + }, + { + "position_name": " 项目技术负责人", + "position_url": "/companyhome/post.aspx?comp=dHN6aG9uZ2Rp&id=569063", + "company_name": "唐山中地地质工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN6aG9uZ2Rp" + }, + { + "position_name": " 项目技术负责人(机电安装)", + "position_url": "/companyhome/post.aspx?comp=dHN6aG9uZ2Rp&id=569062", + "company_name": "唐山中地地质工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN6aG9uZ2Rp" + }, + { + "position_name": " 公路工程项目技术负责人", + "position_url": "/companyhome/post.aspx?comp=dHN6aG9uZ2Rp&id=569064", + "company_name": "唐山中地地质工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN6aG9uZ2Rp" + }, + { + "position_name": " 市政项目技术负责人", + "position_url": "/companyhome/post.aspx?comp=dHN6aG9uZ2Rp&id=569066", + "company_name": "唐山中地地质工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN6aG9uZ2Rp" + }, + { + "position_name": " 公路工程技术人员", + "position_url": "/companyhome/post.aspx?comp=dHN6aG9uZ2Rp&id=569067", + "company_name": "唐山中地地质工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN6aG9uZ2Rp" + }, + { + "position_name": " 水工环地质工程师", + "position_url": "/companyhome/post.aspx?comp=dHN6aG9uZ2Rp&id=569069", + "company_name": "唐山中地地质工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN6aG9uZ2Rp" + }, + { + "position_name": " 检测技术人员(建工相关专业)", + "position_url": "/companyhome/post.aspx?comp=dHN6aG9uZ2Rp&id=569070", + "company_name": "唐山中地地质工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN6aG9uZ2Rp" + }, + { + "position_name": " 检测技术人员", + "position_url": "/companyhome/post.aspx?comp=dHN6aG9uZ2Rp&id=569071", + "company_name": "唐山中地地质工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN6aG9uZ2Rp" + }, + { + "position_name": " 市政技术人员", + "position_url": "/companyhome/post.aspx?comp=dHN6aG9uZ2Rp&id=569072", + "company_name": "唐山中地地质工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN6aG9uZ2Rp" + }, + { + "position_name": " 技术人员(隧道、地下工程)", + "position_url": "/companyhome/post.aspx?comp=dHN6aG9uZ2Rp&id=572672", + "company_name": "唐山中地地质工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN6aG9uZ2Rp" + }, + { + "position_name": " 结构设计师", + "position_url": "/companyhome/post.aspx?comp=aGViZWlxaWFv&id=584215", + "company_name": "河北淇奥工程设计有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlxaWFv" + }, + { + "position_name": " 生产经理", + "position_url": "/companyhome/post.aspx?comp=UlVJTUVJ&id=199542", + "company_name": "河北瑞美建设有限公司", + "company_url": "/companyhome/company.aspx?comp=UlVJTUVJ" + }, + { + "position_name": " 现场工程师", + "position_url": "/companyhome/post.aspx?comp=dHN4ZGpz&id=213600", + "company_name": "河北鑫鼎建设工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN4ZGpz" + } + ] + }, + { + "cid": "3922", + "cname": "水电管理", + "position_list": [ + { + "position_name": " 电气工程师", + "position_url": "/companyhome/post.aspx?comp=YWplbHp5MTEx&id=585816", + "company_name": "唐山安居人力资源服务有限公司", + "company_url": "/companyhome/company.aspx?comp=YWplbHp5MTEx" + }, + { + "position_name": " 电气工程师", + "position_url": "/companyhome/post.aspx?comp=YWplbHp5MTEx&id=585811", + "company_name": "唐山安居人力资源服务有限公司", + "company_url": "/companyhome/company.aspx?comp=YWplbHp5MTEx" + }, + { + "position_name": " 水电质检员", + "position_url": "/companyhome/post.aspx?comp=cHRqejg4OA%3d%3d&id=359846", + "company_name": "唐山鹏通建筑工程有限责任公司", + "company_url": "/companyhome/company.aspx?comp=cHRqejg4OA%3d%3d" + }, + { + "position_name": " 维修电工", + "position_url": "/companyhome/post.aspx?comp=Z2NwNzkxMTAz&id=584197", + "company_name": "河北远通建设有限责任公司", + "company_url": "/companyhome/company.aspx?comp=Z2NwNzkxMTAz" + }, + { + "position_name": " 电气工程师", + "position_url": "/companyhome/post.aspx?comp=aGViZWlxaWFv&id=584225", + "company_name": "河北淇奥工程设计有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlxaWFv" + }, + { + "position_name": " 电力工程师", + "position_url": "/companyhome/post.aspx?comp=c2hlamk%3d&id=556275", + "company_name": "河北昊宇建筑设计有限公司", + "company_url": "/companyhome/company.aspx?comp=c2hlamk%3d" + } + ] + }, + { + "cid": "3923", + "cname": "工程预决算/造价师", + "position_list": [ + { + "position_name": " 工程造价人员", + "position_url": "/companyhome/post.aspx?comp=dHNsZg%3d%3d&id=159450", + "company_name": "唐山联发工程管理有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNsZg%3d%3d" + }, + { + "position_name": " 工程预结算、造价师", + "position_url": "/companyhome/post.aspx?comp=dHN5dHpoYg%3d%3d&id=585085", + "company_name": "唐山远通实业有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN5dHpoYg%3d%3d" + }, + { + "position_name": " 预算员", + "position_url": "/companyhome/post.aspx?comp=YWplbHp5MTEx&id=585810", + "company_name": "唐山安居人力资源服务有限公司", + "company_url": "/companyhome/company.aspx?comp=YWplbHp5MTEx" + }, + { + "position_name": " 安装预算员", + "position_url": "/companyhome/post.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d&id=583457", + "company_name": "唐山天鸿建设集团有限责任公司", + "company_url": "/companyhome/company.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d" + }, + { + "position_name": " 成本预算员", + "position_url": "/companyhome/post.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d&id=585801", + "company_name": "唐山天鸿建设集团有限责任公司", + "company_url": "/companyhome/company.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d" + }, + { + "position_name": " 预算员", + "position_url": "/companyhome/post.aspx?comp=dGlhbmppbnNoZW5neXVhbjAwMQ%3d%3d&id=585803", + "company_name": "天津晟原建筑工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dGlhbmppbnNoZW5neXVhbjAwMQ%3d%3d" + }, + { + "position_name": " 土建/市政预算员", + "position_url": "/companyhome/post.aspx?comp=dHN4ZGpz&id=213607", + "company_name": "河北鑫鼎建设工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN4ZGpz" + }, + { + "position_name": " 工程预决算/造价师", + "position_url": "/companyhome/post.aspx?comp=enAyODIzMDIy&id=191421", + "company_name": "河北中磐建设工程有限公司", + "company_url": "/companyhome/company.aspx?comp=enAyODIzMDIy" + }, + { + "position_name": " 驻场安装造价员/安装预算员", + "position_url": "/companyhome/post.aspx?comp=MTM5MzA1ODgxNzU%3d&id=562228", + "company_name": "北京维尔京工程造价咨询有限公司", + "company_url": "/companyhome/company.aspx?comp=MTM5MzA1ODgxNzU%3d" + }, + { + "position_name": " 驻场土建造价员/预算员", + "position_url": "/companyhome/post.aspx?comp=MTM5MzA1ODgxNzU%3d&id=562229", + "company_name": "北京维尔京工程造价咨询有限公司", + "company_url": "/companyhome/company.aspx?comp=MTM5MzA1ODgxNzU%3d" + }, + { + "position_name": " 土建造价员/土建预算员", + "position_url": "/companyhome/post.aspx?comp=MTM5MzA1ODgxNzU%3d&id=181014", + "company_name": "北京维尔京工程造价咨询有限公司", + "company_url": "/companyhome/company.aspx?comp=MTM5MzA1ODgxNzU%3d" + }, + { + "position_name": " 安装造价员/安装预算员", + "position_url": "/companyhome/post.aspx?comp=MTM5MzA1ODgxNzU%3d&id=212998", + "company_name": "北京维尔京工程造价咨询有限公司", + "company_url": "/companyhome/company.aspx?comp=MTM5MzA1ODgxNzU%3d" + }, + { + "position_name": " 安装预算员", + "position_url": "/companyhome/post.aspx?comp=aHVhaGVuZzEyMw%3d%3d&id=585050", + "company_name": "河北华恒工程项目管理咨询有限公司", + "company_url": "/companyhome/company.aspx?comp=aHVhaGVuZzEyMw%3d%3d" + }, + { + "position_name": " 土建预算员", + "position_url": "/companyhome/post.aspx?comp=dHNqczIwMTg%3d&id=190622", + "company_name": "唐山建烁工程项目管理有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNqczIwMTg%3d" + }, + { + "position_name": " 安装预算员", + "position_url": "/companyhome/post.aspx?comp=dHNqczIwMTg%3d&id=190623", + "company_name": "唐山建烁工程项目管理有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNqczIwMTg%3d" + }, + { + "position_name": " 招投标专员", + "position_url": "/companyhome/post.aspx?comp=dHNqczIwMTg%3d&id=190624", + "company_name": "唐山建烁工程项目管理有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNqczIwMTg%3d" + }, + { + "position_name": " 工程造价师、造价、评估助理", + "position_url": "/companyhome/post.aspx?comp=VFNZRDAx&id=246725", + "company_name": "唐山永大会计师事务所有限公司", + "company_url": "/companyhome/company.aspx?comp=VFNZRDAx" + }, + { + "position_name": " 造价工程师", + "position_url": "/companyhome/post.aspx?comp=VFNZRDAx&id=214728", + "company_name": "唐山永大会计师事务所有限公司", + "company_url": "/companyhome/company.aspx?comp=VFNZRDAx" + }, + { + "position_name": " 预算员", + "position_url": "/companyhome/post.aspx?comp=c2hlamk%3d&id=196093", + "company_name": "河北昊宇建筑设计有限公司", + "company_url": "/companyhome/company.aspx?comp=c2hlamk%3d" + }, + { + "position_name": " 安装预算员", + "position_url": "/companyhome/post.aspx?comp=c2hlamk%3d&id=559711", + "company_name": "河北昊宇建筑设计有限公司", + "company_url": "/companyhome/company.aspx?comp=c2hlamk%3d" + }, + { + "position_name": " 工程造价人员", + "position_url": "/companyhome/post.aspx?comp=dHNsZg%3d%3d&id=159450", + "company_name": "唐山联发工程管理有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNsZg%3d%3d" + }, + { + "position_name": " 工程预结算、造价师", + "position_url": "/companyhome/post.aspx?comp=dHN5dHpoYg%3d%3d&id=585085", + "company_name": "唐山远通实业有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN5dHpoYg%3d%3d" + }, + { + "position_name": " 预算员", + "position_url": "/companyhome/post.aspx?comp=YWplbHp5MTEx&id=585810", + "company_name": "唐山安居人力资源服务有限公司", + "company_url": "/companyhome/company.aspx?comp=YWplbHp5MTEx" + }, + { + "position_name": " 安装预算员", + "position_url": "/companyhome/post.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d&id=583457", + "company_name": "唐山天鸿建设集团有限责任公司", + "company_url": "/companyhome/company.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d" + }, + { + "position_name": " 成本预算员", + "position_url": "/companyhome/post.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d&id=585801", + "company_name": "唐山天鸿建设集团有限责任公司", + "company_url": "/companyhome/company.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d" + }, + { + "position_name": " 预算员", + "position_url": "/companyhome/post.aspx?comp=dGlhbmppbnNoZW5neXVhbjAwMQ%3d%3d&id=585803", + "company_name": "天津晟原建筑工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dGlhbmppbnNoZW5neXVhbjAwMQ%3d%3d" + }, + { + "position_name": " 土建/市政预算员", + "position_url": "/companyhome/post.aspx?comp=dHN4ZGpz&id=213607", + "company_name": "河北鑫鼎建设工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN4ZGpz" + }, + { + "position_name": " 工程预决算/造价师", + "position_url": "/companyhome/post.aspx?comp=enAyODIzMDIy&id=191421", + "company_name": "河北中磐建设工程有限公司", + "company_url": "/companyhome/company.aspx?comp=enAyODIzMDIy" + }, + { + "position_name": " 驻场安装造价员/安装预算员", + "position_url": "/companyhome/post.aspx?comp=MTM5MzA1ODgxNzU%3d&id=562228", + "company_name": "北京维尔京工程造价咨询有限公司", + "company_url": "/companyhome/company.aspx?comp=MTM5MzA1ODgxNzU%3d" + }, + { + "position_name": " 驻场土建造价员/预算员", + "position_url": "/companyhome/post.aspx?comp=MTM5MzA1ODgxNzU%3d&id=562229", + "company_name": "北京维尔京工程造价咨询有限公司", + "company_url": "/companyhome/company.aspx?comp=MTM5MzA1ODgxNzU%3d" + }, + { + "position_name": " 土建造价员/土建预算员", + "position_url": "/companyhome/post.aspx?comp=MTM5MzA1ODgxNzU%3d&id=181014", + "company_name": "北京维尔京工程造价咨询有限公司", + "company_url": "/companyhome/company.aspx?comp=MTM5MzA1ODgxNzU%3d" + }, + { + "position_name": " 安装造价员/安装预算员", + "position_url": "/companyhome/post.aspx?comp=MTM5MzA1ODgxNzU%3d&id=212998", + "company_name": "北京维尔京工程造价咨询有限公司", + "company_url": "/companyhome/company.aspx?comp=MTM5MzA1ODgxNzU%3d" + }, + { + "position_name": " 安装预算员", + "position_url": "/companyhome/post.aspx?comp=aHVhaGVuZzEyMw%3d%3d&id=585050", + "company_name": "河北华恒工程项目管理咨询有限公司", + "company_url": "/companyhome/company.aspx?comp=aHVhaGVuZzEyMw%3d%3d" + }, + { + "position_name": " 土建预算员", + "position_url": "/companyhome/post.aspx?comp=dHNqczIwMTg%3d&id=190622", + "company_name": "唐山建烁工程项目管理有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNqczIwMTg%3d" + }, + { + "position_name": " 安装预算员", + "position_url": "/companyhome/post.aspx?comp=dHNqczIwMTg%3d&id=190623", + "company_name": "唐山建烁工程项目管理有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNqczIwMTg%3d" + }, + { + "position_name": " 招投标专员", + "position_url": "/companyhome/post.aspx?comp=dHNqczIwMTg%3d&id=190624", + "company_name": "唐山建烁工程项目管理有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNqczIwMTg%3d" + }, + { + "position_name": " 工程造价师、造价、评估助理", + "position_url": "/companyhome/post.aspx?comp=VFNZRDAx&id=246725", + "company_name": "唐山永大会计师事务所有限公司", + "company_url": "/companyhome/company.aspx?comp=VFNZRDAx" + }, + { + "position_name": " 造价工程师", + "position_url": "/companyhome/post.aspx?comp=VFNZRDAx&id=214728", + "company_name": "唐山永大会计师事务所有限公司", + "company_url": "/companyhome/company.aspx?comp=VFNZRDAx" + }, + { + "position_name": " 预算员", + "position_url": "/companyhome/post.aspx?comp=c2hlamk%3d&id=196093", + "company_name": "河北昊宇建筑设计有限公司", + "company_url": "/companyhome/company.aspx?comp=c2hlamk%3d" + }, + { + "position_name": " 安装预算员", + "position_url": "/companyhome/post.aspx?comp=c2hlamk%3d&id=559711", + "company_name": "河北昊宇建筑设计有限公司", + "company_url": "/companyhome/company.aspx?comp=c2hlamk%3d" + } + ] + }, + { + "cid": "3924", + "cname": "房地产开发/策划经理/主管", + "position_list": [ + { + "position_name": " 营销策划经理", + "position_url": "/companyhome/post.aspx?comp=bGJjdDIwMTQ%3d&id=585068", + "company_name": "唐山市路北区城市建设投资集团有限公司", + "company_url": "/companyhome/company.aspx?comp=bGJjdDIwMTQ%3d" + } + ] + }, + { + "cid": "3925", + "cname": "给排水工程师", + "position_list": [ + { + "position_name": " 水暖工程师", + "position_url": "/companyhome/post.aspx?comp=YWplbHp5MTEx&id=585809", + "company_name": "唐山安居人力资源服务有限公司", + "company_url": "/companyhome/company.aspx?comp=YWplbHp5MTEx" + }, + { + "position_name": " 技术人员(暖通、空调、给排水)", + "position_url": "/companyhome/post.aspx?comp=dHN6aG9uZ2Rp&id=580724", + "company_name": "唐山中地地质工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN6aG9uZ2Rp" + }, + { + "position_name": " 给排水设计师", + "position_url": "/companyhome/post.aspx?comp=dHN0Y3NqeQ%3d%3d&id=569161", + "company_name": "唐山陶瓷集团设计研究有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN0Y3NqeQ%3d%3d" + } + ] + }, + { + "cid": "3926", + "cname": "暖通工程师", + "position_list": [ + { + "position_name": " 暖通专业设计人员", + "position_url": "/companyhome/post.aspx?comp=aGViZWlxaWFv&id=584218", + "company_name": "河北淇奥工程设计有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlxaWFv" + }, + { + "position_name": " 建筑暖通设计师", + "position_url": "/companyhome/post.aspx?comp=c2hlamk%3d&id=186621", + "company_name": "河北昊宇建筑设计有限公司", + "company_url": "/companyhome/company.aspx?comp=c2hlamk%3d" + }, + { + "position_name": " 暖通专业设计师", + "position_url": "/companyhome/post.aspx?comp=dHN0Y3NqeQ%3d%3d&id=187210", + "company_name": "唐山陶瓷集团设计研究有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN0Y3NqeQ%3d%3d" + } + ] + }, + { + "cid": "3927", + "cname": "物业管理经理/主管", + "position_list": [ + { + "position_name": " 电梯维保人员", + "position_url": "/companyhome/post.aspx?comp=eXNqZHNiMTIz&id=585797", + "company_name": "唐山市永森机电设备有限公司", + "company_url": "/companyhome/company.aspx?comp=eXNqZHNiMTIz" + }, + { + "position_name": " 客服主管", + "position_url": "/companyhome/post.aspx?comp=Z3VvemlyZW5saQ%3d%3d&id=584927", + "company_name": "唐山国资人力资源服务有限责任公司", + "company_url": "/companyhome/company.aspx?comp=Z3VvemlyZW5saQ%3d%3d" + }, + { + "position_name": " 工程主管", + "position_url": "/companyhome/post.aspx?comp=Z3VvemlyZW5saQ%3d%3d&id=584929", + "company_name": "唐山国资人力资源服务有限责任公司", + "company_url": "/companyhome/company.aspx?comp=Z3VvemlyZW5saQ%3d%3d" + }, + { + "position_name": " 综合主管", + "position_url": "/companyhome/post.aspx?comp=Z3VvemlyZW5saQ%3d%3d&id=584930", + "company_name": "唐山国资人力资源服务有限责任公司", + "company_url": "/companyhome/company.aspx?comp=Z3VvemlyZW5saQ%3d%3d" + }, + { + "position_name": " 物业办公室主任", + "position_url": "/companyhome/post.aspx?comp=YnluY3AxMTE%3d&id=582915", + "company_name": "唐山北原农产品市场开发有限责任公司", + "company_url": "/companyhome/company.aspx?comp=YnluY3AxMTE%3d" + } + ] + }, + { + "cid": "3928", + "cname": "路桥工程师", + "position_list": [ + { + "position_name": " 部门", + "position_url": "/companyhome/post.aspx?comp=dHNqczIwMTg%3d&id=585060", + "company_name": "唐山建烁工程项目管理有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNqczIwMTg%3d" + }, + { + "position_name": " 路桥设计", + "position_url": "/companyhome/post.aspx?comp=c2hlamk%3d&id=159133", + "company_name": "河北昊宇建筑设计有限公司", + "company_url": "/companyhome/company.aspx?comp=c2hlamk%3d" + } + ] + }, + { + "cid": "3929", + "cname": "房地产中介/交易", + "position_list": [] + }, + { + "cid": "3930", + "cname": "室内外装潢设计", + "position_list": [] + }, + { + "cid": "3931", + "cname": "绘图/建筑制图员", + "position_list": [ + { + "position_name": " 建筑设计工程师", + "position_url": "/companyhome/post.aspx?comp=SldTSjEyMw%3d%3d&id=177451", + "company_name": "唐山吉屋建筑设计咨询有限公司", + "company_url": "/companyhome/company.aspx?comp=SldTSjEyMw%3d%3d" + }, + { + "position_name": " 建筑设计", + "position_url": "/companyhome/post.aspx?comp=SldTSjEyMw%3d%3d&id=178460", + "company_name": "唐山吉屋建筑设计咨询有限公司", + "company_url": "/companyhome/company.aspx?comp=SldTSjEyMw%3d%3d" + }, + { + "position_name": " 建筑设计师", + "position_url": "/companyhome/post.aspx?comp=aGViZWlxaWFv&id=584214", + "company_name": "河北淇奥工程设计有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlxaWFv" + }, + { + "position_name": " 结构设计师", + "position_url": "/companyhome/post.aspx?comp=c2hlamk%3d&id=183478", + "company_name": "河北昊宇建筑设计有限公司", + "company_url": "/companyhome/company.aspx?comp=c2hlamk%3d" + }, + { + "position_name": " 建筑设计", + "position_url": "/companyhome/post.aspx?comp=c2hlamk%3d&id=177939", + "company_name": "河北昊宇建筑设计有限公司", + "company_url": "/companyhome/company.aspx?comp=c2hlamk%3d" + }, + { + "position_name": " 建筑方案设计师", + "position_url": "/companyhome/post.aspx?comp=c2hlamk%3d&id=202119", + "company_name": "河北昊宇建筑设计有限公司", + "company_url": "/companyhome/company.aspx?comp=c2hlamk%3d" + } + ] + }, + { + "cid": "3932", + "cname": "工程监理", + "position_list": [ + { + "position_name": " 电气监理工程师", + "position_url": "/companyhome/post.aspx?comp=dHNsZg%3d%3d&id=204072", + "company_name": "唐山联发工程管理有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNsZg%3d%3d" + }, + { + "position_name": " 机电监理工程师", + "position_url": "/companyhome/post.aspx?comp=dHNsZg%3d%3d&id=581243", + "company_name": "唐山联发工程管理有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNsZg%3d%3d" + }, + { + "position_name": " 土建监理工程师", + "position_url": "/companyhome/post.aspx?comp=dHNsZg%3d%3d&id=154952", + "company_name": "唐山联发工程管理有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNsZg%3d%3d" + }, + { + "position_name": " 给排水监理工程师", + "position_url": "/companyhome/post.aspx?comp=dHNsZg%3d%3d&id=154951", + "company_name": "唐山联发工程管理有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNsZg%3d%3d" + }, + { + "position_name": " 工程助理", + "position_url": "/companyhome/post.aspx?comp=emp0YzEyMw%3d%3d&id=181898", + "company_name": "唐山市中建天诚建筑装饰工程有限公司", + "company_url": "/companyhome/company.aspx?comp=emp0YzEyMw%3d%3d" + }, + { + "position_name": " 技术人员(道路与桥梁)", + "position_url": "/companyhome/post.aspx?comp=dHN6aG9uZ2Rp&id=569060", + "company_name": "唐山中地地质工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN6aG9uZ2Rp" + }, + { + "position_name": " 总监理工程师", + "position_url": "/companyhome/post.aspx?comp=d2xwMTk5OA%3d%3d&id=252436", + "company_name": "唐山绿景房地产开发有限公司", + "company_url": "/companyhome/company.aspx?comp=d2xwMTk5OA%3d%3d" + } + ] + }, + { + "cid": "3933", + "cname": "物业顾问", + "position_list": [] + }, + { + "cid": "3934", + "cname": "管道", + "position_list": [ + { + "position_name": " 压力管道工程师", + "position_url": "/companyhome/post.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d&id=201296", + "company_name": "唐山天鸿建设集团有限责任公司", + "company_url": "/companyhome/company.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d" + } + ] + }, + { + "cid": "3935", + "cname": "建筑施工管理", + "position_list": [ + { + "position_name": " 建筑证书考试人员", + "position_url": "/companyhome/post.aspx?comp=emp0YzEyMw%3d%3d&id=581013", + "company_name": "唐山市中建天诚建筑装饰工程有限公司", + "company_url": "/companyhome/company.aspx?comp=emp0YzEyMw%3d%3d" + }, + { + "position_name": " 一级市政建造师+高职+B", + "position_url": "/companyhome/post.aspx?comp=enAyODIzMDIy&id=581088", + "company_name": "河北中磐建设工程有限公司", + "company_url": "/companyhome/company.aspx?comp=enAyODIzMDIy" + }, + { + "position_name": " 生产经理", + "position_url": "/companyhome/post.aspx?comp=cHRqejg4OA%3d%3d&id=203230", + "company_name": "唐山鹏通建筑工程有限责任公司", + "company_url": "/companyhome/company.aspx?comp=cHRqejg4OA%3d%3d" + }, + { + "position_name": " 安全员", + "position_url": "/companyhome/post.aspx?comp=cHRqejg4OA%3d%3d&id=203233", + "company_name": "唐山鹏通建筑工程有限责任公司", + "company_url": "/companyhome/company.aspx?comp=cHRqejg4OA%3d%3d" + }, + { + "position_name": " 项目经理", + "position_url": "/companyhome/post.aspx?comp=cHRqejg4OA%3d%3d&id=208393", + "company_name": "唐山鹏通建筑工程有限责任公司", + "company_url": "/companyhome/company.aspx?comp=cHRqejg4OA%3d%3d" + }, + { + "position_name": " 安全文明施工负责人", + "position_url": "/companyhome/post.aspx?comp=cHRqejg4OA%3d%3d&id=213328", + "company_name": "唐山鹏通建筑工程有限责任公司", + "company_url": "/companyhome/company.aspx?comp=cHRqejg4OA%3d%3d" + }, + { + "position_name": " 市政道路工程技术负责人", + "position_url": "/companyhome/post.aspx?comp=cHRqejg4OA%3d%3d&id=579906", + "company_name": "唐山鹏通建筑工程有限责任公司", + "company_url": "/companyhome/company.aspx?comp=cHRqejg4OA%3d%3d" + }, + { + "position_name": " 工程部经理", + "position_url": "/companyhome/post.aspx?comp=cHRqejg4OA%3d%3d&id=580503", + "company_name": "唐山鹏通建筑工程有限责任公司", + "company_url": "/companyhome/company.aspx?comp=cHRqejg4OA%3d%3d" + }, + { + "position_name": " 市政工程项目经理", + "position_url": "/companyhome/post.aspx?comp=Z2NwNzkxMTAz&id=219836", + "company_name": "河北远通建设有限责任公司", + "company_url": "/companyhome/company.aspx?comp=Z2NwNzkxMTAz" + }, + { + "position_name": " 资料员", + "position_url": "/companyhome/post.aspx?comp=Z2NwNzkxMTAz&id=220011", + "company_name": "河北远通建设有限责任公司", + "company_url": "/companyhome/company.aspx?comp=Z2NwNzkxMTAz" + }, + { + "position_name": " 水利工程项目经理", + "position_url": "/companyhome/post.aspx?comp=Z2NwNzkxMTAz&id=581376", + "company_name": "河北远通建设有限责任公司", + "company_url": "/companyhome/company.aspx?comp=Z2NwNzkxMTAz" + }, + { + "position_name": " 建筑项目经理", + "position_url": "/companyhome/post.aspx?comp=Z2NwNzkxMTAz&id=581998", + "company_name": "河北远通建设有限责任公司", + "company_url": "/companyhome/company.aspx?comp=Z2NwNzkxMTAz" + }, + { + "position_name": " 技术负责人", + "position_url": "/companyhome/post.aspx?comp=dGFuZ3NoYW5sdXFpbmc4ODg%3d&id=585098", + "company_name": "唐山市陆清建筑工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dGFuZ3NoYW5sdXFpbmc4ODg%3d" + }, + { + "position_name": " 项目经理", + "position_url": "/companyhome/post.aspx?comp=dGFuZ3NoYW5sdXFpbmc4ODg%3d&id=585097", + "company_name": "唐山市陆清建筑工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dGFuZ3NoYW5sdXFpbmc4ODg%3d" + }, + { + "position_name": " 装修项目经理", + "position_url": "/companyhome/post.aspx?comp=dHN4ZGpz&id=581978", + "company_name": "河北鑫鼎建设工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN4ZGpz" + }, + { + "position_name": " 副总经理", + "position_url": "/companyhome/post.aspx?comp=dGFuZ3NoYW5sdXFpbmc4ODg%3d&id=585089", + "company_name": "唐山市陆清建筑工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dGFuZ3NoYW5sdXFpbmc4ODg%3d" + }, + { + "position_name": " 管培生", + "position_url": "/companyhome/post.aspx?comp=enAyODIzMDIy&id=581056", + "company_name": "河北中磐建设工程有限公司", + "company_url": "/companyhome/company.aspx?comp=enAyODIzMDIy" + }, + { + "position_name": " 市政管道工程师", + "position_url": "/companyhome/post.aspx?comp=dHN4ZGpz&id=584989", + "company_name": "河北鑫鼎建设工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN4ZGpz" + }, + { + "position_name": " 市政技术负责人", + "position_url": "/companyhome/post.aspx?comp=enAyODIzMDIy&id=559679", + "company_name": "河北中磐建设工程有限公司", + "company_url": "/companyhome/company.aspx?comp=enAyODIzMDIy" + }, + { + "position_name": " 实习生", + "position_url": "/companyhome/post.aspx?comp=enAyODIzMDIy&id=205929", + "company_name": "河北中磐建设工程有限公司", + "company_url": "/companyhome/company.aspx?comp=enAyODIzMDIy" + }, + { + "position_name": " 安全员", + "position_url": "/companyhome/post.aspx?comp=UlVJTUVJ&id=218635", + "company_name": "河北瑞美建设有限公司", + "company_url": "/companyhome/company.aspx?comp=UlVJTUVJ" + }, + { + "position_name": " 施工员", + "position_url": "/companyhome/post.aspx?comp=UlVJTUVJ&id=203021", + "company_name": "河北瑞美建设有限公司", + "company_url": "/companyhome/company.aspx?comp=UlVJTUVJ" + }, + { + "position_name": " 总工程师", + "position_url": "/companyhome/post.aspx?comp=UlVJTUVJ&id=199543", + "company_name": "河北瑞美建设有限公司", + "company_url": "/companyhome/company.aspx?comp=UlVJTUVJ" + }, + { + "position_name": " 项目经理", + "position_url": "/companyhome/post.aspx?comp=UlVJTUVJ&id=199541", + "company_name": "河北瑞美建设有限公司", + "company_url": "/companyhome/company.aspx?comp=UlVJTUVJ" + }, + { + "position_name": " 栋号长(有证书优先)", + "position_url": "/companyhome/post.aspx?comp=c2hlamk%3d&id=201261", + "company_name": "河北昊宇建筑设计有限公司", + "company_url": "/companyhome/company.aspx?comp=c2hlamk%3d" + }, + { + "position_name": " 筑炉助理工程师", + "position_url": "/companyhome/post.aspx?comp=dHNkc2p6Z2M%3d&id=580675", + "company_name": "唐山盾石建筑工程有限责任公司", + "company_url": "/companyhome/company.aspx?comp=dHNkc2p6Z2M%3d" + } + ] + }, + { + "cid": "3936", + "cname": "基础地下工程/岩土工程", + "position_list": [ + { + "position_name": " 检测工程师", + "position_url": "/companyhome/post.aspx?comp=dHN6aG9uZ2Rp&id=584907", + "company_name": "唐山中地地质工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN6aG9uZ2Rp" + } + ] + }, + { + "cid": "3937", + "cname": "港口与航道工程", + "position_list": [] + }, + { + "cid": "3938", + "cname": "城镇规划/土地规划", + "position_list": [] + }, + { + "cid": "3939", + "cname": "物业管理专员/助理", + "position_list": [ + { + "position_name": " 物业管家", + "position_url": "/companyhome/post.aspx?comp=ZnlkYzA1MTM%3d&id=571248", + "company_name": "福悦房地产开发有限公司", + "company_url": "/companyhome/company.aspx?comp=ZnlkYzA1MTM%3d" + }, + { + "position_name": " 物业副经理", + "position_url": "/companyhome/post.aspx?comp=d2xwMTk5OA%3d%3d&id=581962", + "company_name": "唐山绿景房地产开发有限公司", + "company_url": "/companyhome/company.aspx?comp=d2xwMTk5OA%3d%3d" + }, + { + "position_name": " 物业主管", + "position_url": "/companyhome/post.aspx?comp=Z3VvemlyZW5saQ%3d%3d&id=579470", + "company_name": "唐山国资人力资源服务有限责任公司", + "company_url": "/companyhome/company.aspx?comp=Z3VvemlyZW5saQ%3d%3d" + } + ] + }, + { + "cid": "3940", + "cname": "物业维修人员", + "position_list": [ + { + "position_name": " 综合维修/综合运行", + "position_url": "/companyhome/post.aspx?comp=amlhaGVuZw%3d%3d&id=582096", + "company_name": "唐山市嘉恒实业有限公司", + "company_url": "/companyhome/company.aspx?comp=amlhaGVuZw%3d%3d" + }, + { + "position_name": " 物业维修技工", + "position_url": "/companyhome/post.aspx?comp=dHNocA%3d%3d&id=584994", + "company_name": "慧鹏建设集团有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNocA%3d%3d" + }, + { + "position_name": " 综合维修", + "position_url": "/companyhome/post.aspx?comp=Z3VvemlyZW5saQ%3d%3d&id=582079", + "company_name": "唐山国资人力资源服务有限责任公司", + "company_url": "/companyhome/company.aspx?comp=Z3VvemlyZW5saQ%3d%3d" + } + ] + }, + { + "cid": "3941", + "cname": "物业设施管理人员", + "position_list": [ + { + "position_name": " 维修部主管", + "position_url": "/companyhome/post.aspx?comp=amlhaGVuZw%3d%3d&id=585077", + "company_name": "唐山市嘉恒实业有限公司", + "company_url": "/companyhome/company.aspx?comp=amlhaGVuZw%3d%3d" + } + ] + }, + { + "cid": "3942", + "cname": "房产项目配套工程师", + "position_list": [] + }, + { + "cid": "3943", + "cname": "房地产销售人员", + "position_list": [ + { + "position_name": " 置业顾问(古冶区)", + "position_url": "/companyhome/post.aspx?comp=ZG9uZ2h1YWRj&id=579510", + "company_name": "河北东华置业集团有限公司", + "company_url": "/companyhome/company.aspx?comp=ZG9uZ2h1YWRj" + }, + { + "position_name": " 营销后台经理", + "position_url": "/companyhome/post.aspx?comp=bGJjdDIwMTQ%3d&id=580250", + "company_name": "唐山市路北区城市建设投资集团有限公司", + "company_url": "/companyhome/company.aspx?comp=bGJjdDIwMTQ%3d" + }, + { + "position_name": " 项目销售负责人", + "position_url": "/companyhome/post.aspx?comp=bGJjdDIwMTQ%3d&id=585067", + "company_name": "唐山市路北区城市建设投资集团有限公司", + "company_url": "/companyhome/company.aspx?comp=bGJjdDIwMTQ%3d" + }, + { + "position_name": " 置业顾问", + "position_url": "/companyhome/post.aspx?comp=dHNocA%3d%3d&id=581022", + "company_name": "慧鹏建设集团有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNocA%3d%3d" + }, + { + "position_name": " 置业顾问", + "position_url": "/companyhome/post.aspx?comp=dG9uZ2h1YQ%3d%3d&id=584246", + "company_name": "唐山市通华房地产开发有限公司", + "company_url": "/companyhome/company.aspx?comp=dG9uZ2h1YQ%3d%3d" + }, + { + "position_name": " 贝壳房产经纪人", + "position_url": "/companyhome/post.aspx?comp=eHNibnFo&id=583814", + "company_name": "西双版纳起航置业有限公司", + "company_url": "/companyhome/company.aspx?comp=eHNibnFo" + }, + { + "position_name": " 置业顾问", + "position_url": "/companyhome/post.aspx?comp=ZG9uZ2h1YWRj&id=204384", + "company_name": "河北东华置业集团有限公司", + "company_url": "/companyhome/company.aspx?comp=ZG9uZ2h1YWRj" + }, + { + "position_name": " 置业顾问", + "position_url": "/companyhome/post.aspx?comp=ZG9uZ2h1YWRj&id=216083", + "company_name": "河北东华置业集团有限公司", + "company_url": "/companyhome/company.aspx?comp=ZG9uZ2h1YWRj" + } + ] + }, + { + "cid": "3944", + "cname": "房地产评估", + "position_list": [ + { + "position_name": " 资产评估师及评估业务助理", + "position_url": "/companyhome/post.aspx?comp=VFNZRDAx&id=110313", + "company_name": "唐山永大会计师事务所有限公司", + "company_url": "/companyhome/company.aspx?comp=VFNZRDAx" + }, + { + "position_name": " 房地产估价师,土地评估、房地产评估助理", + "position_url": "/companyhome/post.aspx?comp=VFNZRDAx&id=110314", + "company_name": "唐山永大会计师事务所有限公司", + "company_url": "/companyhome/company.aspx?comp=VFNZRDAx" + } + ] + }, + { + "cid": "3945", + "cname": "施工人员", + "position_list": [ + { + "position_name": " 现场技术员", + "position_url": "/companyhome/post.aspx?comp=YmVpc2hhbmc%3d&id=585779", + "company_name": "河北北上节能科技有限公司", + "company_url": "/companyhome/company.aspx?comp=YmVpc2hhbmc%3d" + }, + { + "position_name": " 土建工程师", + "position_url": "/companyhome/post.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d&id=583464", + "company_name": "唐山天鸿建设集团有限责任公司", + "company_url": "/companyhome/company.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d" + }, + { + "position_name": " 市政道路工程生产经理", + "position_url": "/companyhome/post.aspx?comp=cHRqejg4OA%3d%3d&id=581186", + "company_name": "唐山鹏通建筑工程有限责任公司", + "company_url": "/companyhome/company.aspx?comp=cHRqejg4OA%3d%3d" + }, + { + "position_name": " 施工员", + "position_url": "/companyhome/post.aspx?comp=Z2NwNzkxMTAz&id=220033", + "company_name": "河北远通建设有限责任公司", + "company_url": "/companyhome/company.aspx?comp=Z2NwNzkxMTAz" + }, + { + "position_name": " 技术员", + "position_url": "/companyhome/post.aspx?comp=Z2NwNzkxMTAz&id=220032", + "company_name": "河北远通建设有限责任公司", + "company_url": "/companyhome/company.aspx?comp=Z2NwNzkxMTAz" + }, + { + "position_name": " 电工", + "position_url": "/companyhome/post.aspx?comp=d2xwMTk5OA%3d%3d&id=567794", + "company_name": "唐山绿景房地产开发有限公司", + "company_url": "/companyhome/company.aspx?comp=d2xwMTk5OA%3d%3d" + }, + { + "position_name": " 水电工程师", + "position_url": "/companyhome/post.aspx?comp=d2xwMTk5OA%3d%3d&id=565868", + "company_name": "唐山绿景房地产开发有限公司", + "company_url": "/companyhome/company.aspx?comp=d2xwMTk5OA%3d%3d" + }, + { + "position_name": " 施工质检员", + "position_url": "/companyhome/post.aspx?comp=c2hlamk%3d&id=580785", + "company_name": "河北昊宇建筑设计有限公司", + "company_url": "/companyhome/company.aspx?comp=c2hlamk%3d" + } + ] + }, + { + "cid": "3946", + "cname": "规划设计师", + "position_list": [ + { + "position_name": " 注册规划师", + "position_url": "/companyhome/post.aspx?comp=SldTSjEyMw%3d%3d&id=194226", + "company_name": "唐山吉屋建筑设计咨询有限公司", + "company_url": "/companyhome/company.aspx?comp=SldTSjEyMw%3d%3d" + }, + { + "position_name": " 规划设计", + "position_url": "/companyhome/post.aspx?comp=SldTSjEyMw%3d%3d&id=194230", + "company_name": "唐山吉屋建筑设计咨询有限公司", + "company_url": "/companyhome/company.aspx?comp=SldTSjEyMw%3d%3d" + }, + { + "position_name": " 建筑师助理", + "position_url": "/companyhome/post.aspx?comp=dHN0Y3NqeQ%3d%3d&id=184759", + "company_name": "唐山陶瓷集团设计研究有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN0Y3NqeQ%3d%3d" + } + ] + }, + { + "cid": "3947", + "cname": "测绘员/测量员", + "position_list": [ + { + "position_name": " 紧急招聘助理工程师(可接受应届毕业生)", + "position_url": "/companyhome/post.aspx?comp=aGVuZ3l1eml4dW4%3d&id=163433", + "company_name": "唐山市恒誉工程技术咨询有限责任公司", + "company_url": "/companyhome/company.aspx?comp=aGVuZ3l1eml4dW4%3d" + }, + { + "position_name": " 施工员", + "position_url": "/companyhome/post.aspx?comp=cHRqejg4OA%3d%3d&id=203228", + "company_name": "唐山鹏通建筑工程有限责任公司", + "company_url": "/companyhome/company.aspx?comp=cHRqejg4OA%3d%3d" + } + ] + }, + { + "cid": "3948", + "cname": "资料员", + "position_list": [ + { + "position_name": " 工地资料员", + "position_url": "/companyhome/post.aspx?comp=dHNsZg%3d%3d&id=581377", + "company_name": "唐山联发工程管理有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNsZg%3d%3d" + }, + { + "position_name": " 资料员", + "position_url": "/companyhome/post.aspx?comp=YWplbHp5MTEx&id=585814", + "company_name": "唐山安居人力资源服务有限公司", + "company_url": "/companyhome/company.aspx?comp=YWplbHp5MTEx" + }, + { + "position_name": " 资料员", + "position_url": "/companyhome/post.aspx?comp=bGJjdDIwMTQ%3d&id=82222", + "company_name": "唐山市路北区城市建设投资集团有限公司", + "company_url": "/companyhome/company.aspx?comp=bGJjdDIwMTQ%3d" + }, + { + "position_name": " 机电资料员", + "position_url": "/companyhome/post.aspx?comp=dGlhbmppbnNoZW5neXVhbjAwMQ%3d%3d&id=576603", + "company_name": "天津晟原建筑工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dGlhbmppbnNoZW5neXVhbjAwMQ%3d%3d" + }, + { + "position_name": " 现场资料员", + "position_url": "/companyhome/post.aspx?comp=dHN4ZGpz&id=580557", + "company_name": "河北鑫鼎建设工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN4ZGpz" + }, + { + "position_name": " 安全员", + "position_url": "/companyhome/post.aspx?comp=dHN4ZGpz&id=583366", + "company_name": "河北鑫鼎建设工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN4ZGpz" + }, + { + "position_name": " 资料员", + "position_url": "/companyhome/post.aspx?comp=UlVJTUVJ&id=214383", + "company_name": "河北瑞美建设有限公司", + "company_url": "/companyhome/company.aspx?comp=UlVJTUVJ" + } + ] + }, + { + "cid": "3949", + "cname": "安全主任", + "position_list": [ + { + "position_name": " 安全主管", + "position_url": "/companyhome/post.aspx?comp=YWplbHp5MTEx&id=585819", + "company_name": "唐山安居人力资源服务有限公司", + "company_url": "/companyhome/company.aspx?comp=YWplbHp5MTEx" + }, + { + "position_name": " 安全员", + "position_url": "/companyhome/post.aspx?comp=YWplbHp5MTEx&id=585815", + "company_name": "唐山安居人力资源服务有限公司", + "company_url": "/companyhome/company.aspx?comp=YWplbHp5MTEx" + }, + { + "position_name": " 施工安全员", + "position_url": "/companyhome/post.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d&id=583463", + "company_name": "唐山天鸿建设集团有限责任公司", + "company_url": "/companyhome/company.aspx?comp=dGlhbmhvbmdqaWFuYW4%3d" + }, + { + "position_name": " 安全总监", + "position_url": "/companyhome/post.aspx?comp=cHRqejg4OA%3d%3d&id=215341", + "company_name": "唐山鹏通建筑工程有限责任公司", + "company_url": "/companyhome/company.aspx?comp=cHRqejg4OA%3d%3d" + }, + { + "position_name": " 安全员", + "position_url": "/companyhome/post.aspx?comp=dHNseWhia2p5eGdz&id=583499", + "company_name": "唐山绿源环保科技有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNseWhia2p5eGdz" + } + ] + }, + { + "cid": "3950", + "cname": "铁路工程", + "position_list": [] + }, + { + "cid": "3951", + "cname": "智能大厦/布线/弱电/安防", + "position_list": [ + { + "position_name": " 智能化(弱电)系统检修运维", + "position_url": "/companyhome/post.aspx?comp=dHNydW50YWk%3d&id=193881", + "company_name": "唐山市润泰科技有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNydW50YWk%3d" + }, + { + "position_name": " 监控安装人员", + "position_url": "/companyhome/post.aspx?comp=Ymprag%3d%3d&id=211771", + "company_name": "河北博嘉科技有限公司", + "company_url": "/companyhome/company.aspx?comp=Ymprag%3d%3d" + } + ] + }, + { + "cid": "3952", + "cname": "房地产项目/开发/策划经理", + "position_list": [ + { + "position_name": " 钢结构施工项目经理", + "position_url": "/companyhome/post.aspx?comp=aGVuZ3l1eml4dW4%3d&id=584919", + "company_name": "唐山市恒誉工程技术咨询有限责任公司", + "company_url": "/companyhome/company.aspx?comp=aGVuZ3l1eml4dW4%3d" + }, + { + "position_name": " 项目经理", + "position_url": "/companyhome/post.aspx?comp=dHN5dHpoYg%3d%3d&id=585084", + "company_name": "唐山远通实业有限公司", + "company_url": "/companyhome/company.aspx?comp=dHN5dHpoYg%3d%3d" + }, + { + "position_name": " 滦南售楼员", + "position_url": "/companyhome/post.aspx?comp=d2xwMTk5OA%3d%3d&id=569057", + "company_name": "唐山绿景房地产开发有限公司", + "company_url": "/companyhome/company.aspx?comp=d2xwMTk5OA%3d%3d" + }, + { + "position_name": " 法务", + "position_url": "/companyhome/post.aspx?comp=d2xwMTk5OA%3d%3d&id=580549", + "company_name": "唐山绿景房地产开发有限公司", + "company_url": "/companyhome/company.aspx?comp=d2xwMTk5OA%3d%3d" + }, + { + "position_name": " 乐亭售楼 人员", + "position_url": "/companyhome/post.aspx?comp=d2xwMTk5OA%3d%3d&id=569058", + "company_name": "唐山绿景房地产开发有限公司", + "company_url": "/companyhome/company.aspx?comp=d2xwMTk5OA%3d%3d" + }, + { + "position_name": " 电气工程师", + "position_url": "/companyhome/post.aspx?comp=cmh6eTc3MjI5ODg%3d&id=583484", + "company_name": "唐山瑞华置业有限公司", + "company_url": "/companyhome/company.aspx?comp=cmh6eTc3MjI5ODg%3d" + }, + { + "position_name": " 水暖工程师", + "position_url": "/companyhome/post.aspx?comp=d2xwMTk5OA%3d%3d&id=565867", + "company_name": "唐山绿景房地产开发有限公司", + "company_url": "/companyhome/company.aspx?comp=d2xwMTk5OA%3d%3d" + }, + { + "position_name": " 总经理助理", + "position_url": "/companyhome/post.aspx?comp=d2xwMTk5OA%3d%3d&id=577613", + "company_name": "唐山绿景房地产开发有限公司", + "company_url": "/companyhome/company.aspx?comp=d2xwMTk5OA%3d%3d" + }, + { + "position_name": " 施工技术人员", + "position_url": "/companyhome/post.aspx?comp=c2hlamk%3d&id=198700", + "company_name": "河北昊宇建筑设计有限公司", + "company_url": "/companyhome/company.aspx?comp=c2hlamk%3d" + } + ] + }, + { + "cid": "3953", + "cname": "高级物业顾问", + "position_list": [] + } + ] + }, + { + "id": "3983", + "name": "交通运输(海陆空)类", + "child": [ + { + "cid": "3984", + "cname": "交通运输(海陆空)类" + }, + { + "cid": "3985", + "cname": "调度员", + "position_list": [] + }, + { + "cid": "3986", + "cname": "船员", + "position_list": [] + }, + { + "cid": "3987", + "cname": "乘务员", + "position_list": [ + { + "position_name": " 铁路工作人员+包食宿", + "position_url": "/companyhome/post.aspx?comp=aGJ0cQ%3d%3d&id=204217", + "company_name": "河北傲卫勤务安防工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGJ0cQ%3d%3d" + }, + { + "position_name": " 高铁乘务员", + "position_url": "/companyhome/post.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d&id=579858", + "company_name": "河北冀列铁路工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d" + }, + { + "position_name": " 车站助理", + "position_url": "/companyhome/post.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d&id=579864", + "company_name": "河北冀列铁路工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d" + }, + { + "position_name": " 高铁乘务员", + "position_url": "/companyhome/post.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d&id=580602", + "company_name": "河北冀列铁路工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d" + }, + { + "position_name": " 高铁安检员", + "position_url": "/companyhome/post.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d&id=580603", + "company_name": "河北冀列铁路工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d" + }, + { + "position_name": " 车站助理", + "position_url": "/companyhome/post.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d&id=579870", + "company_name": "河北冀列铁路工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d" + }, + { + "position_name": " 高铁乘务员", + "position_url": "/companyhome/post.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d&id=579871", + "company_name": "河北冀列铁路工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d" + }, + { + "position_name": " 列车安检员", + "position_url": "/companyhome/post.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d&id=579872", + "company_name": "河北冀列铁路工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d" + }, + { + "position_name": " 站内工作人员", + "position_url": "/companyhome/post.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d&id=579873", + "company_name": "河北冀列铁路工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d" + }, + { + "position_name": " 高铁乘务员", + "position_url": "/companyhome/post.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d&id=579874", + "company_name": "河北冀列铁路工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d" + }, + { + "position_name": " 列车安检员", + "position_url": "/companyhome/post.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d&id=579875", + "company_name": "河北冀列铁路工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d" + }, + { + "position_name": " 高铁乘务员", + "position_url": "/companyhome/post.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d&id=579876", + "company_name": "河北冀列铁路工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d" + }, + { + "position_name": " 列车安检员", + "position_url": "/companyhome/post.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d&id=579879", + "company_name": "河北冀列铁路工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d" + }, + { + "position_name": " 站内工作人员", + "position_url": "/companyhome/post.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d&id=579888", + "company_name": "河北冀列铁路工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d" + } + ] + }, + { + "cid": "3988", + "cname": "司机", + "position_list": [ + { + "position_name": " 总经理专职司机", + "position_url": "/companyhome/post.aspx?comp=dGFuZ3NoYW5sdXFpbmc4ODg%3d&id=585090", + "company_name": "唐山市陆清建筑工程有限公司", + "company_url": "/companyhome/company.aspx?comp=dGFuZ3NoYW5sdXFpbmc4ODg%3d" + }, + { + "position_name": " 专职司机", + "position_url": "/companyhome/post.aspx?comp=dHNqbWU%3d&id=207818", + "company_name": "唐山金山腾宇科技有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNqbWU%3d" + }, + { + "position_name": " 总经理司机", + "position_url": "/companyhome/post.aspx?comp=cHRqejg4OA%3d%3d&id=560952", + "company_name": "唐山鹏通建筑工程有限责任公司", + "company_url": "/companyhome/company.aspx?comp=cHRqejg4OA%3d%3d" + }, + { + "position_name": " 司机", + "position_url": "/companyhome/post.aspx?comp=Z2NwNzkxMTAz&id=220030", + "company_name": "河北远通建设有限责任公司", + "company_url": "/companyhome/company.aspx?comp=Z2NwNzkxMTAz" + }, + { + "position_name": " 4.2米箱货司机", + "position_url": "/companyhome/post.aspx?comp=aGVuZ2hlc2h1bjEyMw%3d%3d&id=585004", + "company_name": "天津恒合顺新材料科技有限公司", + "company_url": "/companyhome/company.aspx?comp=aGVuZ2hlc2h1bjEyMw%3d%3d" + }, + { + "position_name": " 半挂驾驶员", + "position_url": "/companyhome/post.aspx?comp=a3l3bDI1OA%3d%3d&id=583520", + "company_name": "唐山焜烨物流有限公司", + "company_url": "/companyhome/company.aspx?comp=a3l3bDI1OA%3d%3d" + } + ] + }, + { + "cid": "3989", + "cname": "航空/列车/船舶操作维修", + "position_list": [ + { + "position_name": " 直招高铁乘警", + "position_url": "/companyhome/post.aspx?comp=aGJ0cQ%3d%3d&id=198453", + "company_name": "河北傲卫勤务安防工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGJ0cQ%3d%3d" + } + ] + }, + { + "cid": "3990", + "cname": "公交/地铁", + "position_list": [ + { + "position_name": " 列车安检员", + "position_url": "/companyhome/post.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d&id=579861", + "company_name": "河北冀列铁路工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d" + }, + { + "position_name": " 站内工作人员", + "position_url": "/companyhome/post.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d&id=579865", + "company_name": "河北冀列铁路工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d" + }, + { + "position_name": " 列车安检员", + "position_url": "/companyhome/post.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d&id=579867", + "company_name": "河北冀列铁路工程有限公司", + "company_url": "/companyhome/company.aspx?comp=aGViZWlqaWxpZTEyMw%3d%3d" + } + ] + }, + { + "cid": "3991", + "cname": "空乘人员", + "position_list": [] + }, + { + "cid": "3992", + "cname": "船务/空运陆运操作", + "position_list": [] + } + ] + }, + { + "id": "4088", + "name": "地矿冶金类", + "child": [ + { + "cid": "4089", + "cname": "地矿冶金类" + }, + { + "cid": "4090", + "cname": "采矿工程师", + "position_list": [] + }, + { + "cid": "4091", + "cname": "选矿工程师", + "position_list": [] + }, + { + "cid": "4092", + "cname": "矿物加工工程师", + "position_list": [ + { + "position_name": " 选矿工艺工程师", + "position_url": "/companyhome/post.aspx?comp=dHNsaw%3d%3d&id=220554", + "company_name": "唐山陆凯科技有限公司", + "company_url": "/companyhome/company.aspx?comp=dHNsaw%3d%3d" + } + ] + }, + { + "cid": "4093", + "cname": "矿山管理/采矿管理", + "position_list": [] + }, + { + "cid": "4094", + "cname": "矿山/采矿安全管理", + "position_list": [] + }, + { + "cid": "4095", + "cname": "爆破技术", + "position_list": [] + } + ] + } +] \ No newline at end of file diff --git a/web/tsrcw/position_info_back.json b/web/tsrcw/position_info_back.json new file mode 100644 index 0000000..49a288f --- /dev/null +++ b/web/tsrcw/position_info_back.json @@ -0,0 +1 @@ +{"cid": "4095", "cname": "爆破技术", "position_list": []} \ No newline at end of file diff --git a/web/tstczpw_dtangshan_com/main.py b/web/tstczpw_dtangshan_com/main.py new file mode 100644 index 0000000..72bc690 --- /dev/null +++ b/web/tstczpw_dtangshan_com/main.py @@ -0,0 +1,105 @@ +import sys, os +import time +import pandas as pd +project_root = os.path.abspath(os.path.join(os.path.dirname(__file__), "..")) +if project_root not in sys.path: + sys.path.insert(0, project_root) + +from web.Requests_Except import MR + +base_url = 'tstczpw.dtangshan.com' +protocol = 'https' + + +default_headers = { + 'accept': 'application/json, text/plain, */*', + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6', + 'authorization': 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MTE5NDA2LCJ1c2VybmFtZSI6IuS5iOW9pua4hSIsInB3ZCI6IjI5YmE3OTA3ZDUxNTE4MGNlNGU5ZmY0Mzk4ZmI5OGNiIiwiaWF0IjoxNzQ4NDgxNDQxLCJleHAiOjE3ODAwMTc0NDF9.EaF6zHc8TE-OsmUW_no3S9g-Ch7Af5xxoB1FtN0cY2U', + 'cache-control': 'no-cache', + 'pragma': 'no-cache', + 'priority': 'u=1, i', + 'referer': 'https://tstczpw.dtangshan.com/uc/enterprise/resume-library?tab=resume', + 'sec-ch-ua': '"Chromium";v="136", "Microsoft Edge";v="136", "Not.A/Brand";v="99"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-platform': '"Windows"', + 'sec-fetch-dest': 'empty', + 'sec-fetch-mode': 'cors', + 'sec-fetch-site': 'same-origin', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36 Edg/136.0.0.0', + 'x-platform': '1', + 'x-site-id': 'undefined' +} + +default_cookies = { + 'x-trace-id': 'b1ed266a69b84acfb41a789948b17cf2', + 'logged': '1', + '__csrf': 'd89b15be-c143-47e1-b6b2-f367e03e54f1', + 'Hm_lvt_f4456766547e6691e07b5e2eced1f70d': '1748435541,1748481435', + 'Hm_lpvt_f4456766547e6691e07b5e2eced1f70d': '1748481435', + 'HMACCOUNT': '212FF4B3AD499E5B', + 'token': 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MTE5NDA2LCJ1c2VybmFtZSI6IuS5iOW9pua4hSIsInB3ZCI6IjI5YmE3OTA3ZDUxNTE4MGNlNGU5ZmY0Mzk4ZmI5OGNiIiwiaWF0IjoxNzQ4NDgxNDQxLCJleHAiOjE3ODAwMTc0NDF9.EaF6zHc8TE-OsmUW_no3S9g-Ch7Af5xxoB1FtN0cY2U', +} + +Requests = MR(base_url, protocol) +Requests.set_default_headers(default_headers) +Requests.set_default_cookies(default_cookies) + +pd_data = { + 'resume_id': [], + '姓名': [], # user_name + '求职区域': [], # area_show + '学历': [], # education_level_msg + '婚姻': [], # marry_status_show + '年龄': [], # user_age + '求职状态': [], # work_status_show + '工作1经历': [], + '工作2经历': [], + '工作年限':[], + '薪资':[], +} + +def page_list(page: int = 1) -> str: + url = '/api/v1/resumes' + params = { + '_': str(int(time.time() * 1000)), + 'tab': 'resume', + 'keyword': '财务', + 't':str(int(time.time() * 1000)-200), + 'pageSize': '100', + 'pageIndex': str(page), + 'showStatus': 'true', + } + response = Requests.get(url, params=params) + return response.to_Dict() + +def info(data): + infos = data.data.items + for info in infos: + pd_data['resume_id'].append(info.id) + pd_data['姓名'].append(info.name_value) + pd_data['求职状态'].append(info.job_instant_value) + pd_data['工作年限'].append(info.work_exp_value) + pd_data['婚姻'].append(info.marriage_value) + pd_data['年龄'].append(info.age) + if (info.job_salary_from == 0 and info.job_salary_to == 0) or (info.job_salary_from is None and info.job_salary_to is None): + xinzi = "面议" + else: + xinzi = f"{info.job_salary_from}~{info.job_salary_to}" + pd_data['薪资'].append(xinzi) + pd_data['学历'].append(info.edu_value) + pd_data['求职区域'].append(info.job_region_value) + cateforyArr = info.infoCateforyArrObj + if len(cateforyArr) == 0: + pd_data['工作1经历'].append('') + pd_data['工作2经历'].append('') + elif len(cateforyArr) == 1: + pd_data['工作1经历'].append(cateforyArr[0].name) + pd_data['工作2经历'].append('') + elif len(cateforyArr) >= 2: + pd_data['工作1经历'].append(cateforyArr[0].name) + pd_data['工作2经历'].append(cateforyArr[1].name) + +info(page_list(1)) + +df = pd.DataFrame(pd_data) +df.to_excel(f'{base_url}_财务.xlsx', index=False) diff --git a/web/tstczpw_dtangshan_com/tstczpw_dtangshan_com_cookies.json b/web/tstczpw_dtangshan_com/tstczpw_dtangshan_com_cookies.json new file mode 100644 index 0000000..db46eb4 --- /dev/null +++ b/web/tstczpw_dtangshan_com/tstczpw_dtangshan_com_cookies.json @@ -0,0 +1,9 @@ +{ + "HMACCOUNT": "212FF4B3AD499E5B", + "Hm_lpvt_f4456766547e6691e07b5e2eced1f70d": "1748481435", + "Hm_lvt_f4456766547e6691e07b5e2eced1f70d": "1748435541,1748481435", + "__csrf": "d89b15be-c143-47e1-b6b2-f367e03e54f1", + "logged": "1", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MTE5NDA2LCJ1c2VybmFtZSI6IuS5iOW9pua4hSIsInB3ZCI6IjI5YmE3OTA3ZDUxNTE4MGNlNGU5ZmY0Mzk4ZmI5OGNiIiwiaWF0IjoxNzQ4NDgxNDQxLCJleHAiOjE3ODAwMTc0NDF9.EaF6zHc8TE-OsmUW_no3S9g-Ch7Af5xxoB1FtN0cY2U", + "x-trace-id": "b1ed266a69b84acfb41a789948b17cf2" +} \ No newline at end of file diff --git a/web/ubereats/Adata.json b/web/ubereats/Adata.json new file mode 100644 index 0000000..26274ea --- /dev/null +++ b/web/ubereats/Adata.json @@ -0,0 +1,10680 @@ +[ + { + "name": "Add Or No Add Or No (3rd)", + "list": [ + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": false, + "maxPermitted": 10 + }, + { + "name": "Rice Choice (3rd)", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Buffalo Wings", + "list": [ + { + "name": "(Plain)", + "price": 0.0 + }, + { + "name": "(w. Fries)", + "price": 0.96 + }, + { + "name": "(w. Pork Fried Rice)", + "price": 0.96 + }, + { + "name": "(w. Chicken Fried Rice)", + "price": 0.96 + }, + { + "name": "(w. Beef Fried Rice)", + "price": 2.04 + }, + { + "name": "(w. Shrimp Fried Rice)", + "price": 2.04 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Chicken Nuggets (15)", + "list": [ + { + "name": "(Plain)", + "price": 0.0 + }, + { + "name": "(w. Fries)", + "price": 2.35 + }, + { + "name": "(w. Pork Fried Rice)", + "price": 2.35 + }, + { + "name": "(w. Chicken Fried Rice)", + "price": 2.59 + }, + { + "name": "(w. Beef Fried Rice)", + "price": 2.59 + }, + { + "name": "(w. Shrimp Fried Rice)", + "price": 2.59 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Fried Chicken Wings (3pcs wholewings)", + "list": [ + { + "name": "(Plain)", + "price": 0.0 + }, + { + "name": "(w. Fries)", + "price": 1.32 + }, + { + "name": "(w. Pork Fried Rice)", + "price": 1.32 + }, + { + "name": "(w. Chicken Fried Rice)", + "price": 2.4 + }, + { + "name": "(w. Beef Fried Rice)", + "price": 2.4 + }, + { + "name": "(w. Shrimp Fried Rice)", + "price": 2.4 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Chicken Wings w. Garlic Sauce", + "list": [ + { + "name": "(Plain)", + "price": 0.0 + }, + { + "name": "(w. Fries)", + "price": 0.96 + }, + { + "name": "(w. Pork Fried Rice)", + "price": 0.96 + }, + { + "name": "(w. Chicken Fried Rice)", + "price": 0.96 + }, + { + "name": "(w. Beef Fried Rice)", + "price": 2.04 + }, + { + "name": "(w. Shrimp Fried Rice)", + "price": 2.04 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "House Special Fried Rice", + "list": [ + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "Add Egg", + "price": 1.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "Add Egg", + "price": 1.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "Add Egg", + "price": 1.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "Add Egg", + "price": 1.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Shrimp Fried Rice", + "list": [ + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "Add Egg", + "price": 1.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "Add Egg", + "price": 1.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "Add Egg", + "price": 1.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "Add Egg", + "price": 1.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Chicken Fried Rice", + "list": [ + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "Add Egg", + "price": 1.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "Add Egg", + "price": 1.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "Add Egg", + "price": 1.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "Add Egg", + "price": 1.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Plain Fried Rice", + "list": [ + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "Add Egg", + "price": 1.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "Add Egg", + "price": 1.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Roast Pork Fried Rice", + "list": [ + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "Add Egg", + "price": 1.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "Add Egg", + "price": 1.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "Add Egg", + "price": 1.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "Add Egg", + "price": 1.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Egg Fried Rice", + "list": [ + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "Add Egg", + "price": 1.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "Add Egg", + "price": 1.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Beef Fried Rice", + "list": [ + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "Add Egg", + "price": 1.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "Add Egg", + "price": 1.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "Add Egg", + "price": 1.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "Add Egg", + "price": 1.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Vegetable Fried Rice", + "list": [ + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "Add Egg", + "price": 1.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "Add Egg", + "price": 1.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Ham Fried Rice", + "list": [ + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "Add Egg", + "price": 1.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "Add Egg", + "price": 1.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "Add Egg", + "price": 1.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "Add Egg", + "price": 1.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "House Special Lo Mein", + "list": [ + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Beef Lo Mein", + "list": [ + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Chicken Lo Mein", + "list": [ + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Vegetable Lo Mein", + "list": [ + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Shrimp Lo Mein", + "list": [ + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Roast Pork Lo Mein", + "list": [ + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Mixed Vegetable", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Broccoli w. Garlic Sauce", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Shrimp Chop Suey", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Roast Pork Chop Suey", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Vegetable Chop Suey", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Chicken Chop Suey", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "House Special Chop Suey", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Beef Chop Suey", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Chicken w. Mix Vegetable", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Sweet Sour Chicken", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "Extra Sauce", + "price": 0.0 + }, + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "Extra Sauce", + "price": 0.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Curry Chicken", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Moo Goo Gai Pan", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Chicken w. Broccoli", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Hunan Chicken", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Chicken w. Cashew Nuts", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Kung Pao Chicken", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Chicken w. Garlic Sauce", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Chicken w. Black Bean Sauce", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Szechuan Chicken", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Pepper Steak", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Beef w. Black Bean Sauce", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Beef w. Broccoli", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Kung Po Beef", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Beef w. Mix Vegetable", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Beef w. Mushroom", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Szechuan Beef", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Curry Beef", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Beef w. Garlic Sauce", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Hunan Beef", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Sweet Sour Shrimp", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "Extra Sauce", + "price": 0.0 + }, + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "Extra Sauce", + "price": 0.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Shrimp w. Garlic Sauce", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Shrimp w. Lobster Sauce", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Szechuan Shrimp", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Shrimp w. Black Bean Sauce", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Shrimp w. Mix Vegetable", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Shrimp w. Cashew Nuts", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Shrimp w. Hunan Style", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Shrimp w. Broccoli", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + }, + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 2.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 2.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 2.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 2.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.5 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.5 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.5 + }, + { + "name": "w. House Special Fried Rice", + "price": 3.0 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + }, + { + "name": "No Change", + "price": 0.0 + }, + { + "name": "No Egg", + "price": 0.0 + }, + { + "name": "No Onions", + "price": 0.0 + }, + { + "name": "No Pork", + "price": 0.0 + }, + { + "name": "Add Pork", + "price": 1.5 + }, + { + "name": "Add Shrimp", + "price": 2.0 + }, + { + "name": "Add Onions", + "price": 1.0 + }, + { + "name": "Add Broccoli", + "price": 1.0 + }, + { + "name": "Add Chicken", + "price": 1.5 + }, + { + "name": "Add Beef", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "LC Rice Choice (3rd)", + "list": [ + { + "name": "w. White Rice", + "price": 0.0 + }, + { + "name": "w. Plain Fried Rice", + "price": 0.0 + }, + { + "name": "w. Egg Fried Rice", + "price": 0.0 + }, + { + "name": "w. Veg Fried Rice", + "price": 0.0 + }, + { + "name": "w. Chicken Fried Rice", + "price": 1.0 + }, + { + "name": "w. Pork Fried Rice", + "price": 0.0 + }, + { + "name": "w. Shrimp Fried Rice", + "price": 2.0 + }, + { + "name": "w. Beef Fried Rice", + "price": 2.0 + }, + { + "name": "w. Ham Fried Rice", + "price": 2.0 + }, + { + "name": "w. House Special Fried Rice", + "price": 2.5 + }, + { + "name": "w. Plain Lo Mein", + "price": 2.0 + }, + { + "name": "w. Veg Lo Mein", + "price": 2.0 + }, + { + "name": "w. Chicken Lo Mein", + "price": 2.0 + }, + { + "name": "w. Pork Lo Mein", + "price": 2.0 + }, + { + "name": "w. Beef Lo Mein", + "price": 2.5 + }, + { + "name": "w. Shrimp Lo Mein", + "price": 2.5 + }, + { + "name": "w. House Lo Mein", + "price": 3.0 + }, + { + "name": "No Rice", + "price": 0.0 + } + ], + "required": false, + "maxPermitted": 1 + }, + { + "name": "Side Choice (3rd)", + "list": [ + { + "name": "w. Pork Egg Roll", + "price": 0.0 + }, + { + "name": "w. Veg Roll", + "price": 0.5 + }, + { + "name": "w. Coca Cola (can)", + "price": 0.0 + }, + { + "name": "w. Sprite (can)", + "price": 0.0 + }, + { + "name": "w. Brisk (can)", + "price": 0.0 + }, + { + "name": "w. MtnDew (can)", + "price": 0.0 + }, + { + "name": "w. Diet Coke (can)", + "price": 0.0 + }, + { + "name": "w. Pepsi (can)", + "price": 0.0 + }, + { + "name": "w. Orange (can)", + "price": 0.0 + }, + { + "name": "w. Ginger Ale (can)", + "price": 0.0 + }, + { + "name": "w. Dr Pepper (can)", + "price": 0.0 + }, + { + "name": "w. Water", + "price": 0.0 + }, + { + "name": "w. Wonton Soup", + "price": 0.0 + }, + { + "name": "w. Egg Drop Soup", + "price": 0.0 + }, + { + "name": "w. Hot Sour Soup", + "price": 0.5 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Extra Sauce (3rd)", + "list": [ + { + "name": "Extra Sauce", + "price": 0.0 + } + ], + "required": false, + "maxPermitted": 1 + } +] \ No newline at end of file diff --git a/web/ubereats/II/Adata.json b/web/ubereats/II/Adata.json new file mode 100644 index 0000000..fcba795 --- /dev/null +++ b/web/ubereats/II/Adata.json @@ -0,0 +1,158 @@ +[ + { + "name": "Braised Whole Fish", + "list": [ + { + "name": "For One", + "price": 0.0 + }, + { + "name": "For Two", + "price": 3.82 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Mala Tang", + "list": [ + { + "name": "For One", + "price": 0.0 + }, + { + "name": "For Two", + "price": 4.04 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "3PP. TOGO Grilled Fish", + "list": [ + { + "name": "TOGO Grilled Fish Tray", + "price": 2.0 + } + ], + "required": true, + "maxPermitted": 99 + }, + { + "name": "Protein Choice(Doordash)", + "list": [ + { + "name": "Basil Chicken", + "price": 0.0 + }, + { + "name": "Beef", + "price": 0.3 + }, + { + "name": "Chicken", + "price": 0.3 + }, + { + "name": "Seafood", + "price": 0.3 + }, + { + "name": "Shrimp", + "price": 0.3 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Spicy Level", + "list": [ + { + "name": "Spicy", + "price": 0.0 + }, + { + "name": "No Spicy", + "price": 0.0 + }, + { + "name": "mild spicy", + "price": 0.0 + }, + { + "name": "medium spicy", + "price": 0.0 + }, + { + "name": "extra spicy", + "price": 0.0 + }, + { + "name": "little spicy", + "price": 0.0 + } + ], + "required": false, + "maxPermitted": 1 + }, + { + "name": "Preparation Choice(Doordash)", + "list": [ + { + "name": "No Spicy", + "price": 0.0 + }, + { + "name": "Spicy", + "price": 0.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Meat Temperature(Doordash)", + "list": [ + { + "name": "Medium", + "price": 0.0 + }, + { + "name": "Medium Rare", + "price": 0.0 + }, + { + "name": "Medium Well", + "price": 0.0 + }, + { + "name": "Rare", + "price": 0.0 + }, + { + "name": "Well Done", + "price": 0.0 + } + ], + "required": true, + "maxPermitted": 1 + }, + { + "name": "Sauce Choice(Doordash)", + "list": [ + { + "name": "Brown Sauce", + "price": 0.0 + }, + { + "name": "Spicy Sauce", + "price": 0.0 + } + ], + "required": true, + "maxPermitted": 1 + } +] \ No newline at end of file diff --git a/web/ubereats/II/data.json b/web/ubereats/II/data.json new file mode 100644 index 0000000..c5d3ae5 --- /dev/null +++ b/web/ubereats/II/data.json @@ -0,0 +1,24065 @@ +{ + "mutations": [], + "queries": [ + { + "state": { + "data": { + "title": "China Kitchen", + "uuid": "0212c830-1845-41d2-aa06-6c78bfb97315", + "slug": "china-kitchen", + "citySlug": "atlanta", + "heroImageUrls": [ + { + "url": "https://tb-static.uber.com/prod/image-proc/processed_images/13c7cd6942fe35f07289aa9dc2848411/f6deb0afc24fee6f4bd31a35e6bcbd47.jpeg", + "width": 240 + }, + { + "url": "https://tb-static.uber.com/prod/image-proc/processed_images/13c7cd6942fe35f07289aa9dc2848411/9b3aae4cf90f897799a5ed357d60e09d.jpeg", + "width": 550 + }, + { + "url": "https://tb-static.uber.com/prod/image-proc/processed_images/13c7cd6942fe35f07289aa9dc2848411/fdf52d66534809b650058f41d517d74a.jpeg", + "width": 640 + }, + { + "url": "https://tb-static.uber.com/prod/image-proc/processed_images/13c7cd6942fe35f07289aa9dc2848411/8a42ee7a692dfa4155879820804a277f.jpeg", + "width": 750 + }, + { + "url": "https://tb-static.uber.com/prod/image-proc/processed_images/13c7cd6942fe35f07289aa9dc2848411/783282f6131ef2258e5bcd87c46aa87e.jpeg", + "width": 1080 + }, + { + "url": "https://tb-static.uber.com/prod/image-proc/processed_images/13c7cd6942fe35f07289aa9dc2848411/fb86662148be855d931b37d6c1e5fcbe.jpeg", + "width": 2880 + } + ], + "brandInfo": [], + "seoMeta": { + "title": "Order China Kitchen Menu Delivery in Atlanta | China Kitchen Prices | Uber Eats", + "description": "Use your Uber account to order delivery from China Kitchen in Atlanta. Browse the menu, view popular items, and track your order.", + "faqs": { + "qa": [ + { + "questionFormat": "

        Can I order China Kitchen delivery in Atlanta with Uber Eats?

        ", + "answerFormat": "

        Yes. China Kitchen delivery is available on Uber Eats in Atlanta.

        " + }, + { + "questionFormat": "

        Is China Kitchen delivery available near me?

        ", + "answerFormat": "

        Enter your address to see if China Kitchen delivery is available to your location in Atlanta.

        " + }, + { + "questionFormat": "

        How do I order China Kitchen delivery online in Atlanta?

        ", + "answerFormat": "

        There are 2 ways to place an order on Uber Eats: on the app or online using the Uber Eats website. After you\u00e2\u0080\u0099ve looked over the China Kitchen menu, simply choose the items you\u00e2\u0080\u0099d like to order and add them to your cart. Next, you\u00e2\u0080\u0099ll be able to review, place, and track your order.

        " + }, + { + "questionFormat": "

        Where can I find China Kitchen online menu prices?

        ", + "answerFormat": "

        View upfront pricing information for the various items offered by China Kitchen here on this page.

        " + }, + { + "questionFormat": "

        How do I get free delivery on my China Kitchen order?

        ", + "answerFormat": "

        To save money on the delivery, consider getting an Uber One membership, if available in your area, as one of its perks is a $0 Delivery Fee on select orders.

        " + }, + { + "questionFormat": "

        How do I pay for my China Kitchen order?

        ", + "answerFormat": "

        Payment is handled via your Uber Eats account.

        " + }, + { + "questionFormat": "

        What\u00e2\u0080\u0099s the best thing to order for China Kitchen delivery in Atlanta?

        ", + "answerFormat": "

        If you\u00e2\u0080\u0099re in need of some suggestions for your China Kitchen order, check out the items showcased in \u00e2\u0080\u009cPicked for you\u00e2\u0080\u009d on this page.

        " + } + ], + "metaJson": "{\"@context\":\"https:\\u002F\\u002Fschema.org\",\"@type\":\"FAQPage\",\"mainEntity\":[{\"@type\":\"Question\",\"name\":\"Can I order China Kitchen delivery in Atlanta with Uber Eats?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Yes. China Kitchen delivery is available on Uber Eats in Atlanta.\"}},{\"@type\":\"Question\",\"name\":\"Is China Kitchen delivery available near me?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Enter your address to see if China Kitchen delivery is available to your location in Atlanta.\"}},{\"@type\":\"Question\",\"name\":\"How do I order China Kitchen delivery online in Atlanta?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"There are 2 ways to place an order on Uber Eats: on the app or online using the Uber Eats website. After you\u00e2\u0080\u0099ve looked over the China Kitchen menu, simply choose the items you\u00e2\u0080\u0099d like to order and add them to your cart. Next, you\u00e2\u0080\u0099ll be able to review, place, and track your order.\"}},{\"@type\":\"Question\",\"name\":\"Where can I find China Kitchen online menu prices?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"View upfront pricing information for the various items offered by China Kitchen here on this page.\"}},{\"@type\":\"Question\",\"name\":\"How do I get free delivery on my China Kitchen order?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"To save money on the delivery, consider getting an Uber One membership, if available in your area, as one of its perks is a $0 Delivery Fee on select orders.\"}},{\"@type\":\"Question\",\"name\":\"How do I pay for my China Kitchen order?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Payment is handled via your Uber Eats account.\"}},{\"@type\":\"Question\",\"name\":\"What\u00e2\u0080\u0099s the best thing to order for China Kitchen delivery in Atlanta?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"If you\u00e2\u0080\u0099re in need of some suggestions for your China Kitchen order, check out the items showcased in \u00e2\u0080\u009cPicked for you\u00e2\u0080\u009d on this page.\"}}]}" + }, + "content": "China Kitchen, located in the Dunwoody Forest neighborhood of Atlanta, specializes in Chinese cuisine, offering a wide variety of dishes that cater to diverse tastes. Popular among patrons are the Spicy Master Dumpling and Spicy Chicken, along with Veg Spring Rolls, which are also frequently ordered together. The menu features an extensive selection including Shanghai Soup Dumplings, various types of dry hot pots like Seasoning Fish and Lamb, as well as a selection of seafood dishes such as Hong Kong Style Shrimp and Salt and Pepper Squid. This establishment is particularly favored during the evening hours and maintains a high customer satisfaction with a rating of 4.4.", + "additionalContent": "

        China Kitchen Menu and Delivery in Atlanta

        " + }, + "location": { + "address": "5385 New Peachtree Rd, Chamblee, GA 30341", + "streetAddress": "5385 New Peachtree Rd", + "city": "Chamblee", + "country": "US", + "postalCode": "30341", + "region": "GA", + "latitude": 33.8906476, + "longitude": -84.2996487, + "geo": { + "city": "atlanta-ga", + "country": "us", + "neighborhood": "dunwoody-forest-atlanta-ga", + "region": "ga" + }, + "locationType": "DEFAULT" + }, + "currencyCode": "USD", + "isDeliveryThirdParty": false, + "isDeliveryOverTheTop": false, + "etaRange": { + "text": "5\u00e2\u0080\u00935 Min", + "iconUrl": "", + "accessibilityText": "Delivered in 5 to 5 min" + }, + "fareBadge": null, + "rating": { + "ratingValue": 4.4, + "reviewCount": "380+" + }, + "eatsPassExclusionBadge": null, + "indicatorIcons": [], + "storeInfoMetadata": { + "rawRatingStats": { + "storeRatingScore": 4.398886827458261, + "ratingCount": "380+" + }, + "workingHoursTagline": "Available at 10:00 AM", + "storeInfoSummary": { + "titleBadge": { + "text": " 4.4 (380+ ratings) \u00e2\u0080\u00a2 Chinese \u00e2\u0080\u00a2 \u00e2\u0082\u00ac", + "textFormat": " 4.4 (380+ ratings) \u00e2\u0080\u00a2 Chinese \u00e2\u0080\u00a2 \u00e2\u0082\u00ac", + "accessibilityText": "Rating 4.4 from 380+ reviews\n, Chinese, Average to high prices" + }, + "subtitle1Badge": { + "text": "Closed \u00e2\u0080\u00a2 Available at 10:00 AM", + "textFormat": "Closed \u00e2\u0080\u00a2 Available at 10:00 AM", + "accessibilityText": "Closed, Available at 10:00 AM" + }, + "subtitle2Badge": { + "text": "Tap for hours, info, and more", + "textFormat": "Tap for hours, info, and more", + "accessibilityText": "Double tap for hours, address, and more" + }, + "startImageUrl": "" + }, + "storeAvailablityStatus": { + "state": "STORE_CLOSED", + "displayMessage": "", + "displayIconUrl": "" + }, + "groupOrderingConfig": { + "isAvailable": true, + "groupOrderSizes": [], + "billSplitConfig": { + "SplitBySubtotalInfo": { + "isHidden": false, + "isDisabled": false, + "subtitle": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Up to 18 people", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_SECONDARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ] + } + } + }, + "recommendationsConfig": { + "recommendedGroupSize": 15 + } + }, + "assistanceProgramSections": null + }, + "hours": [ + { + "dayRange": "Sunday", + "sectionHours": [ + { + "startTime": 600, + "endTime": 1290, + "sectionTitle": "" + } + ] + }, + { + "dayRange": "Monday - Friday", + "sectionHours": [ + { + "startTime": 600, + "endTime": 1260, + "sectionTitle": "" + } + ] + }, + { + "dayRange": "Saturday", + "sectionHours": [ + { + "startTime": 600, + "endTime": 1290, + "sectionTitle": "" + } + ] + } + ], + "categories": [ + "\u00e2\u0082\u00ac", + "Chinese", + "Asian", + "Seafood" + ], + "categoryLinks": [ + { + "text": "Chinese", + "link": "/category/atlanta-ga/chinese" + }, + { + "text": "Asian", + "link": "/category/atlanta-ga/asian" + }, + { + "text": "Seafood", + "link": "/category/atlanta-ga/seafood" + } + ], + "priceBucket": "\u00e2\u0082\u00ac", + "modalityInfo": { + "modalityOptions": [ + { + "title": "Delivery", + "subtitle": "Too far to deliver", + "diningMode": "DELIVERY", + "isDisabled": false + }, + { + "title": "Pickup", + "subtitle": "5 min", + "diningMode": "PICKUP", + "isDisabled": false, + "priceTitleRichText": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$0.00", + "font": { + "style": "LABEL_X_SMALL", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ] + }, + "priceSubtitleRichText": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Pricing & fees", + "font": { + "style": "PARAGRAPH_X_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_TERTIARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ] + }, + "etaTitleRichText": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Closed", + "font": { + "style": "LABEL_X_SMALL", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ] + }, + "etaSubtitleRichText": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Pickup time", + "font": { + "style": "PARAGRAPH_X_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_TERTIARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ] + } + }, + { + "title": "Dine-in", + "subtitle": "5 min", + "diningMode": "DINE_IN", + "isDisabled": false + } + ], + "selectedOption": "PICKUP" + }, + "tags": [ + "Excellent quality", + "Travels well", + "Hot" + ], + "meta": { + "sectionHoursInfo": [ + { + "dayRange": "Sunday", + "sectionHours": [ + { + "startTime": 600, + "endTime": 1290 + } + ] + }, + { + "dayRange": "Monday - Friday", + "sectionHours": [ + { + "startTime": 600, + "endTime": 1260 + } + ] + }, + { + "dayRange": "Saturday", + "sectionHours": [ + { + "startTime": 600, + "endTime": 1290 + } + ] + } + ] + }, + "metaJson": "{\"@context\":\"https:\\u002F\\u002Fschema.org\",\"@type\":\"Restaurant\",\"@id\":\"https:\\u002F\\u002Fwww.ubereats.com\\u002Fstore\\u002Fchina-kitchen\\u002FAhLIMBhFQdKqBmx4v7lzFQ\",\"name\":\"China Kitchen\",\"servesCuisine\":[\"Chinese\",\"Asian\",\"Seafood\"],\"priceRange\":\"\u00e2\u0082\u00ac\",\"image\":[\"https:\\u002F\\u002Ftb-static.uber.com\\u002Fprod\\u002Fimage-proc\\u002Fprocessed_images\\u002F13c7cd6942fe35f07289aa9dc2848411\\u002Ff6deb0afc24fee6f4bd31a35e6bcbd47.jpeg\",\"https:\\u002F\\u002Ftb-static.uber.com\\u002Fprod\\u002Fimage-proc\\u002Fprocessed_images\\u002F13c7cd6942fe35f07289aa9dc2848411\\u002F9b3aae4cf90f897799a5ed357d60e09d.jpeg\",\"https:\\u002F\\u002Ftb-static.uber.com\\u002Fprod\\u002Fimage-proc\\u002Fprocessed_images\\u002F13c7cd6942fe35f07289aa9dc2848411\\u002Ffdf52d66534809b650058f41d517d74a.jpeg\",\"https:\\u002F\\u002Ftb-static.uber.com\\u002Fprod\\u002Fimage-proc\\u002Fprocessed_images\\u002F13c7cd6942fe35f07289aa9dc2848411\\u002F8a42ee7a692dfa4155879820804a277f.jpeg\",\"https:\\u002F\\u002Ftb-static.uber.com\\u002Fprod\\u002Fimage-proc\\u002Fprocessed_images\\u002F13c7cd6942fe35f07289aa9dc2848411\\u002F783282f6131ef2258e5bcd87c46aa87e.jpeg\",\"https:\\u002F\\u002Ftb-static.uber.com\\u002Fprod\\u002Fimage-proc\\u002Fprocessed_images\\u002F13c7cd6942fe35f07289aa9dc2848411\\u002Ffb86662148be855d931b37d6c1e5fcbe.jpeg\"],\"potentialAction\":{\"@type\":\"OrderAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\u002F\\u002Fwww.ubereats.com\\u002Fstore\\u002Fchina-kitchen\\u002FAhLIMBhFQdKqBmx4v7lzFQ?utm_campaign=order-action&utm_medium=organic\",\"inLanguage\":\"English\",\"actionPlatform\":[\"https:\\u002F\\u002Fschema.org\\u002FDesktopWebPlatform\",\"https:\\u002F\\u002Fschema.org\\u002FMobileWebPlatform\"]},\"deliveryMethod\":[\"http:\\u002F\\u002Fpurl.org\\u002Fgoodrelations\\u002Fv1#DeliveryModeOwnFleet\",\"http:\\u002F\\u002Fpurl.org\\u002Fgoodrelations\\u002Fv1#DeliveryModePickUp\"]},\"address\":{\"@type\":\"PostalAddress\",\"addressLocality\":\"Chamblee\",\"addressRegion\":\"GA\",\"postalCode\":\"30341\",\"addressCountry\":\"US\",\"streetAddress\":\"5385 New Peachtree Rd\"},\"geo\":{\"@type\":\"GeoCoordinates\",\"latitude\":33.8906476,\"longitude\":-84.2996487},\"telephone\":\"+16788602777\",\"aggregateRating\":{\"@type\":\"AggregateRating\",\"ratingValue\":4.4,\"reviewCount\":\"380\"},\"openingHoursSpecification\":[{\"@type\":\"OpeningHoursSpecification\",\"dayOfWeek\":\"Sunday\",\"opens\":\"10:0\",\"closes\":\"21:30\"},{\"@type\":\"OpeningHoursSpecification\",\"dayOfWeek\":[\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\"],\"opens\":\"10:0\",\"closes\":\"21:0\"},{\"@type\":\"OpeningHoursSpecification\",\"dayOfWeek\":\"Saturday\",\"opens\":\"10:0\",\"closes\":\"21:30\"}],\"hasMenu\":{\"@type\":\"Menu\",\"hasMenuSection\":[{\"name\":\"Seafood Rice Noodle Soup\",\"hasMenuItem\":[{\"@type\":\"MenuItem\",\"name\":\"Crispy Salt Chicken\",\"description\":\"Crispy salt chicken typically includes marinated chicken that is deep-fried until crispy, served in a seafood rice noodle soup with a variety of seafood and vegetables.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"11.00\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Rice Hair Noodle\",\"description\":\"white rice hair noodle stirfry\\u002Fw . pork or chicken or beef or shrimp, your choice.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"9.75\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Smoked Tea Duck\",\"description\":\"Half.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"16.99\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Seafood Tofu\",\"description\":\"fish fillet,shirmp,and squid with vegetable brown sauce\\u002Fwith crispy soft tofu\",\"offers\":{\"@type\":\"Offer\",\"price\":\"13.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Braised Whole Fish\",\"description\":\"whole Tilapia braised with Sichuan spicy chili in brown sauce. spicy or no spicy your choice.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.98\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Spicy Whole Fish\",\"description\":\"Tilapia cooked with Sichun spicy sauce.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.00\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Tasty Flavor Beef\",\"description\":\"Rice noodles served in a savory broth, typically including tender slices of beef and select vegetables, garnished with scallions.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Hong Kong Style Shrimp\",\"description\":\"Spicy.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"11.75\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Chopped Chicken\",\"description\":\"With steamed bun.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.00\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Mala Tang\",\"description\":\"Fish filet, beef, fish ball, shrimp, quail egg, luncheon meat, tofu, ear mushroom, clear noodle, bokchoy, lotus root, and bamboo shoot. with special Sichuan chili sauce soup .$15.48 for one person;$20.45 for two person.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"15.48\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Tasty Flavor Lamb\",\"description\":\"Tender lamb pieces with broccoli, bell peppers, and onions in a savory sauce.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"13.49\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"grilled fish(two fish)\",\"description\":\"two Tilapia cook with sprcial Sichun spicy sauce(home made) with vegetable $19.58+$2.00 tray fee)\",\"offers\":{\"@type\":\"Offer\",\"price\":\"21.58\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Grilled fish(one fish)\",\"description\":\"Tilapia cooked with vege and special Sichuan spicy sauce(home made); one fish $14.98+$2.00 tray;two fish $16.98+$2.00tray\",\"offers\":{\"@type\":\"Offer\",\"price\":\"16.98\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"rice noodle soup with seafood.\",\"description\":\"Rice noodles served in a light broth, typically includes a variety of seafood such as shrimp, scallops, and squid, accompanied by mixed vegetables.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.99\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Twice Cooked Pork\",\"description\":\"Pork belly. \\u002F Spicy.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.00\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Sizzling Pork Kidney\",\"description\":\"Spicy.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"11.95\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Spicy Chicken\",\"description\":\"Spicy.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Pan Fried Noodles\",\"description\":\"Pan-fried noodles 1) with beef, chicken, shrimp; pan-fried noodles 2) with fish, shrimp, squid; pan-fried noodles 3)with vegetables. all your choice.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Traditional Kung Pao Chicken\",\"description\":\"Spicy. No vegetable, add vegetable your choice.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"11.95\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Hunan Style Fish\",\"description\":\"Steamed boneless swain whole fish filet\\u002Fw spicy home sauce.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"11.45\",\"priceCurrency\":\"USD\"}}]},{\"name\":\"Appetizers\",\"hasMenuItem\":[{\"@type\":\"MenuItem\",\"name\":\"Spicy Master Dumpling\",\"description\":\"Twelve pieces.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.79\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Shanghai Soup Dumpling\",\"description\":\"Eight pieces.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"10.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Veg Spring Rolls\",\"description\":\"Spicy. Four pieces.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"4.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Wonton Soup\",\"description\":\"Eight pieces.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"10.00\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Pan Fried Dumpling\",\"description\":\"Twelve pieces.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.80\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Chili Oil Wonton\",\"description\":\"Spicy. Twelve pieces.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"11.99\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Sesame Balls\",\"description\":\"Eight pieces.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"7.98\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"chinese beef burritos\",\"description\":\"Chinese beef burritos typically include thinly sliced beef, scallions, cilantro, and a hoisin sauce, wrapped in a soft, flour tortilla.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"11.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"steamed pork dumpling\",\"description\":\"Twelve pieces.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.75\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Chinese fritters(one)\",\"description\":\"A single Chinese fritter, typically consisting of a variety of vegetables and sometimes meat, coated in a light batter and deep-fried until golden.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"2.00\",\"priceCurrency\":\"USD\"}}]},{\"name\":\"Noodles & Fried Rice\",\"hasMenuItem\":[{\"@type\":\"MenuItem\",\"name\":\"Shrimp lo Mein\",\"description\":\"Succulent shrimp tossed with traditional Lo Mein noodles and vegetables\",\"offers\":{\"@type\":\"Offer\",\"price\":\"9.95\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Fish with Sour Veg Noodle Soup\",\"description\":\"Noodle soup featuring fish and sour vegetables, typically includes a broth enriched with sour pickled vegetables and tender fish slices, complemented by noodles.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"9.99\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Spicy Beef Noodle soup\",\"description\":\"Spicy. Beef noodle soup. when you pick up the oder, we provide separated noodle and soup in different container to you .\",\"offers\":{\"@type\":\"Offer\",\"price\":\"10.45\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Fried Rice with pork\",\"description\":\"Stir-fried jasmine rice with sliced pork, typically includes egg, peas, carrots, and green onions for a well-rounded flavor.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"9.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Fried Rice with Shrimp\",\"description\":\"Stir-fried rice with shrimp, typically includes egg, peas, carrots, and green onions.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"9.95\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Chicken lo Mein\",\"description\":\"Tender chicken strips stir-fried with soft lo mein noodles and savory sauce.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"9.95\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Rice Noodle with pork\",\"description\":\"hair rice noodle with bean sprouts with pork, shrimp, chicken. your choice.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"9.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Fried Rice with Chicken, Beef, & Shrimp\",\"description\":\"Jasmine rice stir-fried with soy sauce, eggs, peas, carrots, green onions, and a mix of chicken, beef, and shrimp.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"9.95\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Rice Noodle with Beef\",\"description\":\"\",\"offers\":{\"@type\":\"Offer\",\"price\":\"9.95\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Rice Noodle with Chicken, Beef, & Shrimp\",\"description\":\"fat rice noodles stirfry with chicken\",\"offers\":{\"@type\":\"Offer\",\"price\":\"9.95\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Fat rice noodles with shirmp\",\"description\":\"Fat rice noodles with shrimp typically include stir-fried wide noodles with shrimp, accompanied by vegetables such as bean sprouts, onions, and scallions in a savory sauce.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"9.95\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Beef lo Mein\",\"description\":\"\",\"offers\":{\"@type\":\"Offer\",\"price\":\"9.95\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Old Beijing Style Dry Noodle\",\"description\":\"Spicy.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"9.95\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Fried Rice with Beef\",\"description\":\"Jasmine rice stir-fried with slices of beef, typically includes egg, peas, and green onions.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"9.95\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Lomein with Chicken, Beef and Shrimp\",\"description\":\"Stir-fried soft noodles with chicken, beef, and shrimp, typically include vegetables such as cabbage, carrots, and onions in a savory sauce.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"9.50\",\"priceCurrency\":\"USD\"}}]},{\"name\":\"Hot Pot\",\"hasMenuItem\":[{\"@type\":\"MenuItem\",\"name\":\"Seafood Hot Pot\",\"description\":\"Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, and zucchini.y.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"13.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Lamb Hot Pot\",\"description\":\"Clear noodle, napa, ear mushroom, bean curd, carrot, and zucchini.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"14.99\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Vegetable Hot Pot\",\"description\":\"Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, and zucchini.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"13.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Beef Steak hot pot\",\"description\":\"Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, and zucchini.le.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"14.45\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Chicken Hot Pot\",\"description\":\"Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, and zucchini.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"13.99\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"pork belly hot pot\",\"description\":\"Clear noodle, napa, ear mushroom, bean curd, carrot, and zucchini.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"13.99\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Large Srhimp Hot Pot\",\"description\":\"Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, and zucchini.y.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"14.00\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"pork intestine with beef soup\",\"description\":\"Pork intestine and beef soup in a hot pot typically includes a rich broth, tender pork intestines, and beef, complemented by a variety of vegetables and tofu for a hearty meal.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"15.99\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Bee Stew Hot Pot Hot\",\"description\":\"Clear noodle, napa, ear mushroom, bean curd, carrot, and zucchini.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"14.45\",\"priceCurrency\":\"USD\"}}]},{\"name\":\"Dry Hot Pot\",\"hasMenuItem\":[{\"@type\":\"MenuItem\",\"name\":\"Seasoning Beef Dry Hot Pot\",\"description\":\"Spicy. String bean, lotus root, potato, broccoli, carrot, onion, green pepper, and bean sprout.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"14.75\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Seasoning Fish Dry Hot Pot\",\"description\":\"String bean, lotus root, potato, broccoli, carrot, onion, green pepper, and bean sprout with fish filet.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"14.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Seasoning Lamb Dry Hot Pot\",\"description\":\"Spicy. String bean, lotus root, potato, broccoli, carrot, onion, green pepper, and bean sprout.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"15.75\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Seasoning Large Shrimp Dry Hot Pot\",\"description\":\"String bean, lotus root, potato, broccoli, carrot, onion, green pepper, and celery with headless shrimp.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"14.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Seasoning Vegetable Dry Hot Pot\",\"description\":\"Spicy. String bean, lotus root, potato, broccoli, carrot, onion, green pepper, and bean sprout.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"14.50\",\"priceCurrency\":\"USD\"}}]},{\"name\":\"Clay Pot\",\"hasMenuItem\":[{\"@type\":\"MenuItem\",\"name\":\"Beef Clay Pot\",\"description\":\"Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, zucchini, and shanghai bok choi.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.45\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Lamb Clay Pot\",\"description\":\"Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, zucchini, and shanghai bok choi.y.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.75\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Tofu with Mixed Vegetable Clay Pot\",\"description\":\"Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, zucchini, and shanghai bok choi.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"11.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Seafood Clay Pot\",\"description\":\"Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, zucchini, and shanghai bok choi.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"11.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Chicken Clay Pot\",\"description\":\"Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, zucchini, and shanghai bok choi.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"11.50\",\"priceCurrency\":\"USD\"}}]},{\"name\":\"Pork\",\"hasMenuItem\":[{\"@type\":\"MenuItem\",\"name\":\"Spicy Chili Pepper with Shredded Pork\",\"description\":\"Spicy.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"11.99\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Shredded Pork with Bamboo Shoots\",\"description\":\"Spicy.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"11.99\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Eggplant with Ground Pork\",\"description\":\"Saut\u00c3\u00a9ed eggplant and ground pork, often accompanied by a blend of garlic and soy-based sauce.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"11.99\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Shredded Pork with Garlic Sauce\",\"description\":\"Spicy.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"11.99\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Savory Baked Tofu with Shredded Pork\",\"description\":\"Baked tofu combined with shredded pork, often prepared with a blend of savory seasonings and herbs to enhance the flavors.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"11.99\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Shredded Pork with Plum Sauce\",\"description\":\"Shredded pork typically saut\u00c3\u00a9ed with a blend of vegetables such as bamboo shoots, carrots, and onions, all enveloped in a sweet and tangy plum sauce.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"pork intestine with vegetable and brown sauce.\",\"description\":\"Pork intestine stir-fried with a selection of vegetables, typically served in a rich brown sauce.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"13.99\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Sizzling Pork Kidney\",\"description\":\"Spicy.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Baked Tofu & Chives with Shredded Pork\",\"description\":\"Baked tofu and chives are combined with shredded pork, typically featuring a blend of spices and sauces to create a harmonious dish.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Twice Cooked Pork\",\"description\":\"Spicy. Pork belly.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.50\",\"priceCurrency\":\"USD\"}}]},{\"name\":\"Chicken\",\"hasMenuItem\":[{\"@type\":\"MenuItem\",\"name\":\"Spicy Chicken\",\"description\":\"Spicy.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"General Tso's Chicken\",\"description\":\"Spicy.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"11.99\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Sesame Chicken\",\"description\":\"Crispy chicken pieces coated in a rich, savory sauce, topped with sesame seeds and served with a side of steamed broccoli.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"11.99\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Chicken Broccoli\",\"description\":\"Sliced chicken breast stir-fried with fresh broccoli, typically includes a savory brown sauce.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Orange Chicken\",\"description\":\"Spicy.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"11.99\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Mongolian Chicken\",\"description\":\"Crispy slices of chicken stir fried in a sweet and savory sauce\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Crispy Chicken with Garlic Sauce\",\"description\":\"Crispy fried chicken pieces paired with fresh broccoli, drizzled with a savory garlic sauce.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"11.99\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Big Plate Chicken\",\"description\":\"Spicy.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"11.99\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Kung Pao Chicken\",\"description\":\"Spicy. \\u002F .\",\"offers\":{\"@type\":\"Offer\",\"price\":\"11.99\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Sliced Chicken with Garlic Sauce\",\"description\":\"Spicy.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Hunan Chicken\",\"description\":\"Spicy.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Chopped Chicken\",\"description\":\"Spicy. With preserved vegetable.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.75\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Sweet & Sour Chicken\",\"description\":\"Crispy chicken coated in a tangy sweet-and-sour sauce.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"11.99\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Basil Chicken\",\"description\":\"Taste sweet, cook with basil.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.75\",\"priceCurrency\":\"USD\"}}]},{\"name\":\"Beef & Lamb\",\"hasMenuItem\":[{\"@type\":\"MenuItem\",\"name\":\"Beef Stew\",\"description\":\"Spicy. With style potato.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Spicy Beef\",\"description\":\"Spicy.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.75\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Cumin Beef\",\"description\":\"Spicy.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"pepper steak\",\"description\":\"sliced beef with green pepper and onion with black bean sauce\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.75\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Savory Lamb\",\"description\":\"Tender slices of lamb saut\u00c3\u00a9ed with a blend of traditional Chinese spices, often accompanied by a savory sauce.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"13.99\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Savory Beef\",\"description\":\"Spicy.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.99\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Mongolian Beef\",\"description\":\"Sizzling Mongolian beef, stir-fried with onions and peppers in a savory sauce.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Beef with Broccoli\",\"description\":\"Tender beef sauteed with fresh broccoli\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Cumin Lamb\",\"description\":\"Spicy.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"13.99\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Beef Stew with House Style Potato\",\"description\":\"Slow-cooked beef stew with house style potatoes, typically includes a mix of aromatic herbs and spices in a rich, savory sauce.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Sizzling Plate Beef\",\"description\":\"Sizzling plate beef typically includes tender slices of beef saut\u00c3\u00a9ed with a mix of vegetables such as onions and bell peppers, served in a special sauce on a hot plate.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Mongolian Lamb\",\"description\":\"Tender strips of lamb in a delicious sweet-savory sauce\",\"offers\":{\"@type\":\"Offer\",\"price\":\"13.99\",\"priceCurrency\":\"USD\"}}]},{\"name\":\"Vegetables\",\"hasMenuItem\":[{\"@type\":\"MenuItem\",\"name\":\"Mapo Tofu\",\"description\":\"Spicy.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"9.99\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Scramble Egg with Tomato\",\"description\":\"Eggs are scrambled and combined with fresh tomatoes, creating a simple yet classic dish.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"9.95\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"String Bean\",\"description\":\"With garlic.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"9.90\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Shredded Potato\",\"description\":\"Spicy. With spicy sour sauce.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"9.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Shanghai Bok Choy with Mushroom\",\"description\":\"Shanghai bok choy and mushrooms, stir-fried, typically includes a savory sauce.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"9.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Eggplant with Spicy Garlic Sauce\",\"description\":\"Spicy.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"10.95\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Taiwan Cabbage with Oyster Sauce\",\"description\":\"Taiwanese cabbage stir-fried and coated in a savory oyster sauce, often accompanied by hints of garlic for added flavor.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"9.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Basil Eggplant\",\"description\":\"Eggplant and basil stir-fried in a seasoned soy sauce, typically includes a blend of traditional Chinese spices.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"10.95\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Celery with Cashew\",\"description\":\"Celery and cashew nuts stir-fried together, typically includes a mix of sauces for a savory taste.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"9.99\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Eggplant with Brown Sauce\",\"description\":\"A couple of whole eggplant special cook with brown sauce.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"9.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Shredded Potato with Spicy Green Pepper\",\"description\":\"Spicy.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"9.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Home Style Spicy Bean Curd\",\"description\":\"Spicy.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"9.95\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Braised Bean Curd\",\"description\":\"With vegetable and spicy sauce or with vegetable and brown sauce.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"9.95\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Saut\u00c3\u00a9ed Pepper Bean Curd\",\"description\":\"Saut\u00c3\u00a9ed bean curd with peppers, typically includes tofu stir-fried with a variety of bell peppers.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"9.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Green Pepper & Potato\",\"description\":\"With eggplant.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"10.95\",\"priceCurrency\":\"USD\"}}]},{\"name\":\"Seafood\",\"hasMenuItem\":[{\"@type\":\"MenuItem\",\"name\":\"Hong Kong Style Shrimp\",\"description\":\"Spicy.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"13.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Seafood With fried tofu\",\"description\":\"With fried tofu.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.99\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Pan Fried Noodle With seafood\",\"description\":\"With seafood.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.99\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Ginger Scallion Shrimp\",\"description\":\"Shrimp stir-fried with fresh ginger and scallions, typically includes a savory sauce to highlight the ingredients.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.75\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Hunan Style Shrimp\",\"description\":\"Spicy and sweet chili sauce with big shirmp\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.95\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Spicy Fish\",\"description\":\"Spicy.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Cashew With shrimp\",\"description\":\"With shrimp.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Black Bean Sauce with Whole Fish\",\"description\":\"whole fish with black bean sauce\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Fish Fillet With vegetable\",\"description\":\"With vegetable and white sauce\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Steamed Fish\",\"description\":\"Tender steamed fish fillets garnished with julienned carrots, fresh cilantro, and a savory soy-based sauce.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Spicy Fish with Bean Sprouts & Clear Noodle\",\"description\":\"Spicy.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"11.99\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Sweet & Sour Whole Fish\",\"description\":\"Whole fish, deep-fried and accompanied by a tangy sweet and sour sauce, typically includes pineapple, bell peppers, and onions.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Malatang\",\"description\":\"Sichuan style spicy soup: fish filet, beef,fish ball,luncheon loaf,mushroom,bokchoy,quail eggs,clear noodle,napa,lotusroot,bamboo shoots,tofu...for: one person:$16.00; for two person:$22.75\",\"offers\":{\"@type\":\"Offer\",\"price\":\"16.95\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Braised Whole Fish\",\"description\":\"Whole tilapia braised with vege in brown sauce. spicy or no spicy your choice.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Sichuan chili sauce with Whole Fish\",\"description\":\"Spicy.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.50\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Fish with sour & salt vegetable soup\",\"description\":\"fish with salt & sour vegetable soup.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"12.95\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Salt & Pepper Shrimp\",\"description\":\"Shrimp deep-fried and seasoned with salt and pepper, typically includes onions and green scallions.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"13.75\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Salt peper Squid\",\"description\":\"Lightly battered squid, seasoned with salt and pepper, and typically includes onions and chillies for a spicy touch.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"13.55\",\"priceCurrency\":\"USD\"}},{\"@type\":\"MenuItem\",\"name\":\"Malatang\",\"description\":\"for two person: fish filet,beef, fish ball, luncheon meat,tofu, mushroom, clear noodle,bochoy,lotusroot, bamboo shoots...\",\"offers\":{\"@type\":\"Offer\",\"price\":\"23.95\",\"priceCurrency\":\"USD\"}}]},{\"name\":\"Malatang\",\"hasMenuItem\":[{\"@type\":\"MenuItem\",\"name\":\"grilled fish for two person\",\"description\":\"two whole grilled fish with vegetable and sauce.\",\"offers\":{\"@type\":\"Offer\",\"price\":\"22.75\",\"priceCurrency\":\"USD\"}}]}]}}", + "shouldIndex": true, + "isOpen": true, + "isPreview": false, + "closedMessage": "Opens at 10:00 AM", + "sectionEntitiesMap": {}, + "sections": [ + { + "subsectionUuids": [ + "239de873-4e2d-55fc-9dc2-d398a68673e2", + "c55d2f6b-7a7b-45d4-9cc7-4bfd9c576caf", + "dc9faa0b-def8-589b-8775-16a5229ca531", + "44b65255-1e62-4c64-b07e-85e68a2758ea", + "4b983dd6-765a-414d-8343-e25107891fc0", + "487ca40c-581c-4f54-806f-f4148b2c19c1", + "f1a8f89b-a68a-47ed-86fc-cc78d6045d25", + "0ff9d928-99ec-4c80-a7cd-91d5a6b986cb", + "287c5f45-607c-59ee-845a-2e5f73e8e0f9", + "f52f089e-c14c-4c14-a30b-5b42dae18f83", + "02fc44b6-0da9-460f-ae56-f0b5f12ab5bd", + "017a5d2c-88c7-5f1e-8c5e-d8bf76ac5d12" + ], + "title": "All Day", + "subtitle": "10:00 AM \u00e2\u0080\u0093 9:00 PM", + "uuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "isTop": true, + "isOnSale": true + } + ], + "subsectionsMap": {}, + "sanitizedTitle": "China Kitchen", + "cityId": 23, + "cuisineList": [ + "Chinese", + "Asian", + "Seafood" + ], + "disclaimerBadge": null, + "distanceBadge": { + "text": "16,012.2 KM", + "accessibilityText": "16,012.2 kilometers" + }, + "fareInfo": { + "serviceFeeCents": null + }, + "promotion": null, + "isDeliveryBandwagon": false, + "disableOrderInstruction": true, + "disableCheckoutInstruction": false, + "nuggets": [], + "isWithinDeliveryRange": true, + "phoneNumber": "+16788602777", + "promoTrackings": [], + "suggestedPromotion": { + "text": "", + "promotionUuid": "" + }, + "supportedDiningModes": [ + { + "mode": "DELIVERY", + "title": "Delivery", + "isAvailable": true, + "isSelected": false + }, + { + "mode": "PICKUP", + "title": "Pickup", + "isAvailable": true, + "isSelected": true + }, + { + "mode": "DINE_IN", + "title": "Dine-in", + "isAvailable": true, + "isSelected": false + } + ], + "isFavorite": false, + "isLost": false, + "onboardingStatusUpdatedAt": "2023-09-14T13:57:52.470Z", + "menuDisplayType": "STANDARD", + "specialInstructionHintText": "Add a note", + "fulfillmentIssueOptions": {}, + "shouldRenderAllItems": true, + "shouldVirtualizeOFDCatalogItems": false, + "adaptedDeliveryHoursInfos": { + "dates": [ + "2025-03-11", + "2025-03-12", + "2025-03-13", + "2025-03-14", + "2025-03-15", + "2025-03-16", + "2025-03-17" + ], + "timeRanges": { + "2025-03-11": [ + { + "startTime": 630, + "endTime": 660 + }, + { + "startTime": 645, + "endTime": 675 + }, + { + "startTime": 660, + "endTime": 690 + }, + { + "startTime": 675, + "endTime": 705 + }, + { + "startTime": 690, + "endTime": 720 + }, + { + "startTime": 705, + "endTime": 735 + }, + { + "startTime": 720, + "endTime": 750 + }, + { + "startTime": 735, + "endTime": 765 + }, + { + "startTime": 750, + "endTime": 780 + }, + { + "startTime": 765, + "endTime": 795 + }, + { + "startTime": 780, + "endTime": 810 + }, + { + "startTime": 795, + "endTime": 825 + }, + { + "startTime": 810, + "endTime": 840 + }, + { + "startTime": 825, + "endTime": 855 + }, + { + "startTime": 840, + "endTime": 870 + }, + { + "startTime": 855, + "endTime": 885 + }, + { + "startTime": 870, + "endTime": 900 + }, + { + "startTime": 885, + "endTime": 915 + }, + { + "startTime": 900, + "endTime": 930 + }, + { + "startTime": 915, + "endTime": 945 + }, + { + "startTime": 930, + "endTime": 960 + }, + { + "startTime": 945, + "endTime": 975 + }, + { + "startTime": 960, + "endTime": 990 + }, + { + "startTime": 975, + "endTime": 1005 + }, + { + "startTime": 990, + "endTime": 1020 + }, + { + "startTime": 1005, + "endTime": 1035 + }, + { + "startTime": 1020, + "endTime": 1050 + }, + { + "startTime": 1035, + "endTime": 1065 + }, + { + "startTime": 1050, + "endTime": 1080 + }, + { + "startTime": 1065, + "endTime": 1095 + }, + { + "startTime": 1080, + "endTime": 1110 + }, + { + "startTime": 1095, + "endTime": 1125 + }, + { + "startTime": 1110, + "endTime": 1140 + }, + { + "startTime": 1125, + "endTime": 1155 + }, + { + "startTime": 1140, + "endTime": 1170 + }, + { + "startTime": 1155, + "endTime": 1185 + }, + { + "startTime": 1170, + "endTime": 1200 + }, + { + "startTime": 1185, + "endTime": 1215 + }, + { + "startTime": 1200, + "endTime": 1230 + }, + { + "startTime": 1215, + "endTime": 1245 + }, + { + "startTime": 1230, + "endTime": 1260 + } + ], + "2025-03-12": [ + { + "startTime": 630, + "endTime": 660 + }, + { + "startTime": 645, + "endTime": 675 + }, + { + "startTime": 660, + "endTime": 690 + }, + { + "startTime": 675, + "endTime": 705 + }, + { + "startTime": 690, + "endTime": 720 + }, + { + "startTime": 705, + "endTime": 735 + }, + { + "startTime": 720, + "endTime": 750 + }, + { + "startTime": 735, + "endTime": 765 + }, + { + "startTime": 750, + "endTime": 780 + }, + { + "startTime": 765, + "endTime": 795 + }, + { + "startTime": 780, + "endTime": 810 + }, + { + "startTime": 795, + "endTime": 825 + }, + { + "startTime": 810, + "endTime": 840 + }, + { + "startTime": 825, + "endTime": 855 + }, + { + "startTime": 840, + "endTime": 870 + }, + { + "startTime": 855, + "endTime": 885 + }, + { + "startTime": 870, + "endTime": 900 + }, + { + "startTime": 885, + "endTime": 915 + }, + { + "startTime": 900, + "endTime": 930 + }, + { + "startTime": 915, + "endTime": 945 + }, + { + "startTime": 930, + "endTime": 960 + }, + { + "startTime": 945, + "endTime": 975 + }, + { + "startTime": 960, + "endTime": 990 + }, + { + "startTime": 975, + "endTime": 1005 + }, + { + "startTime": 990, + "endTime": 1020 + }, + { + "startTime": 1005, + "endTime": 1035 + }, + { + "startTime": 1020, + "endTime": 1050 + }, + { + "startTime": 1035, + "endTime": 1065 + }, + { + "startTime": 1050, + "endTime": 1080 + }, + { + "startTime": 1065, + "endTime": 1095 + }, + { + "startTime": 1080, + "endTime": 1110 + }, + { + "startTime": 1095, + "endTime": 1125 + }, + { + "startTime": 1110, + "endTime": 1140 + }, + { + "startTime": 1125, + "endTime": 1155 + }, + { + "startTime": 1140, + "endTime": 1170 + }, + { + "startTime": 1155, + "endTime": 1185 + }, + { + "startTime": 1170, + "endTime": 1200 + }, + { + "startTime": 1185, + "endTime": 1215 + }, + { + "startTime": 1200, + "endTime": 1230 + }, + { + "startTime": 1215, + "endTime": 1245 + }, + { + "startTime": 1230, + "endTime": 1260 + } + ], + "2025-03-13": [ + { + "startTime": 630, + "endTime": 660 + }, + { + "startTime": 645, + "endTime": 675 + }, + { + "startTime": 660, + "endTime": 690 + }, + { + "startTime": 675, + "endTime": 705 + }, + { + "startTime": 690, + "endTime": 720 + }, + { + "startTime": 705, + "endTime": 735 + }, + { + "startTime": 720, + "endTime": 750 + }, + { + "startTime": 735, + "endTime": 765 + }, + { + "startTime": 750, + "endTime": 780 + }, + { + "startTime": 765, + "endTime": 795 + }, + { + "startTime": 780, + "endTime": 810 + }, + { + "startTime": 795, + "endTime": 825 + }, + { + "startTime": 810, + "endTime": 840 + }, + { + "startTime": 825, + "endTime": 855 + }, + { + "startTime": 840, + "endTime": 870 + }, + { + "startTime": 855, + "endTime": 885 + }, + { + "startTime": 870, + "endTime": 900 + }, + { + "startTime": 885, + "endTime": 915 + }, + { + "startTime": 900, + "endTime": 930 + }, + { + "startTime": 915, + "endTime": 945 + }, + { + "startTime": 930, + "endTime": 960 + }, + { + "startTime": 945, + "endTime": 975 + }, + { + "startTime": 960, + "endTime": 990 + }, + { + "startTime": 975, + "endTime": 1005 + }, + { + "startTime": 990, + "endTime": 1020 + }, + { + "startTime": 1005, + "endTime": 1035 + }, + { + "startTime": 1020, + "endTime": 1050 + }, + { + "startTime": 1035, + "endTime": 1065 + }, + { + "startTime": 1050, + "endTime": 1080 + }, + { + "startTime": 1065, + "endTime": 1095 + }, + { + "startTime": 1080, + "endTime": 1110 + }, + { + "startTime": 1095, + "endTime": 1125 + }, + { + "startTime": 1110, + "endTime": 1140 + }, + { + "startTime": 1125, + "endTime": 1155 + }, + { + "startTime": 1140, + "endTime": 1170 + }, + { + "startTime": 1155, + "endTime": 1185 + }, + { + "startTime": 1170, + "endTime": 1200 + }, + { + "startTime": 1185, + "endTime": 1215 + }, + { + "startTime": 1200, + "endTime": 1230 + }, + { + "startTime": 1215, + "endTime": 1245 + }, + { + "startTime": 1230, + "endTime": 1260 + } + ], + "2025-03-14": [ + { + "startTime": 630, + "endTime": 660 + }, + { + "startTime": 645, + "endTime": 675 + }, + { + "startTime": 660, + "endTime": 690 + }, + { + "startTime": 675, + "endTime": 705 + }, + { + "startTime": 690, + "endTime": 720 + }, + { + "startTime": 705, + "endTime": 735 + }, + { + "startTime": 720, + "endTime": 750 + }, + { + "startTime": 735, + "endTime": 765 + }, + { + "startTime": 750, + "endTime": 780 + }, + { + "startTime": 765, + "endTime": 795 + }, + { + "startTime": 780, + "endTime": 810 + }, + { + "startTime": 795, + "endTime": 825 + }, + { + "startTime": 810, + "endTime": 840 + }, + { + "startTime": 825, + "endTime": 855 + }, + { + "startTime": 840, + "endTime": 870 + }, + { + "startTime": 855, + "endTime": 885 + }, + { + "startTime": 870, + "endTime": 900 + }, + { + "startTime": 885, + "endTime": 915 + }, + { + "startTime": 900, + "endTime": 930 + }, + { + "startTime": 915, + "endTime": 945 + }, + { + "startTime": 930, + "endTime": 960 + }, + { + "startTime": 945, + "endTime": 975 + }, + { + "startTime": 960, + "endTime": 990 + }, + { + "startTime": 975, + "endTime": 1005 + }, + { + "startTime": 990, + "endTime": 1020 + }, + { + "startTime": 1005, + "endTime": 1035 + }, + { + "startTime": 1020, + "endTime": 1050 + }, + { + "startTime": 1035, + "endTime": 1065 + }, + { + "startTime": 1050, + "endTime": 1080 + }, + { + "startTime": 1065, + "endTime": 1095 + }, + { + "startTime": 1080, + "endTime": 1110 + }, + { + "startTime": 1095, + "endTime": 1125 + }, + { + "startTime": 1110, + "endTime": 1140 + }, + { + "startTime": 1125, + "endTime": 1155 + }, + { + "startTime": 1140, + "endTime": 1170 + }, + { + "startTime": 1155, + "endTime": 1185 + }, + { + "startTime": 1170, + "endTime": 1200 + }, + { + "startTime": 1185, + "endTime": 1215 + }, + { + "startTime": 1200, + "endTime": 1230 + }, + { + "startTime": 1215, + "endTime": 1245 + }, + { + "startTime": 1230, + "endTime": 1260 + } + ], + "2025-03-15": [ + { + "startTime": 630, + "endTime": 660 + }, + { + "startTime": 645, + "endTime": 675 + }, + { + "startTime": 660, + "endTime": 690 + }, + { + "startTime": 675, + "endTime": 705 + }, + { + "startTime": 690, + "endTime": 720 + }, + { + "startTime": 705, + "endTime": 735 + }, + { + "startTime": 720, + "endTime": 750 + }, + { + "startTime": 735, + "endTime": 765 + }, + { + "startTime": 750, + "endTime": 780 + }, + { + "startTime": 765, + "endTime": 795 + }, + { + "startTime": 780, + "endTime": 810 + }, + { + "startTime": 795, + "endTime": 825 + }, + { + "startTime": 810, + "endTime": 840 + }, + { + "startTime": 825, + "endTime": 855 + }, + { + "startTime": 840, + "endTime": 870 + }, + { + "startTime": 855, + "endTime": 885 + }, + { + "startTime": 870, + "endTime": 900 + }, + { + "startTime": 885, + "endTime": 915 + }, + { + "startTime": 900, + "endTime": 930 + }, + { + "startTime": 915, + "endTime": 945 + }, + { + "startTime": 930, + "endTime": 960 + }, + { + "startTime": 945, + "endTime": 975 + }, + { + "startTime": 960, + "endTime": 990 + }, + { + "startTime": 975, + "endTime": 1005 + }, + { + "startTime": 990, + "endTime": 1020 + }, + { + "startTime": 1005, + "endTime": 1035 + }, + { + "startTime": 1020, + "endTime": 1050 + }, + { + "startTime": 1035, + "endTime": 1065 + }, + { + "startTime": 1050, + "endTime": 1080 + }, + { + "startTime": 1065, + "endTime": 1095 + }, + { + "startTime": 1080, + "endTime": 1110 + }, + { + "startTime": 1095, + "endTime": 1125 + }, + { + "startTime": 1110, + "endTime": 1140 + }, + { + "startTime": 1125, + "endTime": 1155 + }, + { + "startTime": 1140, + "endTime": 1170 + }, + { + "startTime": 1155, + "endTime": 1185 + }, + { + "startTime": 1170, + "endTime": 1200 + }, + { + "startTime": 1185, + "endTime": 1215 + }, + { + "startTime": 1200, + "endTime": 1230 + }, + { + "startTime": 1215, + "endTime": 1245 + }, + { + "startTime": 1230, + "endTime": 1260 + }, + { + "startTime": 1245, + "endTime": 1275 + }, + { + "startTime": 1260, + "endTime": 1290 + } + ], + "2025-03-16": [ + { + "startTime": 630, + "endTime": 660 + }, + { + "startTime": 645, + "endTime": 675 + }, + { + "startTime": 660, + "endTime": 690 + }, + { + "startTime": 675, + "endTime": 705 + }, + { + "startTime": 690, + "endTime": 720 + }, + { + "startTime": 705, + "endTime": 735 + }, + { + "startTime": 720, + "endTime": 750 + }, + { + "startTime": 735, + "endTime": 765 + }, + { + "startTime": 750, + "endTime": 780 + }, + { + "startTime": 765, + "endTime": 795 + }, + { + "startTime": 780, + "endTime": 810 + }, + { + "startTime": 795, + "endTime": 825 + }, + { + "startTime": 810, + "endTime": 840 + }, + { + "startTime": 825, + "endTime": 855 + }, + { + "startTime": 840, + "endTime": 870 + }, + { + "startTime": 855, + "endTime": 885 + }, + { + "startTime": 870, + "endTime": 900 + }, + { + "startTime": 885, + "endTime": 915 + }, + { + "startTime": 900, + "endTime": 930 + }, + { + "startTime": 915, + "endTime": 945 + }, + { + "startTime": 930, + "endTime": 960 + }, + { + "startTime": 945, + "endTime": 975 + }, + { + "startTime": 960, + "endTime": 990 + }, + { + "startTime": 975, + "endTime": 1005 + }, + { + "startTime": 990, + "endTime": 1020 + }, + { + "startTime": 1005, + "endTime": 1035 + }, + { + "startTime": 1020, + "endTime": 1050 + }, + { + "startTime": 1035, + "endTime": 1065 + }, + { + "startTime": 1050, + "endTime": 1080 + }, + { + "startTime": 1065, + "endTime": 1095 + }, + { + "startTime": 1080, + "endTime": 1110 + }, + { + "startTime": 1095, + "endTime": 1125 + }, + { + "startTime": 1110, + "endTime": 1140 + }, + { + "startTime": 1125, + "endTime": 1155 + }, + { + "startTime": 1140, + "endTime": 1170 + }, + { + "startTime": 1155, + "endTime": 1185 + }, + { + "startTime": 1170, + "endTime": 1200 + }, + { + "startTime": 1185, + "endTime": 1215 + }, + { + "startTime": 1200, + "endTime": 1230 + }, + { + "startTime": 1215, + "endTime": 1245 + }, + { + "startTime": 1230, + "endTime": 1260 + }, + { + "startTime": 1245, + "endTime": 1275 + }, + { + "startTime": 1260, + "endTime": 1290 + } + ], + "2025-03-17": [ + { + "startTime": 630, + "endTime": 660 + }, + { + "startTime": 645, + "endTime": 675 + }, + { + "startTime": 660, + "endTime": 690 + }, + { + "startTime": 675, + "endTime": 705 + }, + { + "startTime": 690, + "endTime": 720 + }, + { + "startTime": 705, + "endTime": 735 + }, + { + "startTime": 720, + "endTime": 750 + }, + { + "startTime": 735, + "endTime": 765 + }, + { + "startTime": 750, + "endTime": 780 + }, + { + "startTime": 765, + "endTime": 795 + }, + { + "startTime": 780, + "endTime": 810 + }, + { + "startTime": 795, + "endTime": 825 + }, + { + "startTime": 810, + "endTime": 840 + }, + { + "startTime": 825, + "endTime": 855 + }, + { + "startTime": 840, + "endTime": 870 + }, + { + "startTime": 855, + "endTime": 885 + }, + { + "startTime": 870, + "endTime": 900 + }, + { + "startTime": 885, + "endTime": 915 + }, + { + "startTime": 900, + "endTime": 930 + }, + { + "startTime": 915, + "endTime": 945 + }, + { + "startTime": 930, + "endTime": 960 + }, + { + "startTime": 945, + "endTime": 975 + }, + { + "startTime": 960, + "endTime": 990 + }, + { + "startTime": 975, + "endTime": 1005 + }, + { + "startTime": 990, + "endTime": 1020 + }, + { + "startTime": 1005, + "endTime": 1035 + }, + { + "startTime": 1020, + "endTime": 1050 + }, + { + "startTime": 1035, + "endTime": 1065 + }, + { + "startTime": 1050, + "endTime": 1080 + }, + { + "startTime": 1065, + "endTime": 1095 + }, + { + "startTime": 1080, + "endTime": 1110 + }, + { + "startTime": 1095, + "endTime": 1125 + }, + { + "startTime": 1110, + "endTime": 1140 + }, + { + "startTime": 1125, + "endTime": 1155 + }, + { + "startTime": 1140, + "endTime": 1170 + }, + { + "startTime": 1155, + "endTime": 1185 + }, + { + "startTime": 1170, + "endTime": 1200 + }, + { + "startTime": 1185, + "endTime": 1215 + }, + { + "startTime": 1200, + "endTime": 1230 + }, + { + "startTime": 1215, + "endTime": 1245 + }, + { + "startTime": 1230, + "endTime": 1260 + } + ] + }, + "scheduledTimesAvailable": true + }, + "eaterConsent": null, + "orderForLaterInfo": { + "nextOpenTime": "2025-03-11T14:00:00.000Z", + "isSchedulable": true, + "bottomSheetTitleMessage": "Schedule order", + "bottomSheetSubtitleMessage": "This store is closed right now, but you can schedule an order for later.", + "bottomSheetPrimaryButtonMessage": "Schedule", + "bottomSheetPrimaryButtonAction": "SCHEDULE", + "bottomSheetSecondaryButtonMessage": "See store", + "bottomSheetSecondaryButtonAction": "DISMISS", + "determinedFromBackend": true, + "autoSurfaceBottomSheet": true + }, + "siteCustomizations": null, + "scheduledOrderInfo": { + "isSchedulable": true + }, + "storeReviews": [ + { + "reviewText": { + "text": "always delicious", + "textFormat": "always delicious" + }, + "source": "UNKNOWN", + "createdAt": "2024-11-19T00:00:00", + "eaterName": { + "text": "biao T.", + "textFormat": "biao T." + }, + "contentUUID": "62eff4a4-5393-4b76-b496-8f714b68af28", + "timeSinceReview": "4 months ago", + "avatarUrl": "/_static/d96375ed3fb7384c.svg", + "formattedDate": "11/19/24" + }, + { + "reviewText": { + "text": "Food very tasty, and the quantity was good.", + "textFormat": "Food very tasty, and the quantity was good." + }, + "source": "UNKNOWN", + "createdAt": "2024-09-20T00:00:00", + "eaterName": { + "text": "Kaysia G.", + "textFormat": "Kaysia G." + }, + "contentUUID": "7ec9c99f-303f-4c5d-9bd3-88bd56141e8c", + "timeSinceReview": "6 months ago", + "avatarUrl": "/_static/d590fac5df89924d.svg", + "formattedDate": "09/20/24" + }, + { + "reviewText": { + "text": "Perfect temp, good taste, quick service.", + "textFormat": "Perfect temp, good taste, quick service." + }, + "source": "UNKNOWN", + "createdAt": "2024-09-02T00:00:00", + "eaterName": { + "text": "Kasey L.", + "textFormat": "Kasey L." + }, + "contentUUID": "db7a70e3-92d5-4e6a-9487-c5401943996f", + "timeSinceReview": "6 months ago", + "avatarUrl": "/_static/9f716d4b83f1173e.svg", + "formattedDate": "09/02/24" + }, + { + "reviewText": { + "text": "Good food and fast delivery.", + "textFormat": "Good food and fast delivery." + }, + "source": "UNKNOWN", + "createdAt": "2024-05-21T00:00:00", + "eaterName": { + "text": "David B.", + "textFormat": "David B." + }, + "contentUUID": "88f908a6-450a-4b3c-9a03-b87e75bcb723", + "timeSinceReview": "10 months ago", + "avatarUrl": "/_static/544c3c3781e0db92.svg", + "formattedDate": "05/21/24" + }, + { + "reviewText": { + "text": "Perfect", + "textFormat": "Perfect" + }, + "source": "UNKNOWN", + "createdAt": "2024-05-08T00:00:00", + "eaterName": { + "text": "Jiecheng L.", + "textFormat": "Jiecheng L." + }, + "contentUUID": "1884ceb3-c71c-4fc7-aa7f-afa285b7a873", + "timeSinceReview": "10 months ago", + "avatarUrl": "/_static/544c3c3781e0db92.svg", + "formattedDate": "05/08/24" + }, + { + "reviewText": { + "text": "looooooooovvvvvve the spicy chicken it never disappoints.", + "textFormat": "looooooooovvvvvve the spicy chicken it never disappoints." + }, + "source": "UNKNOWN", + "createdAt": "2024-05-01T00:00:00", + "eaterName": { + "text": "HAMILTON A.", + "textFormat": "HAMILTON A." + }, + "contentUUID": "d70989be-65c3-4458-a3c4-f22ff80df8cc", + "timeSinceReview": "10 months ago", + "avatarUrl": "/_static/d590fac5df89924d.svg", + "formattedDate": "05/01/24" + }, + { + "reviewText": { + "text": "love the spicy chicken little nuggets of happiness", + "textFormat": "love the spicy chicken little nuggets of happiness" + }, + "source": "UNKNOWN", + "createdAt": "2024-04-07T00:00:00", + "eaterName": { + "text": "HAMILTON A.", + "textFormat": "HAMILTON A." + }, + "contentUUID": "125f9081-1c6d-4d0c-9aa7-587305db4ded", + "timeSinceReview": "11 months ago", + "avatarUrl": "/_static/9538c4f1cb0d524a.svg", + "formattedDate": "04/07/24" + }, + { + "reviewText": { + "text": "love the spicy chicken little bites of heaven", + "textFormat": "love the spicy chicken little bites of heaven" + }, + "source": "UNKNOWN", + "createdAt": "2024-03-18T00:00:00", + "eaterName": { + "text": "HAMILTON A.", + "textFormat": "HAMILTON A." + }, + "contentUUID": "fa896e04-0227-44d4-830b-34009498e51e", + "timeSinceReview": "12 months ago", + "avatarUrl": "/_static/544c3c3781e0db92.svg", + "formattedDate": "03/18/24" + }, + { + "reviewText": { + "text": "The food was hot and tasted good.", + "textFormat": "The food was hot and tasted good." + }, + "source": "UNKNOWN", + "createdAt": "2024-03-16T00:00:00", + "eaterName": { + "text": "DeAnna P.", + "textFormat": "DeAnna P." + }, + "contentUUID": "5d5fe03b-5069-49f7-8085-05ebc0b794c9", + "timeSinceReview": "12 months ago", + "avatarUrl": "/_static/d590fac5df89924d.svg", + "formattedDate": "03/16/24" + }, + { + "reviewText": { + "text": "Awesome", + "textFormat": "Awesome" + }, + "source": "UNKNOWN", + "createdAt": "2024-03-10T00:00:00", + "eaterName": { + "text": "Alex E.", + "textFormat": "Alex E." + }, + "contentUUID": "0e5e78a9-005f-4bf3-ab26-ca81b29383ab", + "timeSinceReview": "1 year ago", + "avatarUrl": "/_static/21f488d3249d6f03.svg", + "formattedDate": "03/10/24" + }, + { + "reviewText": { + "text": "I LOVE THIS PLACE", + "textFormat": "I LOVE THIS PLACE" + }, + "source": "UNKNOWN", + "createdAt": "2023-12-10T00:00:00", + "eaterName": { + "text": "Davis W.", + "textFormat": "Davis W." + }, + "contentUUID": "f185a30b-2486-4323-8854-65a4f27b1546", + "timeSinceReview": "1 year ago", + "avatarUrl": "/_static/3ed0fb233b69a3de.svg", + "formattedDate": "12/10/23" + }, + { + "reviewText": { + "text": "Soup dumplings are soooooooo good", + "textFormat": "Soup dumplings are soooooooo good" + }, + "source": "UNKNOWN", + "createdAt": "2023-06-27T00:00:00", + "eaterName": { + "text": "Claire E.", + "textFormat": "Claire E." + }, + "contentUUID": "f4360083-0748-460f-b641-bff8689b1b5a", + "timeSinceReview": "2 years ago", + "avatarUrl": "/_static/d590fac5df89924d.svg", + "formattedDate": "06/27/23" + }, + { + "reviewText": { + "text": "I love their dumplings. They're the best!", + "textFormat": "I love their dumplings. They're the best!" + }, + "source": "UNKNOWN", + "createdAt": "2023-01-26T00:00:00", + "eaterName": { + "text": "Natalie J.", + "textFormat": "Natalie J." + }, + "contentUUID": "77c6b707-28ad-459c-be1f-3fdf1278dc5a", + "timeSinceReview": "2 years ago", + "avatarUrl": "/_static/d590fac5df89924d.svg", + "formattedDate": "01/26/23" + }, + { + "reviewText": { + "text": "Amazing dumplings!!!", + "textFormat": "Amazing dumplings!!!" + }, + "source": "UNKNOWN", + "createdAt": "2022-10-27T00:00:00", + "eaterName": { + "text": "Seth H.", + "textFormat": "Seth H." + }, + "contentUUID": "a3d10e77-6eac-46d1-b97b-c4c0cbf7f4e1", + "timeSinceReview": "2 years ago", + "avatarUrl": "/_static/d590fac5df89924d.svg", + "formattedDate": "10/27/22" + } + ], + "featuredReviews": [ + { + "reviewText": { + "text": "looooooooovvvvvve the spicy chicken it never disappoints.", + "textFormat": "looooooooovvvvvve the spicy chicken it never disappoints." + }, + "source": "UNKNOWN", + "createdAt": "2024-05-01T00:00:00", + "eaterName": { + "text": "HAMILTON A.", + "textFormat": "HAMILTON A." + }, + "contentUUID": "d70989be-65c3-4458-a3c4-f22ff80df8cc", + "timeSinceReview": "10 months ago", + "avatarUrl": "/_static/d590fac5df89924d.svg", + "formattedDate": "05/01/24" + }, + { + "reviewText": { + "text": "love the spicy chicken little nuggets of happiness", + "textFormat": "love the spicy chicken little nuggets of happiness" + }, + "source": "UNKNOWN", + "createdAt": "2024-04-07T00:00:00", + "eaterName": { + "text": "HAMILTON A.", + "textFormat": "HAMILTON A." + }, + "contentUUID": "125f9081-1c6d-4d0c-9aa7-587305db4ded", + "timeSinceReview": "11 months ago", + "avatarUrl": "/_static/9538c4f1cb0d524a.svg", + "formattedDate": "04/07/24" + }, + { + "reviewText": { + "text": "love the spicy chicken little bites of heaven", + "textFormat": "love the spicy chicken little bites of heaven" + }, + "source": "UNKNOWN", + "createdAt": "2024-03-18T00:00:00", + "eaterName": { + "text": "HAMILTON A.", + "textFormat": "HAMILTON A." + }, + "contentUUID": "fa896e04-0227-44d4-830b-34009498e51e", + "timeSinceReview": "12 months ago", + "avatarUrl": "/_static/544c3c3781e0db92.svg", + "formattedDate": "03/18/24" + } + ], + "topReviewsBucket": "market_level_control", + "workingHoursTagline": "Available at 10:00 AM", + "hygieneRatingBadge": { + "iconUrl": "" + }, + "parentChain": null, + "breadcrumbs": { + "value": [ + { + "href": "/", + "title": "United States", + "hrefVariants": null + }, + { + "href": "/region/ga", + "title": "Georgia", + "hrefVariants": null + }, + { + "href": "/city/atlanta-ga", + "title": "Atlanta", + "hrefVariants": { + "DELIVERY": "/city/atlanta-ga", + "PICKUP": "/pickup/atlanta-ga" + } + }, + { + "href": "/neighborhood/dunwoody-forest-atlanta-ga", + "title": "Dunwoody Forest", + "hrefVariants": null + }, + { + "href": "/store/china-kitchen/AhLIMBhFQdKqBmx4v7lzFQ", + "title": "China Kitchen", + "hrefVariants": null + } + ], + "metaJson": "{\"@context\":\"https:\\u002F\\u002Fschema.org\",\"@type\":\"BreadcrumbList\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"United States\",\"item\":\"https:\\u002F\\u002Fwww.ubereats.com\\u002F\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Georgia\",\"item\":\"https:\\u002F\\u002Fwww.ubereats.com\\u002Fregion\\u002Fga\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Atlanta\",\"item\":\"https:\\u002F\\u002Fwww.ubereats.com\\u002Fcity\\u002Fatlanta-ga\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Dunwoody Forest\",\"item\":\"https:\\u002F\\u002Fwww.ubereats.com\\u002Fneighborhood\\u002Fdunwoody-forest-atlanta-ga\"},{\"@type\":\"ListItem\",\"position\":5,\"name\":\"China Kitchen\",\"item\":\"https:\\u002F\\u002Fwww.ubereats.com\\u002Fstore\\u002Fchina-kitchen\\u002FAhLIMBhFQdKqBmx4v7lzFQ\"}]}" + }, + "catalogSectionsMap": { + "516658e0-667f-5063-a3e9-d9d3e13a2e53": [ + { + "type": "VERTICAL_GRID", + "catalogSectionUUID": "239de873-4e2d-55fc-9dc2-d398a68673e2", + "payload": { + "standardItemsPayload": { + "title": { + "text": "Seafood Rice Noodle Soup" + }, + "spanCount": 2, + "catalogItems": [ + { + "uuid": "8a1e8d45-c341-4662-81c1-940cc1d68fc2", + "title": "Crispy Salt Chicken", + "itemDescription": "Crispy salt chicken typically includes marinated chicken that is deep-fried until crispy, served in a seafood rice noodle soup with a variety of seafood and vegetables.", + "price": 1100, + "priceTagline": { + "text": "$11.00", + "textFormat": "$11.00", + "accessibilityText": "$11.00" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Crispy Salt Chicken", + "textFormat": "Crispy Salt Chicken", + "accessibilityText": "Crispy Salt Chicken" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Crispy salt chicken typically includes marinated chicken that is deep-fried until crispy, served in a seafood rice noodle soup with a variety of seafood and vegetables.", + "textFormat": "Crispy salt chicken typically includes marinated chicken that is deep-fried until crispy, served in a seafood rice noodle soup with a variety of seafood and vegetables." + }, + "subsectionUuid": "239de873-4e2d-55fc-9dc2-d398a68673e2", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$11.00", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$11.00" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Crispy Salt Chicken", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Crispy Salt Chicken" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 0 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "175464e7-3711-4094-9697-094f84283027", + "title": "Rice Hair Noodle", + "itemDescription": "white rice hair noodle stirfry/w . pork or chicken or beef or shrimp, your choice.", + "price": 975, + "priceTagline": { + "text": "$9.75", + "textFormat": "$9.75", + "accessibilityText": "$9.75" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Rice Hair Noodle", + "textFormat": "Rice Hair Noodle", + "accessibilityText": "Rice Hair Noodle" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "white rice hair noodle stirfry/w . pork or chicken or beef or shrimp, your choice.", + "textFormat": "white rice hair noodle stirfry/w . pork or chicken or beef or shrimp, your choice." + }, + "subsectionUuid": "239de873-4e2d-55fc-9dc2-d398a68673e2", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$9.75", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$9.75" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Rice Hair Noodle", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Rice Hair Noodle" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 1 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "4787c469-33ef-4b91-b3e6-11c9fa62e818", + "title": "Smoked Tea Duck", + "itemDescription": "Half.", + "price": 1699, + "priceTagline": { + "text": "$16.99", + "textFormat": "$16.99", + "accessibilityText": "$16.99" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Smoked Tea Duck", + "textFormat": "Smoked Tea Duck", + "accessibilityText": "Smoked Tea Duck" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Half.", + "textFormat": "Half." + }, + "subsectionUuid": "239de873-4e2d-55fc-9dc2-d398a68673e2", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$16.99", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a0100%\u00c2\u00a0(9)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$16.99, 100% of customers liked this based on 9 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Smoked Tea Duck", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Smoked Tea Duck" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 2, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "100%", + "numRatings": 9 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "0de36628-ad79-4894-b340-aae3a81c84f7", + "title": "Seafood Tofu", + "itemDescription": "fish fillet,shirmp,and squid with vegetable brown sauce/with crispy soft tofu", + "price": 1350, + "priceTagline": { + "text": "$13.50", + "textFormat": "$13.50", + "accessibilityText": "$13.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Seafood Tofu", + "textFormat": "Seafood Tofu", + "accessibilityText": "Seafood Tofu" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "fish fillet,shirmp,and squid with vegetable brown sauce/with crispy soft tofu", + "textFormat": "fish fillet,shirmp,and squid with vegetable brown sauce/with crispy soft tofu" + }, + "subsectionUuid": "239de873-4e2d-55fc-9dc2-d398a68673e2", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$13.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a0100%\u00c2\u00a0(3)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$13.50, 100% of customers liked this based on 3 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Seafood Tofu", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Seafood Tofu" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 3, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "100%", + "numRatings": 3 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "6544c7bc-c463-5f6e-8770-791b47be6f54", + "title": "Braised Whole Fish", + "itemDescription": "whole Tilapia braised with Sichuan spicy chili in brown sauce. spicy or no spicy your choice.", + "price": 1298, + "priceTagline": { + "text": "$12.98", + "textFormat": "$12.98", + "accessibilityText": "$12.98" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Braised Whole Fish", + "textFormat": "Braised Whole Fish", + "accessibilityText": "Braised Whole Fish" + }, + "isSoldOut": false, + "hasCustomizations": true, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "whole Tilapia braised with Sichuan spicy chili in brown sauce. spicy or no spicy your choice.", + "textFormat": "whole Tilapia braised with Sichuan spicy chili in brown sauce. spicy or no spicy your choice." + }, + "subsectionUuid": "239de873-4e2d-55fc-9dc2-d398a68673e2", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": false, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.98", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.98" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Braised Whole Fish", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Braised Whole Fish" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 4 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "09b3cf33-7b9f-4ba9-88c1-0a059e95be32", + "title": "Spicy Whole Fish", + "itemDescription": "Tilapia cooked with Sichun spicy sauce.", + "price": 1200, + "priceTagline": { + "text": "$12.00", + "textFormat": "$12.00", + "accessibilityText": "$12.00" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Spicy Whole Fish", + "textFormat": "Spicy Whole Fish", + "accessibilityText": "Spicy Whole Fish" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Tilapia cooked with Sichun spicy sauce.", + "textFormat": "Tilapia cooked with Sichun spicy sauce." + }, + "subsectionUuid": "239de873-4e2d-55fc-9dc2-d398a68673e2", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.00", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a0100%\u00c2\u00a0(6)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.00, 100% of customers liked this based on 6 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Spicy Whole Fish", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Spicy Whole Fish" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 5, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "100%", + "numRatings": 6 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "515f7567-4331-4a17-a263-a5d5fbfa69b2", + "title": "Tasty Flavor Beef", + "itemDescription": "Rice noodles served in a savory broth, typically including tender slices of beef and select vegetables, garnished with scallions.", + "price": 1250, + "priceTagline": { + "text": "$12.50", + "textFormat": "$12.50", + "accessibilityText": "$12.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Tasty Flavor Beef", + "textFormat": "Tasty Flavor Beef", + "accessibilityText": "Tasty Flavor Beef" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Rice noodles served in a savory broth, typically including tender slices of beef and select vegetables, garnished with scallions.", + "textFormat": "Rice noodles served in a savory broth, typically including tender slices of beef and select vegetables, garnished with scallions." + }, + "subsectionUuid": "239de873-4e2d-55fc-9dc2-d398a68673e2", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.50" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Tasty Flavor Beef", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Tasty Flavor Beef" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 6 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "ee762b64-496a-5fb1-95d5-4bbbb52047ee", + "title": "Hong Kong Style Shrimp", + "itemDescription": "Spicy.", + "price": 1175, + "priceTagline": { + "text": "$11.75", + "textFormat": "$11.75", + "accessibilityText": "$11.75" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Hong Kong Style Shrimp", + "textFormat": "Hong Kong Style Shrimp", + "accessibilityText": "Hong Kong Style Shrimp" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy.", + "textFormat": "Spicy." + }, + "subsectionUuid": "239de873-4e2d-55fc-9dc2-d398a68673e2", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$11.75", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$11.75" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Hong Kong Style Shrimp", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Hong Kong Style Shrimp" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 7 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "59c97b17-8470-5a5e-bd85-d3dd45e64cb4", + "title": "Chopped Chicken", + "itemDescription": "With steamed bun.", + "price": 1200, + "priceTagline": { + "text": "$12.00", + "textFormat": "$12.00", + "accessibilityText": "$12.00" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Chopped Chicken", + "textFormat": "Chopped Chicken", + "accessibilityText": "Chopped Chicken" + }, + "isSoldOut": false, + "hasCustomizations": false, + "endorsement": { + "backgroundColor": { + "color": "#0E8345" + }, + "text": "Popular", + "textFormat": "Popular", + "accessibilityText": "Popular", + "textBorder": "PILL" + }, + "endorsementAnalyticsTag": "confidence_builders_popular", + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "With steamed bun.", + "textFormat": "With steamed bun." + }, + "subsectionUuid": "239de873-4e2d-55fc-9dc2-d398a68673e2", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.00", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.00" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Chopped Chicken", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Chopped Chicken" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 8, + "endorsementMetadata": { + "endorsementType": "most_liked" + } + }, + "endorsementV2": { + "style": { + "definedStyle": "GREEN", + "type": "definedStyle" + }, + "size": "X_SMALL", + "state": "ACTIVE", + "text": "Popular", + "hierarchy": "PRIMARY" + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "f6adbce4-9aec-4793-9e86-18be3d7e8155", + "title": "Mala Tang", + "itemDescription": "Fish filet, beef, fish ball, shrimp, quail egg, luncheon meat, tofu, ear mushroom, clear noodle, bokchoy, lotus root, and bamboo shoot. with special Sichuan chili sauce soup .$15.48 for one person;$20.45 for two person.", + "price": 1548, + "priceTagline": { + "text": "$15.48", + "textFormat": "$15.48", + "accessibilityText": "$15.48" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Mala Tang", + "textFormat": "Mala Tang", + "accessibilityText": "Mala Tang" + }, + "isSoldOut": false, + "hasCustomizations": true, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Fish filet, beef, fish ball, shrimp, quail egg, luncheon meat, tofu, ear mushroom, clear noodle, bokchoy, lotus root, and bamboo shoot. with special Sichuan chili sauce soup .$15.48 for one person;$20.45 for two person.", + "textFormat": "Fish filet, beef, fish ball, shrimp, quail egg, luncheon meat, tofu, ear mushroom, clear noodle, bokchoy, lotus root, and bamboo shoot. with special Sichuan chili sauce soup .$15.48 for one person;$20.45 for two person." + }, + "subsectionUuid": "239de873-4e2d-55fc-9dc2-d398a68673e2", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": false, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$15.48", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a092%\u00c2\u00a0(13)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$15.48, 92% of customers liked this based on 13 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Mala Tang", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Mala Tang" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 9, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "92%", + "numRatings": 13 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "29222159-a966-4371-8339-25cc437dfb44", + "title": "Tasty Flavor Lamb", + "itemDescription": "Tender lamb pieces with broccoli, bell peppers, and onions in a savory sauce.", + "price": 1349, + "priceTagline": { + "text": "$13.49", + "textFormat": "$13.49", + "accessibilityText": "$13.49" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Tasty Flavor Lamb", + "textFormat": "Tasty Flavor Lamb", + "accessibilityText": "Tasty Flavor Lamb" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Tender lamb pieces with broccoli, bell peppers, and onions in a savory sauce.", + "textFormat": "Tender lamb pieces with broccoli, bell peppers, and onions in a savory sauce." + }, + "subsectionUuid": "239de873-4e2d-55fc-9dc2-d398a68673e2", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$13.49", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a075%\u00c2\u00a0(4)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$13.49, 75% of customers liked this based on 4 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Tasty Flavor Lamb", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Tasty Flavor Lamb" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 10, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "75%", + "numRatings": 4 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "a5b25a13-6ff0-5b97-83b9-6661ca31d4d5", + "title": "grilled fish(two fish)", + "itemDescription": "two Tilapia cook with sprcial Sichun spicy sauce(home made) with vegetable $19.58+$2.00 tray fee)", + "price": 2158, + "priceTagline": { + "text": "$21.58", + "textFormat": "$21.58", + "accessibilityText": "$21.58" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "grilled fish(two fish)", + "textFormat": "grilled fish(two fish)", + "accessibilityText": "grilled fish(two fish)" + }, + "isSoldOut": false, + "hasCustomizations": true, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "two Tilapia cook with sprcial Sichun spicy sauce(home made) with vegetable $19.58+$2.00 tray fee)", + "textFormat": "two Tilapia cook with sprcial Sichun spicy sauce(home made) with vegetable $19.58+$2.00 tray fee)" + }, + "subsectionUuid": "239de873-4e2d-55fc-9dc2-d398a68673e2", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": false, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$21.58", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$21.58" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "grilled fish(two fish)", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "grilled fish(two fish)" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 11 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "013c21a5-100c-5053-aa4a-bf5808967cce", + "title": "Grilled fish(one fish)", + "itemDescription": "Tilapia cooked with vege and special Sichuan spicy sauce(home made); one fish $14.98+$2.00 tray;two fish $16.98+$2.00tray", + "price": 1698, + "priceTagline": { + "text": "$16.98", + "textFormat": "$16.98", + "accessibilityText": "$16.98" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Grilled fish(one fish)", + "textFormat": "Grilled fish(one fish)", + "accessibilityText": "Grilled fish(one fish)" + }, + "isSoldOut": false, + "hasCustomizations": true, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Tilapia cooked with vege and special Sichuan spicy sauce(home made); one fish $14.98+$2.00 tray;two fish $16.98+$2.00tray", + "textFormat": "Tilapia cooked with vege and special Sichuan spicy sauce(home made); one fish $14.98+$2.00 tray;two fish $16.98+$2.00tray" + }, + "subsectionUuid": "239de873-4e2d-55fc-9dc2-d398a68673e2", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": false, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$16.98", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$16.98" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Grilled fish(one fish)", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Grilled fish(one fish)" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 12 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "048e7f8e-2dae-5db1-963f-b22f3bd0dfe5", + "title": "rice noodle soup with seafood.", + "itemDescription": "Rice noodles served in a light broth, typically includes a variety of seafood such as shrimp, scallops, and squid, accompanied by mixed vegetables.", + "price": 1299, + "priceTagline": { + "text": "$12.99", + "textFormat": "$12.99", + "accessibilityText": "$12.99" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "rice noodle soup with seafood.", + "textFormat": "rice noodle soup with seafood.", + "accessibilityText": "rice noodle soup with seafood." + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Rice noodles served in a light broth, typically includes a variety of seafood such as shrimp, scallops, and squid, accompanied by mixed vegetables.", + "textFormat": "Rice noodles served in a light broth, typically includes a variety of seafood such as shrimp, scallops, and squid, accompanied by mixed vegetables." + }, + "subsectionUuid": "239de873-4e2d-55fc-9dc2-d398a68673e2", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.99", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.99" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "rice noodle soup with seafood.", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "rice noodle soup with seafood." + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 13 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "eef3581f-5537-5230-9172-9f75c91ce6e4", + "title": "Twice Cooked Pork", + "itemDescription": "Pork belly. / Spicy.", + "price": 1200, + "priceTagline": { + "text": "$12.00", + "textFormat": "$12.00", + "accessibilityText": "$12.00" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Twice Cooked Pork", + "textFormat": "Twice Cooked Pork", + "accessibilityText": "Twice Cooked Pork" + }, + "isSoldOut": false, + "hasCustomizations": false, + "endorsement": { + "backgroundColor": { + "color": "#0E8345" + }, + "text": "Popular", + "textFormat": "Popular", + "accessibilityText": "Popular", + "textBorder": "PILL" + }, + "endorsementAnalyticsTag": "confidence_builders_popular", + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Pork belly. / Spicy.", + "textFormat": "Pork belly. / Spicy." + }, + "subsectionUuid": "239de873-4e2d-55fc-9dc2-d398a68673e2", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.00", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.00" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Twice Cooked Pork", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Twice Cooked Pork" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 14, + "endorsementMetadata": { + "endorsementType": "most_liked" + } + }, + "endorsementV2": { + "style": { + "definedStyle": "GREEN", + "type": "definedStyle" + }, + "size": "X_SMALL", + "state": "ACTIVE", + "text": "Popular", + "hierarchy": "PRIMARY" + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "85eab367-4642-52d7-885f-a98dc35350b9", + "title": "Sizzling Pork Kidney", + "itemDescription": "Spicy.", + "price": 1195, + "priceTagline": { + "text": "$11.95", + "textFormat": "$11.95", + "accessibilityText": "$11.95" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Sizzling Pork Kidney", + "textFormat": "Sizzling Pork Kidney", + "accessibilityText": "Sizzling Pork Kidney" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy.", + "textFormat": "Spicy." + }, + "subsectionUuid": "239de873-4e2d-55fc-9dc2-d398a68673e2", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$11.95", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$11.95" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Sizzling Pork Kidney", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Sizzling Pork Kidney" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 15 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "ba216306-8933-5b43-9769-137d77003a45", + "title": "Spicy Chicken", + "itemDescription": "Spicy.", + "price": 1250, + "priceTagline": { + "text": "$12.50", + "textFormat": "$12.50", + "accessibilityText": "$12.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Spicy Chicken", + "textFormat": "Spicy Chicken", + "accessibilityText": "Spicy Chicken" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy.", + "textFormat": "Spicy." + }, + "subsectionUuid": "239de873-4e2d-55fc-9dc2-d398a68673e2", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.50" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Spicy Chicken", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Spicy Chicken" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 16 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "28316feb-9ba9-4aa6-8180-72bee593a588", + "title": "Pan Fried Noodles", + "itemDescription": "Pan-fried noodles 1) with beef, chicken, shrimp; pan-fried noodles 2) with fish, shrimp, squid; pan-fried noodles 3)with vegetables. all your choice.", + "price": 1250, + "priceTagline": { + "text": "$12.50", + "textFormat": "$12.50", + "accessibilityText": "$12.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Pan Fried Noodles", + "textFormat": "Pan Fried Noodles", + "accessibilityText": "Pan Fried Noodles" + }, + "isSoldOut": false, + "hasCustomizations": true, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Pan-fried noodles 1) with beef, chicken, shrimp; pan-fried noodles 2) with fish, shrimp, squid; pan-fried noodles 3)with vegetables. all your choice.", + "textFormat": "Pan-fried noodles 1) with beef, chicken, shrimp; pan-fried noodles 2) with fish, shrimp, squid; pan-fried noodles 3)with vegetables. all your choice." + }, + "subsectionUuid": "239de873-4e2d-55fc-9dc2-d398a68673e2", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": false, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a060%\u00c2\u00a0(10)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.50, 60% of customers liked this based on 10 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Pan Fried Noodles", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Pan Fried Noodles" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 17, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "60%", + "numRatings": 10 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "9d3ec31d-b4d3-44f0-b1a3-8ca1815ee2ef", + "title": "Traditional Kung Pao Chicken", + "itemDescription": "Spicy. No vegetable, add vegetable your choice.", + "price": 1195, + "priceTagline": { + "text": "$11.95", + "textFormat": "$11.95", + "accessibilityText": "$11.95" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Traditional Kung Pao Chicken", + "textFormat": "Traditional Kung Pao Chicken", + "accessibilityText": "Traditional Kung Pao Chicken" + }, + "isSoldOut": false, + "hasCustomizations": false, + "endorsement": { + "backgroundColor": { + "color": "#0E8345" + }, + "text": "Popular", + "textFormat": "Popular", + "accessibilityText": "Popular", + "textBorder": "PILL" + }, + "endorsementAnalyticsTag": "confidence_builders_popular", + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy. No vegetable, add vegetable your choice.", + "textFormat": "Spicy. No vegetable, add vegetable your choice." + }, + "subsectionUuid": "239de873-4e2d-55fc-9dc2-d398a68673e2", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$11.95", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$11.95" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Traditional Kung Pao Chicken", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Traditional Kung Pao Chicken" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 18, + "endorsementMetadata": { + "endorsementType": "most_liked" + } + }, + "endorsementV2": { + "style": { + "definedStyle": "GREEN", + "type": "definedStyle" + }, + "size": "X_SMALL", + "state": "ACTIVE", + "text": "Popular", + "hierarchy": "PRIMARY" + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "9efd8e48-b4e3-4338-9f0c-5b4bcd687ac6", + "title": "Hunan Style Fish", + "itemDescription": "Steamed boneless swain whole fish filet/w spicy home sauce.", + "price": 1145, + "priceTagline": { + "text": "$11.45", + "textFormat": "$11.45", + "accessibilityText": "$11.45" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Hunan Style Fish", + "textFormat": "Hunan Style Fish", + "accessibilityText": "Hunan Style Fish" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Steamed boneless swain whole fish filet/w spicy home sauce.", + "textFormat": "Steamed boneless swain whole fish filet/w spicy home sauce." + }, + "subsectionUuid": "239de873-4e2d-55fc-9dc2-d398a68673e2", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$11.45", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$11.45" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Hunan Style Fish", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Hunan Style Fish" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 19 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + } + ], + "sectionUUID": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "catalogSectionAnalyticsData": { + "catalogSectionPosition": 0 + }, + "paginationEnabled": false, + "scores": null + }, + "type": "standardItemsPayload" + } + }, + { + "type": "VERTICAL_GRID", + "catalogSectionUUID": "c55d2f6b-7a7b-45d4-9cc7-4bfd9c576caf", + "payload": { + "standardItemsPayload": { + "title": { + "text": "Appetizers" + }, + "spanCount": 2, + "catalogItems": [ + { + "uuid": "188b7dc9-d4fc-436d-a246-cada154bc02c", + "imageUrl": "https://tb-static.uber.com/prod/image-proc/processed_images/0a81ab4d340efb886762eddb5414be69/0fb376d1da56c05644450062d25c5c84.jpeg", + "title": "Spicy Master Dumpling", + "itemDescription": "Twelve pieces.", + "price": 1279, + "priceTagline": { + "text": "$12.79", + "textFormat": "$12.79", + "accessibilityText": "$12.79" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Spicy Master Dumpling", + "textFormat": "Spicy Master Dumpling", + "accessibilityText": "Spicy Master Dumpling" + }, + "isSoldOut": false, + "hasCustomizations": true, + "endorsement": { + "backgroundColor": { + "alpha": 1, + "color": "#0E8345" + }, + "text": "#1 most liked", + "textColor": { + "alpha": 1, + "color": "#FFFFF" + }, + "accessibilityText": "#1 most liked", + "textBorder": "PILL" + }, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Twelve pieces.", + "textFormat": "Twelve pieces." + }, + "subsectionUuid": "c55d2f6b-7a7b-45d4-9cc7-4bfd9c576caf", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": false, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.79", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a095%\u00c2\u00a0(71)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.79, 95% of customers liked this based on 71 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Spicy Master Dumpling", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Spicy Master Dumpling" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 0, + "endorsementMetadata": { + "endorsementType": "most_liked" + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "a5c301fe-e56d-499c-9cec-b800edf1d316", + "title": "Shanghai Soup Dumpling", + "itemDescription": "Eight pieces.", + "price": 1050, + "priceTagline": { + "text": "$10.50", + "textFormat": "$10.50", + "accessibilityText": "$10.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Shanghai Soup Dumpling", + "textFormat": "Shanghai Soup Dumpling", + "accessibilityText": "Shanghai Soup Dumpling" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Eight pieces.", + "textFormat": "Eight pieces." + }, + "subsectionUuid": "c55d2f6b-7a7b-45d4-9cc7-4bfd9c576caf", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$10.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a087%\u00c2\u00a0(47)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$10.50, 87% of customers liked this based on 47 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Shanghai Soup Dumpling", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Shanghai Soup Dumpling" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 1, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "87%", + "numRatings": 47 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "769048d9-6c22-47ec-af9f-26b49372b37d", + "title": "Veg Spring Rolls", + "itemDescription": "Spicy. Four pieces.", + "price": 450, + "priceTagline": { + "text": "$4.50", + "textFormat": "$4.50", + "accessibilityText": "$4.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Veg Spring Rolls", + "textFormat": "Veg Spring Rolls", + "accessibilityText": "Veg Spring Rolls" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy. Four pieces.", + "textFormat": "Spicy. Four pieces." + }, + "subsectionUuid": "c55d2f6b-7a7b-45d4-9cc7-4bfd9c576caf", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$4.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a085%\u00c2\u00a0(75)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$4.50, 85% of customers liked this based on 75 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Veg Spring Rolls", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Veg Spring Rolls" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 2, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "85%", + "numRatings": 75 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "d1db4ca4-50c6-4d82-b508-22e122271c4e", + "title": "Wonton Soup", + "itemDescription": "Eight pieces.", + "price": 1000, + "priceTagline": { + "text": "$10.00", + "textFormat": "$10.00", + "accessibilityText": "$10.00" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Wonton Soup", + "textFormat": "Wonton Soup", + "accessibilityText": "Wonton Soup" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Eight pieces.", + "textFormat": "Eight pieces." + }, + "subsectionUuid": "c55d2f6b-7a7b-45d4-9cc7-4bfd9c576caf", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$10.00", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a071%\u00c2\u00a0(21)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$10.00, 71% of customers liked this based on 21 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Wonton Soup", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Wonton Soup" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 3, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "71%", + "numRatings": 21 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "a5baae75-0115-4427-92d2-bddde19c75b8", + "title": "Pan Fried Dumpling", + "itemDescription": "Twelve pieces.", + "price": 1280, + "priceTagline": { + "text": "$12.80", + "textFormat": "$12.80", + "accessibilityText": "$12.80" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Pan Fried Dumpling", + "textFormat": "Pan Fried Dumpling", + "accessibilityText": "Pan Fried Dumpling" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Twelve pieces.", + "textFormat": "Twelve pieces." + }, + "subsectionUuid": "c55d2f6b-7a7b-45d4-9cc7-4bfd9c576caf", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.80", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a078%\u00c2\u00a0(28)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.80, 78% of customers liked this based on 28 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Pan Fried Dumpling", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Pan Fried Dumpling" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 4, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "78%", + "numRatings": 28 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "61db112c-54ea-4a22-82d1-18437e5c6bb8", + "title": "Chili Oil Wonton", + "itemDescription": "Spicy. Twelve pieces.", + "price": 1199, + "priceTagline": { + "text": "$11.99", + "textFormat": "$11.99", + "accessibilityText": "$11.99" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Chili Oil Wonton", + "textFormat": "Chili Oil Wonton", + "accessibilityText": "Chili Oil Wonton" + }, + "isSoldOut": false, + "hasCustomizations": true, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy. Twelve pieces.", + "textFormat": "Spicy. Twelve pieces." + }, + "subsectionUuid": "c55d2f6b-7a7b-45d4-9cc7-4bfd9c576caf", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": false, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$11.99", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a089%\u00c2\u00a0(19)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$11.99, 89% of customers liked this based on 19 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Chili Oil Wonton", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Chili Oil Wonton" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 5, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "89%", + "numRatings": 19 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "cde33015-a305-40e0-ad33-040ef6467e4f", + "title": "Sesame Balls", + "itemDescription": "Eight pieces.", + "price": 798, + "priceTagline": { + "text": "$7.98", + "textFormat": "$7.98", + "accessibilityText": "$7.98" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Sesame Balls", + "textFormat": "Sesame Balls", + "accessibilityText": "Sesame Balls" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Eight pieces.", + "textFormat": "Eight pieces." + }, + "subsectionUuid": "c55d2f6b-7a7b-45d4-9cc7-4bfd9c576caf", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$7.98", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$7.98" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Sesame Balls", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Sesame Balls" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 6 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "88aa0838-251e-5f5e-81c4-077f23af394a", + "title": "chinese beef burritos", + "itemDescription": "Chinese beef burritos typically include thinly sliced beef, scallions, cilantro, and a hoisin sauce, wrapped in a soft, flour tortilla.", + "price": 1150, + "priceTagline": { + "text": "$11.50", + "textFormat": "$11.50", + "accessibilityText": "$11.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "chinese beef burritos", + "textFormat": "chinese beef burritos", + "accessibilityText": "chinese beef burritos" + }, + "isSoldOut": false, + "hasCustomizations": true, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Chinese beef burritos typically include thinly sliced beef, scallions, cilantro, and a hoisin sauce, wrapped in a soft, flour tortilla.", + "textFormat": "Chinese beef burritos typically include thinly sliced beef, scallions, cilantro, and a hoisin sauce, wrapped in a soft, flour tortilla." + }, + "subsectionUuid": "c55d2f6b-7a7b-45d4-9cc7-4bfd9c576caf", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": false, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$11.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$11.50" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "chinese beef burritos", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "chinese beef burritos" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 7 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "4e8d0137-12cd-57f1-954b-e8c4954ab51c", + "title": "steamed pork dumpling", + "itemDescription": "Twelve pieces.", + "price": 1275, + "priceTagline": { + "text": "$12.75", + "textFormat": "$12.75", + "accessibilityText": "$12.75" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "steamed pork dumpling", + "textFormat": "steamed pork dumpling", + "accessibilityText": "steamed pork dumpling" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Twelve pieces.", + "textFormat": "Twelve pieces." + }, + "subsectionUuid": "c55d2f6b-7a7b-45d4-9cc7-4bfd9c576caf", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.75", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.75" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "steamed pork dumpling", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "steamed pork dumpling" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 8 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "7465184b-d5f1-52f2-ad7c-85590f36fa9e", + "title": "Chinese fritters(one)", + "itemDescription": "A single Chinese fritter, typically consisting of a variety of vegetables and sometimes meat, coated in a light batter and deep-fried until golden.", + "price": 200, + "priceTagline": { + "text": "$2.00", + "textFormat": "$2.00", + "accessibilityText": "$2.00" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Chinese fritters(one)", + "textFormat": "Chinese fritters(one)", + "accessibilityText": "Chinese fritters(one)" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "A single Chinese fritter, typically consisting of a variety of vegetables and sometimes meat, coated in a light batter and deep-fried until golden.", + "textFormat": "A single Chinese fritter, typically consisting of a variety of vegetables and sometimes meat, coated in a light batter and deep-fried until golden." + }, + "subsectionUuid": "c55d2f6b-7a7b-45d4-9cc7-4bfd9c576caf", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$2.00", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$2.00" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Chinese fritters(one)", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Chinese fritters(one)" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 9 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + } + ], + "sectionUUID": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "catalogSectionAnalyticsData": { + "catalogSectionPosition": 1 + }, + "paginationEnabled": false, + "scores": null + }, + "type": "standardItemsPayload" + } + }, + { + "type": "VERTICAL_GRID", + "catalogSectionUUID": "dc9faa0b-def8-589b-8775-16a5229ca531", + "payload": { + "standardItemsPayload": { + "title": { + "text": "Noodles & Fried Rice" + }, + "spanCount": 2, + "catalogItems": [ + { + "uuid": "4de9ad1d-648a-4a12-a88d-2ee907658d79", + "title": "Shrimp lo Mein", + "itemDescription": "Succulent shrimp tossed with traditional Lo Mein noodles and vegetables", + "price": 995, + "priceTagline": { + "text": "$9.95", + "textFormat": "$9.95", + "accessibilityText": "$9.95" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Shrimp lo Mein", + "textFormat": "Shrimp lo Mein", + "accessibilityText": "Shrimp lo Mein" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Succulent shrimp tossed with traditional Lo Mein noodles and vegetables", + "textFormat": "Succulent shrimp tossed with traditional Lo Mein noodles and vegetables" + }, + "subsectionUuid": "dc9faa0b-def8-589b-8775-16a5229ca531", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$9.95", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a078%\u00c2\u00a0(14)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$9.95, 78% of customers liked this based on 14 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Shrimp lo Mein", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Shrimp lo Mein" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 0, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "78%", + "numRatings": 14 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "94c68d1e-b1b1-4bba-b85e-db450f61bafe", + "title": "Fish with Sour Veg Noodle Soup", + "itemDescription": "Noodle soup featuring fish and sour vegetables, typically includes a broth enriched with sour pickled vegetables and tender fish slices, complemented by noodles.", + "price": 999, + "priceTagline": { + "text": "$9.99", + "textFormat": "$9.99", + "accessibilityText": "$9.99" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Fish with Sour Veg Noodle Soup", + "textFormat": "Fish with Sour Veg Noodle Soup", + "accessibilityText": "Fish with Sour Veg Noodle Soup" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Noodle soup featuring fish and sour vegetables, typically includes a broth enriched with sour pickled vegetables and tender fish slices, complemented by noodles.", + "textFormat": "Noodle soup featuring fish and sour vegetables, typically includes a broth enriched with sour pickled vegetables and tender fish slices, complemented by noodles." + }, + "subsectionUuid": "dc9faa0b-def8-589b-8775-16a5229ca531", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$9.99", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$9.99" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Fish with Sour Veg Noodle Soup", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Fish with Sour Veg Noodle Soup" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 1 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "bf1aca86-c366-5c9c-9b64-d893647810af", + "title": "Spicy Beef Noodle soup", + "itemDescription": "Spicy. Beef noodle soup. when you pick up the oder, we provide separated noodle and soup in different container to you .", + "price": 1045, + "priceTagline": { + "text": "$10.45", + "textFormat": "$10.45", + "accessibilityText": "$10.45" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Spicy Beef Noodle soup", + "textFormat": "Spicy Beef Noodle soup", + "accessibilityText": "Spicy Beef Noodle soup" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy. Beef noodle soup. when you pick up the oder, we provide separated noodle and soup in different container to you .", + "textFormat": "Spicy. Beef noodle soup. when you pick up the oder, we provide separated noodle and soup in different container to you ." + }, + "subsectionUuid": "dc9faa0b-def8-589b-8775-16a5229ca531", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$10.45", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$10.45" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Spicy Beef Noodle soup", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Spicy Beef Noodle soup" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 2 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "97a65e19-ad12-5932-8c8c-8d40805c7438", + "title": "Fried Rice with pork", + "itemDescription": "Stir-fried jasmine rice with sliced pork, typically includes egg, peas, carrots, and green onions for a well-rounded flavor.", + "price": 950, + "priceTagline": { + "text": "$9.50", + "textFormat": "$9.50", + "accessibilityText": "$9.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Fried Rice with pork", + "textFormat": "Fried Rice with pork", + "accessibilityText": "Fried Rice with pork" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Stir-fried jasmine rice with sliced pork, typically includes egg, peas, carrots, and green onions for a well-rounded flavor.", + "textFormat": "Stir-fried jasmine rice with sliced pork, typically includes egg, peas, carrots, and green onions for a well-rounded flavor." + }, + "subsectionUuid": "dc9faa0b-def8-589b-8775-16a5229ca531", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$9.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$9.50" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Fried Rice with pork", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Fried Rice with pork" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 3 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "43368fa8-3fd0-4d90-b899-e136827def2f", + "title": "Fried Rice with Shrimp", + "itemDescription": "Stir-fried rice with shrimp, typically includes egg, peas, carrots, and green onions.", + "price": 995, + "priceTagline": { + "text": "$9.95", + "textFormat": "$9.95", + "accessibilityText": "$9.95" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Fried Rice with Shrimp", + "textFormat": "Fried Rice with Shrimp", + "accessibilityText": "Fried Rice with Shrimp" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Stir-fried rice with shrimp, typically includes egg, peas, carrots, and green onions.", + "textFormat": "Stir-fried rice with shrimp, typically includes egg, peas, carrots, and green onions." + }, + "subsectionUuid": "dc9faa0b-def8-589b-8775-16a5229ca531", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$9.95", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a076%\u00c2\u00a0(21)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$9.95, 76% of customers liked this based on 21 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Fried Rice with Shrimp", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Fried Rice with Shrimp" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 4, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "76%", + "numRatings": 21 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "7860ef1a-0044-4f7a-85a9-0b4f9908aad3", + "title": "Chicken lo Mein", + "itemDescription": "Tender chicken strips stir-fried with soft lo mein noodles and savory sauce.", + "price": 995, + "priceTagline": { + "text": "$9.95", + "textFormat": "$9.95", + "accessibilityText": "$9.95" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Chicken lo Mein", + "textFormat": "Chicken lo Mein", + "accessibilityText": "Chicken lo Mein" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Tender chicken strips stir-fried with soft lo mein noodles and savory sauce.", + "textFormat": "Tender chicken strips stir-fried with soft lo mein noodles and savory sauce." + }, + "subsectionUuid": "dc9faa0b-def8-589b-8775-16a5229ca531", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$9.95", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a0100%\u00c2\u00a0(13)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$9.95, 100% of customers liked this based on 13 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Chicken lo Mein", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Chicken lo Mein" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 5, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "100%", + "numRatings": 13 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "204c0954-371d-5a84-aeff-b89fa410a6e3", + "title": "Rice Noodle with pork", + "itemDescription": "hair rice noodle with bean sprouts with pork, shrimp, chicken. your choice.", + "price": 950, + "priceTagline": { + "text": "$9.50", + "textFormat": "$9.50", + "accessibilityText": "$9.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Rice Noodle with pork", + "textFormat": "Rice Noodle with pork", + "accessibilityText": "Rice Noodle with pork" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "hair rice noodle with bean sprouts with pork, shrimp, chicken. your choice.", + "textFormat": "hair rice noodle with bean sprouts with pork, shrimp, chicken. your choice." + }, + "subsectionUuid": "dc9faa0b-def8-589b-8775-16a5229ca531", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$9.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$9.50" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Rice Noodle with pork", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Rice Noodle with pork" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 6 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "24b25efb-e965-52b5-9716-e1c56994a74c", + "title": "Fried Rice with Chicken, Beef, & Shrimp", + "itemDescription": "Jasmine rice stir-fried with soy sauce, eggs, peas, carrots, green onions, and a mix of chicken, beef, and shrimp.", + "price": 995, + "priceTagline": { + "text": "$9.95", + "textFormat": "$9.95", + "accessibilityText": "$9.95" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Fried Rice with Chicken, Beef, & Shrimp", + "textFormat": "Fried Rice with Chicken, Beef, & Shrimp", + "accessibilityText": "Fried Rice with Chicken, Beef, & Shrimp" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Jasmine rice stir-fried with soy sauce, eggs, peas, carrots, green onions, and a mix of chicken, beef, and shrimp.", + "textFormat": "Jasmine rice stir-fried with soy sauce, eggs, peas, carrots, green onions, and a mix of chicken, beef, and shrimp." + }, + "subsectionUuid": "dc9faa0b-def8-589b-8775-16a5229ca531", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$9.95", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$9.95" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Fried Rice with Chicken, Beef, & Shrimp", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Fried Rice with Chicken, Beef, & Shrimp" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 7 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "0f3e6acf-41e1-43ff-b93a-d5d109f674cd", + "title": "Rice Noodle with Beef", + "itemDescription": "", + "price": 995, + "priceTagline": { + "text": "$9.95", + "textFormat": "$9.95", + "accessibilityText": "$9.95" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Rice Noodle with Beef", + "textFormat": "Rice Noodle with Beef", + "accessibilityText": "Rice Noodle with Beef" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "subsectionUuid": "dc9faa0b-def8-589b-8775-16a5229ca531", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$9.95", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a0100%\u00c2\u00a0(5)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$9.95, 100% of customers liked this based on 5 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Rice Noodle with Beef", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Rice Noodle with Beef" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 8, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "100%", + "numRatings": 5 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "ef9b4ec4-6eb7-5bee-a6b4-8f2899e69d3e", + "title": "Rice Noodle with Chicken, Beef, & Shrimp", + "itemDescription": "fat rice noodles stirfry with chicken", + "price": 995, + "priceTagline": { + "text": "$9.95", + "textFormat": "$9.95", + "accessibilityText": "$9.95" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Rice Noodle with Chicken, Beef, & Shrimp", + "textFormat": "Rice Noodle with Chicken, Beef, & Shrimp", + "accessibilityText": "Rice Noodle with Chicken, Beef, & Shrimp" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "fat rice noodles stirfry with chicken", + "textFormat": "fat rice noodles stirfry with chicken" + }, + "subsectionUuid": "dc9faa0b-def8-589b-8775-16a5229ca531", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$9.95", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$9.95" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Rice Noodle with Chicken, Beef, & Shrimp", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Rice Noodle with Chicken, Beef, & Shrimp" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 9 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "eb60a612-d95b-5383-917d-40fd52d70fba", + "title": "Fat rice noodles with shirmp", + "itemDescription": "Fat rice noodles with shrimp typically include stir-fried wide noodles with shrimp, accompanied by vegetables such as bean sprouts, onions, and scallions in a savory sauce.", + "price": 995, + "priceTagline": { + "text": "$9.95", + "textFormat": "$9.95", + "accessibilityText": "$9.95" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Fat rice noodles with shirmp", + "textFormat": "Fat rice noodles with shirmp", + "accessibilityText": "Fat rice noodles with shirmp" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Fat rice noodles with shrimp typically include stir-fried wide noodles with shrimp, accompanied by vegetables such as bean sprouts, onions, and scallions in a savory sauce.", + "textFormat": "Fat rice noodles with shrimp typically include stir-fried wide noodles with shrimp, accompanied by vegetables such as bean sprouts, onions, and scallions in a savory sauce." + }, + "subsectionUuid": "dc9faa0b-def8-589b-8775-16a5229ca531", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$9.95", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$9.95" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Fat rice noodles with shirmp", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Fat rice noodles with shirmp" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 10 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "8b4446e5-b9c5-45f9-a66e-21f56e850452", + "title": "Beef lo Mein", + "itemDescription": "", + "price": 995, + "priceTagline": { + "text": "$9.95", + "textFormat": "$9.95", + "accessibilityText": "$9.95" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Beef lo Mein", + "textFormat": "Beef lo Mein", + "accessibilityText": "Beef lo Mein" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "subsectionUuid": "dc9faa0b-def8-589b-8775-16a5229ca531", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$9.95", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a0100%\u00c2\u00a0(3)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$9.95, 100% of customers liked this based on 3 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Beef lo Mein", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Beef lo Mein" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 11, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "100%", + "numRatings": 3 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "360c58d1-eaa7-4c14-b379-e5c01a29b08d", + "title": "Old Beijing Style Dry Noodle", + "itemDescription": "Spicy.", + "price": 995, + "priceTagline": { + "text": "$9.95", + "textFormat": "$9.95", + "accessibilityText": "$9.95" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Old Beijing Style Dry Noodle", + "textFormat": "Old Beijing Style Dry Noodle", + "accessibilityText": "Old Beijing Style Dry Noodle" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy.", + "textFormat": "Spicy." + }, + "subsectionUuid": "dc9faa0b-def8-589b-8775-16a5229ca531", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$9.95", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a084%\u00c2\u00a0(13)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$9.95, 84% of customers liked this based on 13 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Old Beijing Style Dry Noodle", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Old Beijing Style Dry Noodle" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 12, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "84%", + "numRatings": 13 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "015aab15-3cf9-4a5c-8629-6ed4a476e242", + "title": "Fried Rice with Beef", + "itemDescription": "Jasmine rice stir-fried with slices of beef, typically includes egg, peas, and green onions.", + "price": 995, + "priceTagline": { + "text": "$9.95", + "textFormat": "$9.95", + "accessibilityText": "$9.95" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Fried Rice with Beef", + "textFormat": "Fried Rice with Beef", + "accessibilityText": "Fried Rice with Beef" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Jasmine rice stir-fried with slices of beef, typically includes egg, peas, and green onions.", + "textFormat": "Jasmine rice stir-fried with slices of beef, typically includes egg, peas, and green onions." + }, + "subsectionUuid": "dc9faa0b-def8-589b-8775-16a5229ca531", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$9.95", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a0100%\u00c2\u00a0(4)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$9.95, 100% of customers liked this based on 4 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Fried Rice with Beef", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Fried Rice with Beef" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 13, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "100%", + "numRatings": 4 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "78ee1d70-bbfd-51ef-997e-6858d54a46db", + "title": "Lomein with Chicken, Beef and Shrimp", + "itemDescription": "Stir-fried soft noodles with chicken, beef, and shrimp, typically include vegetables such as cabbage, carrots, and onions in a savory sauce.", + "price": 950, + "priceTagline": { + "text": "$9.50", + "textFormat": "$9.50", + "accessibilityText": "$9.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Lomein with Chicken, Beef and Shrimp", + "textFormat": "Lomein with Chicken, Beef and Shrimp", + "accessibilityText": "Lomein with Chicken, Beef and Shrimp" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Stir-fried soft noodles with chicken, beef, and shrimp, typically include vegetables such as cabbage, carrots, and onions in a savory sauce.", + "textFormat": "Stir-fried soft noodles with chicken, beef, and shrimp, typically include vegetables such as cabbage, carrots, and onions in a savory sauce." + }, + "subsectionUuid": "dc9faa0b-def8-589b-8775-16a5229ca531", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$9.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$9.50" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Lomein with Chicken, Beef and Shrimp", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Lomein with Chicken, Beef and Shrimp" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 14 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + } + ], + "sectionUUID": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "catalogSectionAnalyticsData": { + "catalogSectionPosition": 2 + }, + "paginationEnabled": false, + "scores": null + }, + "type": "standardItemsPayload" + } + }, + { + "type": "VERTICAL_GRID", + "catalogSectionUUID": "44b65255-1e62-4c64-b07e-85e68a2758ea", + "payload": { + "standardItemsPayload": { + "title": { + "text": "Hot Pot" + }, + "spanCount": 2, + "catalogItems": [ + { + "uuid": "6daf6e3f-199b-4724-b5b5-14d87e41ca3f", + "imageUrl": "https://tb-static.uber.com/prod/image-proc/processed_images/4d0f9a7b84b2f13c8ba4a5636e337cdb/0fb376d1da56c05644450062d25c5c84.jpeg", + "title": "Seafood Hot Pot", + "itemDescription": "Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, and zucchini.y.", + "price": 1350, + "priceTagline": { + "text": "$13.50", + "textFormat": "$13.50", + "accessibilityText": "$13.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Seafood Hot Pot", + "textFormat": "Seafood Hot Pot", + "accessibilityText": "Seafood Hot Pot" + }, + "isSoldOut": false, + "hasCustomizations": true, + "endorsement": { + "backgroundColor": { + "alpha": 1, + "color": "#0E8345" + }, + "text": "#2 most liked", + "textColor": { + "alpha": 1, + "color": "#FFFFF" + }, + "accessibilityText": "#2 most liked", + "textBorder": "PILL" + }, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, and zucchini.y.", + "textFormat": "Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, and zucchini.y." + }, + "subsectionUuid": "44b65255-1e62-4c64-b07e-85e68a2758ea", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": false, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$13.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a0100%\u00c2\u00a0(5)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$13.50, 100% of customers liked this based on 5 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Seafood Hot Pot", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Seafood Hot Pot" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 0, + "endorsementMetadata": { + "endorsementType": "most_liked" + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "73d176cb-715f-4736-895c-058ec90cf69a", + "title": "Lamb Hot Pot", + "itemDescription": "Clear noodle, napa, ear mushroom, bean curd, carrot, and zucchini.", + "price": 1499, + "priceTagline": { + "text": "$14.99", + "textFormat": "$14.99", + "accessibilityText": "$14.99" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Lamb Hot Pot", + "textFormat": "Lamb Hot Pot", + "accessibilityText": "Lamb Hot Pot" + }, + "isSoldOut": false, + "hasCustomizations": true, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Clear noodle, napa, ear mushroom, bean curd, carrot, and zucchini.", + "textFormat": "Clear noodle, napa, ear mushroom, bean curd, carrot, and zucchini." + }, + "subsectionUuid": "44b65255-1e62-4c64-b07e-85e68a2758ea", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": false, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$14.99", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$14.99" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Lamb Hot Pot", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Lamb Hot Pot" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 1 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "7565a677-8dbc-48db-9adc-d1f29ba37985", + "title": "Vegetable Hot Pot", + "itemDescription": "Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, and zucchini.", + "price": 1350, + "priceTagline": { + "text": "$13.50", + "textFormat": "$13.50", + "accessibilityText": "$13.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Vegetable Hot Pot", + "textFormat": "Vegetable Hot Pot", + "accessibilityText": "Vegetable Hot Pot" + }, + "isSoldOut": false, + "hasCustomizations": true, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, and zucchini.", + "textFormat": "Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, and zucchini." + }, + "subsectionUuid": "44b65255-1e62-4c64-b07e-85e68a2758ea", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": false, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$13.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$13.50" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Vegetable Hot Pot", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Vegetable Hot Pot" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 2 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "459d9d78-d775-4ddc-aa9f-ea5feb8d4561", + "title": "Beef Steak hot pot", + "itemDescription": "Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, and zucchini.le.", + "price": 1445, + "priceTagline": { + "text": "$14.45", + "textFormat": "$14.45", + "accessibilityText": "$14.45" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Beef Steak hot pot", + "textFormat": "Beef Steak hot pot", + "accessibilityText": "Beef Steak hot pot" + }, + "isSoldOut": false, + "hasCustomizations": true, + "endorsement": { + "backgroundColor": { + "color": "#0E8345" + }, + "text": "Popular", + "textFormat": "Popular", + "accessibilityText": "Popular", + "textBorder": "PILL" + }, + "endorsementAnalyticsTag": "confidence_builders_popular", + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, and zucchini.le.", + "textFormat": "Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, and zucchini.le." + }, + "subsectionUuid": "44b65255-1e62-4c64-b07e-85e68a2758ea", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": false, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$14.45", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$14.45" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Beef Steak hot pot", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Beef Steak hot pot" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 3, + "endorsementMetadata": { + "endorsementType": "most_liked" + } + }, + "endorsementV2": { + "style": { + "definedStyle": "GREEN", + "type": "definedStyle" + }, + "size": "X_SMALL", + "state": "ACTIVE", + "text": "Popular", + "hierarchy": "PRIMARY" + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "6317e17c-4b56-4b68-8d51-dc14ef8c95e0", + "title": "Chicken Hot Pot", + "itemDescription": "Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, and zucchini.", + "price": 1399, + "priceTagline": { + "text": "$13.99", + "textFormat": "$13.99", + "accessibilityText": "$13.99" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Chicken Hot Pot", + "textFormat": "Chicken Hot Pot", + "accessibilityText": "Chicken Hot Pot" + }, + "isSoldOut": false, + "hasCustomizations": true, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, and zucchini.", + "textFormat": "Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, and zucchini." + }, + "subsectionUuid": "44b65255-1e62-4c64-b07e-85e68a2758ea", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": false, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$13.99", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$13.99" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Chicken Hot Pot", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Chicken Hot Pot" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 4 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "e5df7549-bfd1-4a55-a5f9-8480a4fcc760", + "title": "pork belly hot pot", + "itemDescription": "Clear noodle, napa, ear mushroom, bean curd, carrot, and zucchini.", + "price": 1399, + "priceTagline": { + "text": "$13.99", + "textFormat": "$13.99", + "accessibilityText": "$13.99" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "pork belly hot pot", + "textFormat": "pork belly hot pot", + "accessibilityText": "pork belly hot pot" + }, + "isSoldOut": false, + "hasCustomizations": true, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Clear noodle, napa, ear mushroom, bean curd, carrot, and zucchini.", + "textFormat": "Clear noodle, napa, ear mushroom, bean curd, carrot, and zucchini." + }, + "subsectionUuid": "44b65255-1e62-4c64-b07e-85e68a2758ea", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": false, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$13.99", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$13.99" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "pork belly hot pot", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "pork belly hot pot" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 5 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "4868d32a-eda9-5049-a495-6c4d603c5112", + "title": "Large Srhimp Hot Pot", + "itemDescription": "Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, and zucchini.y.", + "price": 1400, + "priceTagline": { + "text": "$14.00", + "textFormat": "$14.00", + "accessibilityText": "$14.00" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Large Srhimp Hot Pot", + "textFormat": "Large Srhimp Hot Pot", + "accessibilityText": "Large Srhimp Hot Pot" + }, + "isSoldOut": false, + "hasCustomizations": true, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, and zucchini.y.", + "textFormat": "Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, and zucchini.y." + }, + "subsectionUuid": "44b65255-1e62-4c64-b07e-85e68a2758ea", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": false, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$14.00", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$14.00" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Large Srhimp Hot Pot", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Large Srhimp Hot Pot" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 6 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "d2fdb97e-0afc-58fc-a4de-9b8e32fdcf99", + "title": "pork intestine with beef soup", + "itemDescription": "Pork intestine and beef soup in a hot pot typically includes a rich broth, tender pork intestines, and beef, complemented by a variety of vegetables and tofu for a hearty meal.", + "price": 1599, + "priceTagline": { + "text": "$15.99", + "textFormat": "$15.99", + "accessibilityText": "$15.99" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "pork intestine with beef soup", + "textFormat": "pork intestine with beef soup", + "accessibilityText": "pork intestine with beef soup" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Pork intestine and beef soup in a hot pot typically includes a rich broth, tender pork intestines, and beef, complemented by a variety of vegetables and tofu for a hearty meal.", + "textFormat": "Pork intestine and beef soup in a hot pot typically includes a rich broth, tender pork intestines, and beef, complemented by a variety of vegetables and tofu for a hearty meal." + }, + "subsectionUuid": "44b65255-1e62-4c64-b07e-85e68a2758ea", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$15.99", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$15.99" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "pork intestine with beef soup", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "pork intestine with beef soup" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 7 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "b36c3e2a-d396-5e39-99a5-4322e27c8a8f", + "title": "Bee Stew Hot Pot Hot", + "itemDescription": "Clear noodle, napa, ear mushroom, bean curd, carrot, and zucchini.", + "price": 1445, + "priceTagline": { + "text": "$14.45", + "textFormat": "$14.45", + "accessibilityText": "$14.45" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Bee Stew Hot Pot Hot", + "textFormat": "Bee Stew Hot Pot Hot", + "accessibilityText": "Bee Stew Hot Pot Hot" + }, + "isSoldOut": false, + "hasCustomizations": true, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Clear noodle, napa, ear mushroom, bean curd, carrot, and zucchini.", + "textFormat": "Clear noodle, napa, ear mushroom, bean curd, carrot, and zucchini." + }, + "subsectionUuid": "44b65255-1e62-4c64-b07e-85e68a2758ea", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": false, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$14.45", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$14.45" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Bee Stew Hot Pot Hot", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Bee Stew Hot Pot Hot" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 8 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + } + ], + "sectionUUID": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "catalogSectionAnalyticsData": { + "catalogSectionPosition": 3 + }, + "paginationEnabled": false, + "scores": null + }, + "type": "standardItemsPayload" + } + }, + { + "type": "VERTICAL_GRID", + "catalogSectionUUID": "4b983dd6-765a-414d-8343-e25107891fc0", + "payload": { + "standardItemsPayload": { + "title": { + "text": "Dry Hot Pot" + }, + "spanCount": 2, + "catalogItems": [ + { + "uuid": "60cf1556-37bb-4d07-8a22-7f9cab8958a5", + "title": "Seasoning Beef Dry Hot Pot", + "itemDescription": "Spicy. String bean, lotus root, potato, broccoli, carrot, onion, green pepper, and bean sprout.", + "price": 1475, + "priceTagline": { + "text": "$14.75", + "textFormat": "$14.75", + "accessibilityText": "$14.75" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Seasoning Beef Dry Hot Pot", + "textFormat": "Seasoning Beef Dry Hot Pot", + "accessibilityText": "Seasoning Beef Dry Hot Pot" + }, + "isSoldOut": false, + "hasCustomizations": true, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy. String bean, lotus root, potato, broccoli, carrot, onion, green pepper, and bean sprout.", + "textFormat": "Spicy. String bean, lotus root, potato, broccoli, carrot, onion, green pepper, and bean sprout." + }, + "subsectionUuid": "4b983dd6-765a-414d-8343-e25107891fc0", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": false, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$14.75", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a078%\u00c2\u00a0(14)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$14.75, 78% of customers liked this based on 14 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Seasoning Beef Dry Hot Pot", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Seasoning Beef Dry Hot Pot" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 0, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "78%", + "numRatings": 14 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "e319d29e-b4e7-4451-9bde-2dde68dd8901", + "title": "Seasoning Fish Dry Hot Pot", + "itemDescription": "String bean, lotus root, potato, broccoli, carrot, onion, green pepper, and bean sprout with fish filet.", + "price": 1450, + "priceTagline": { + "text": "$14.50", + "textFormat": "$14.50", + "accessibilityText": "$14.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Seasoning Fish Dry Hot Pot", + "textFormat": "Seasoning Fish Dry Hot Pot", + "accessibilityText": "Seasoning Fish Dry Hot Pot" + }, + "isSoldOut": false, + "hasCustomizations": true, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "String bean, lotus root, potato, broccoli, carrot, onion, green pepper, and bean sprout with fish filet.", + "textFormat": "String bean, lotus root, potato, broccoli, carrot, onion, green pepper, and bean sprout with fish filet." + }, + "subsectionUuid": "4b983dd6-765a-414d-8343-e25107891fc0", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": false, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$14.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a090%\u00c2\u00a0(11)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$14.50, 90% of customers liked this based on 11 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Seasoning Fish Dry Hot Pot", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Seasoning Fish Dry Hot Pot" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 1, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "90%", + "numRatings": 11 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "7b2586de-b315-4acb-a88a-829824f83295", + "title": "Seasoning Lamb Dry Hot Pot", + "itemDescription": "Spicy. String bean, lotus root, potato, broccoli, carrot, onion, green pepper, and bean sprout.", + "price": 1575, + "priceTagline": { + "text": "$15.75", + "textFormat": "$15.75", + "accessibilityText": "$15.75" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Seasoning Lamb Dry Hot Pot", + "textFormat": "Seasoning Lamb Dry Hot Pot", + "accessibilityText": "Seasoning Lamb Dry Hot Pot" + }, + "isSoldOut": false, + "hasCustomizations": true, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy. String bean, lotus root, potato, broccoli, carrot, onion, green pepper, and bean sprout.", + "textFormat": "Spicy. String bean, lotus root, potato, broccoli, carrot, onion, green pepper, and bean sprout." + }, + "subsectionUuid": "4b983dd6-765a-414d-8343-e25107891fc0", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": false, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$15.75", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a0100%\u00c2\u00a0(4)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$15.75, 100% of customers liked this based on 4 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Seasoning Lamb Dry Hot Pot", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Seasoning Lamb Dry Hot Pot" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 2, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "100%", + "numRatings": 4 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "c2e4c998-a88f-4e59-b7be-7a490e8cc5bc", + "title": "Seasoning Large Shrimp Dry Hot Pot", + "itemDescription": "String bean, lotus root, potato, broccoli, carrot, onion, green pepper, and celery with headless shrimp.", + "price": 1450, + "priceTagline": { + "text": "$14.50", + "textFormat": "$14.50", + "accessibilityText": "$14.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Seasoning Large Shrimp Dry Hot Pot", + "textFormat": "Seasoning Large Shrimp Dry Hot Pot", + "accessibilityText": "Seasoning Large Shrimp Dry Hot Pot" + }, + "isSoldOut": false, + "hasCustomizations": true, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "String bean, lotus root, potato, broccoli, carrot, onion, green pepper, and celery with headless shrimp.", + "textFormat": "String bean, lotus root, potato, broccoli, carrot, onion, green pepper, and celery with headless shrimp." + }, + "subsectionUuid": "4b983dd6-765a-414d-8343-e25107891fc0", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": false, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$14.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a083%\u00c2\u00a0(6)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$14.50, 83% of customers liked this based on 6 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Seasoning Large Shrimp Dry Hot Pot", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Seasoning Large Shrimp Dry Hot Pot" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 3, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "83%", + "numRatings": 6 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "a5196484-c284-41d9-97f4-596babde5600", + "title": "Seasoning Vegetable Dry Hot Pot", + "itemDescription": "Spicy. String bean, lotus root, potato, broccoli, carrot, onion, green pepper, and bean sprout.", + "price": 1450, + "priceTagline": { + "text": "$14.50", + "textFormat": "$14.50", + "accessibilityText": "$14.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Seasoning Vegetable Dry Hot Pot", + "textFormat": "Seasoning Vegetable Dry Hot Pot", + "accessibilityText": "Seasoning Vegetable Dry Hot Pot" + }, + "isSoldOut": false, + "hasCustomizations": true, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy. String bean, lotus root, potato, broccoli, carrot, onion, green pepper, and bean sprout.", + "textFormat": "Spicy. String bean, lotus root, potato, broccoli, carrot, onion, green pepper, and bean sprout." + }, + "subsectionUuid": "4b983dd6-765a-414d-8343-e25107891fc0", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": false, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$14.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a075%\u00c2\u00a0(4)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$14.50, 75% of customers liked this based on 4 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Seasoning Vegetable Dry Hot Pot", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Seasoning Vegetable Dry Hot Pot" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 4, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "75%", + "numRatings": 4 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + } + ], + "sectionUUID": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "catalogSectionAnalyticsData": { + "catalogSectionPosition": 4 + }, + "paginationEnabled": false, + "scores": null + }, + "type": "standardItemsPayload" + } + }, + { + "type": "VERTICAL_GRID", + "catalogSectionUUID": "487ca40c-581c-4f54-806f-f4148b2c19c1", + "payload": { + "standardItemsPayload": { + "title": { + "text": "Clay Pot" + }, + "spanCount": 2, + "catalogItems": [ + { + "uuid": "ad904b12-7c1c-4509-87ac-4f41e92e4be1", + "title": "Beef Clay Pot", + "itemDescription": "Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, zucchini, and shanghai bok choi.", + "price": 1245, + "priceTagline": { + "text": "$12.45", + "textFormat": "$12.45", + "accessibilityText": "$12.45" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Beef Clay Pot", + "textFormat": "Beef Clay Pot", + "accessibilityText": "Beef Clay Pot" + }, + "isSoldOut": false, + "hasCustomizations": true, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, zucchini, and shanghai bok choi.", + "textFormat": "Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, zucchini, and shanghai bok choi." + }, + "subsectionUuid": "487ca40c-581c-4f54-806f-f4148b2c19c1", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": false, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.45", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a0100%\u00c2\u00a0(3)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.45, 100% of customers liked this based on 3 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Beef Clay Pot", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Beef Clay Pot" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 0, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "100%", + "numRatings": 3 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "9bfe7cb1-dc62-495f-b1e8-f154030c9ed5", + "title": "Lamb Clay Pot", + "itemDescription": "Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, zucchini, and shanghai bok choi.y.", + "price": 1275, + "priceTagline": { + "text": "$12.75", + "textFormat": "$12.75", + "accessibilityText": "$12.75" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Lamb Clay Pot", + "textFormat": "Lamb Clay Pot", + "accessibilityText": "Lamb Clay Pot" + }, + "isSoldOut": false, + "hasCustomizations": true, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, zucchini, and shanghai bok choi.y.", + "textFormat": "Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, zucchini, and shanghai bok choi.y." + }, + "subsectionUuid": "487ca40c-581c-4f54-806f-f4148b2c19c1", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": false, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.75", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a0100%\u00c2\u00a0(4)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.75, 100% of customers liked this based on 4 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Lamb Clay Pot", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Lamb Clay Pot" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 1, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "100%", + "numRatings": 4 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "c8cbb0a7-a2dd-4a30-ada7-dedeb4d088fb", + "title": "Tofu with Mixed Vegetable Clay Pot", + "itemDescription": "Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, zucchini, and shanghai bok choi.", + "price": 1150, + "priceTagline": { + "text": "$11.50", + "textFormat": "$11.50", + "accessibilityText": "$11.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Tofu with Mixed Vegetable Clay Pot", + "textFormat": "Tofu with Mixed Vegetable Clay Pot", + "accessibilityText": "Tofu with Mixed Vegetable Clay Pot" + }, + "isSoldOut": false, + "hasCustomizations": true, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, zucchini, and shanghai bok choi.", + "textFormat": "Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, zucchini, and shanghai bok choi." + }, + "subsectionUuid": "487ca40c-581c-4f54-806f-f4148b2c19c1", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": false, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$11.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$11.50" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Tofu with Mixed Vegetable Clay Pot", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Tofu with Mixed Vegetable Clay Pot" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 2 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "a5791560-f719-4856-9f58-9b1ca9c71294", + "title": "Seafood Clay Pot", + "itemDescription": "Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, zucchini, and shanghai bok choi.", + "price": 1150, + "priceTagline": { + "text": "$11.50", + "textFormat": "$11.50", + "accessibilityText": "$11.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Seafood Clay Pot", + "textFormat": "Seafood Clay Pot", + "accessibilityText": "Seafood Clay Pot" + }, + "isSoldOut": false, + "hasCustomizations": true, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, zucchini, and shanghai bok choi.", + "textFormat": "Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, zucchini, and shanghai bok choi." + }, + "subsectionUuid": "487ca40c-581c-4f54-806f-f4148b2c19c1", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": false, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$11.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$11.50" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Seafood Clay Pot", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Seafood Clay Pot" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 3 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "c764b51e-20e5-4d55-a021-21649c36bc0e", + "title": "Chicken Clay Pot", + "itemDescription": "Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, zucchini, and shanghai bok choi.", + "price": 1150, + "priceTagline": { + "text": "$11.50", + "textFormat": "$11.50", + "accessibilityText": "$11.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Chicken Clay Pot", + "textFormat": "Chicken Clay Pot", + "accessibilityText": "Chicken Clay Pot" + }, + "isSoldOut": false, + "hasCustomizations": true, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, zucchini, and shanghai bok choi.", + "textFormat": "Spicy. Clear noodle, Napa, ear mushroom, bean curd, carrot, zucchini, and shanghai bok choi." + }, + "subsectionUuid": "487ca40c-581c-4f54-806f-f4148b2c19c1", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": false, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$11.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$11.50" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Chicken Clay Pot", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Chicken Clay Pot" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 4 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + } + ], + "sectionUUID": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "catalogSectionAnalyticsData": { + "catalogSectionPosition": 5 + }, + "paginationEnabled": false, + "scores": null + }, + "type": "standardItemsPayload" + } + }, + { + "type": "VERTICAL_GRID", + "catalogSectionUUID": "f1a8f89b-a68a-47ed-86fc-cc78d6045d25", + "payload": { + "standardItemsPayload": { + "title": { + "text": "Pork" + }, + "spanCount": 2, + "catalogItems": [ + { + "uuid": "5ba9b285-8cd6-4104-8264-88d904ad8cc1", + "title": "Spicy Chili Pepper with Shredded Pork", + "itemDescription": "Spicy.", + "price": 1199, + "priceTagline": { + "text": "$11.99", + "textFormat": "$11.99", + "accessibilityText": "$11.99" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Spicy Chili Pepper with Shredded Pork", + "textFormat": "Spicy Chili Pepper with Shredded Pork", + "accessibilityText": "Spicy Chili Pepper with Shredded Pork" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy.", + "textFormat": "Spicy." + }, + "subsectionUuid": "f1a8f89b-a68a-47ed-86fc-cc78d6045d25", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$11.99", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a0100%\u00c2\u00a0(3)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$11.99, 100% of customers liked this based on 3 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Spicy Chili Pepper with Shredded Pork", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Spicy Chili Pepper with Shredded Pork" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 0, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "100%", + "numRatings": 3 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "8be9c065-ba30-4083-8067-d4574d0fc28c", + "title": "Shredded Pork with Bamboo Shoots", + "itemDescription": "Spicy.", + "price": 1199, + "priceTagline": { + "text": "$11.99", + "textFormat": "$11.99", + "accessibilityText": "$11.99" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Shredded Pork with Bamboo Shoots", + "textFormat": "Shredded Pork with Bamboo Shoots", + "accessibilityText": "Shredded Pork with Bamboo Shoots" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy.", + "textFormat": "Spicy." + }, + "subsectionUuid": "f1a8f89b-a68a-47ed-86fc-cc78d6045d25", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$11.99", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$11.99" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Shredded Pork with Bamboo Shoots", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Shredded Pork with Bamboo Shoots" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 1 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "f936b932-6098-49b8-9501-9938ad34bf70", + "title": "Eggplant with Ground Pork", + "itemDescription": "Saut\u00c3\u00a9ed eggplant and ground pork, often accompanied by a blend of garlic and soy-based sauce.", + "price": 1199, + "priceTagline": { + "text": "$11.99", + "textFormat": "$11.99", + "accessibilityText": "$11.99" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Eggplant with Ground Pork", + "textFormat": "Eggplant with Ground Pork", + "accessibilityText": "Eggplant with Ground Pork" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Saut\u00c3\u00a9ed eggplant and ground pork, often accompanied by a blend of garlic and soy-based sauce.", + "textFormat": "Saut\u00c3\u00a9ed eggplant and ground pork, often accompanied by a blend of garlic and soy-based sauce." + }, + "subsectionUuid": "f1a8f89b-a68a-47ed-86fc-cc78d6045d25", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$11.99", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a0100%\u00c2\u00a0(6)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$11.99, 100% of customers liked this based on 6 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Eggplant with Ground Pork", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Eggplant with Ground Pork" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 2, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "100%", + "numRatings": 6 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "36d998c3-6f08-4eab-b64d-1db7f3d18494", + "title": "Shredded Pork with Garlic Sauce", + "itemDescription": "Spicy.", + "price": 1199, + "priceTagline": { + "text": "$11.99", + "textFormat": "$11.99", + "accessibilityText": "$11.99" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Shredded Pork with Garlic Sauce", + "textFormat": "Shredded Pork with Garlic Sauce", + "accessibilityText": "Shredded Pork with Garlic Sauce" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy.", + "textFormat": "Spicy." + }, + "subsectionUuid": "f1a8f89b-a68a-47ed-86fc-cc78d6045d25", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$11.99", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$11.99" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Shredded Pork with Garlic Sauce", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Shredded Pork with Garlic Sauce" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 3 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "942eee52-36c4-42f7-9401-eb2ce79bc360", + "title": "Savory Baked Tofu with Shredded Pork", + "itemDescription": "Baked tofu combined with shredded pork, often prepared with a blend of savory seasonings and herbs to enhance the flavors.", + "price": 1199, + "priceTagline": { + "text": "$11.99", + "textFormat": "$11.99", + "accessibilityText": "$11.99" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Savory Baked Tofu with Shredded Pork", + "textFormat": "Savory Baked Tofu with Shredded Pork", + "accessibilityText": "Savory Baked Tofu with Shredded Pork" + }, + "isSoldOut": false, + "hasCustomizations": false, + "endorsement": { + "backgroundColor": { + "color": "#0E8345" + }, + "text": "Popular", + "textFormat": "Popular", + "accessibilityText": "Popular", + "textBorder": "PILL" + }, + "endorsementAnalyticsTag": "confidence_builders_popular", + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Baked tofu combined with shredded pork, often prepared with a blend of savory seasonings and herbs to enhance the flavors.", + "textFormat": "Baked tofu combined with shredded pork, often prepared with a blend of savory seasonings and herbs to enhance the flavors." + }, + "subsectionUuid": "f1a8f89b-a68a-47ed-86fc-cc78d6045d25", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$11.99", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$11.99" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Savory Baked Tofu with Shredded Pork", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Savory Baked Tofu with Shredded Pork" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 4, + "endorsementMetadata": { + "endorsementType": "most_liked" + } + }, + "endorsementV2": { + "style": { + "definedStyle": "GREEN", + "type": "definedStyle" + }, + "size": "X_SMALL", + "state": "ACTIVE", + "text": "Popular", + "hierarchy": "PRIMARY" + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "1b69d259-7578-43c1-86c8-3ae7efa227e8", + "title": "Shredded Pork with Plum Sauce", + "itemDescription": "Shredded pork typically saut\u00c3\u00a9ed with a blend of vegetables such as bamboo shoots, carrots, and onions, all enveloped in a sweet and tangy plum sauce.", + "price": 1250, + "priceTagline": { + "text": "$12.50", + "textFormat": "$12.50", + "accessibilityText": "$12.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Shredded Pork with Plum Sauce", + "textFormat": "Shredded Pork with Plum Sauce", + "accessibilityText": "Shredded Pork with Plum Sauce" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Shredded pork typically saut\u00c3\u00a9ed with a blend of vegetables such as bamboo shoots, carrots, and onions, all enveloped in a sweet and tangy plum sauce.", + "textFormat": "Shredded pork typically saut\u00c3\u00a9ed with a blend of vegetables such as bamboo shoots, carrots, and onions, all enveloped in a sweet and tangy plum sauce." + }, + "subsectionUuid": "f1a8f89b-a68a-47ed-86fc-cc78d6045d25", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.50" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Shredded Pork with Plum Sauce", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Shredded Pork with Plum Sauce" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 5 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "071c8aa3-9adb-58c4-be14-592ba607fe07", + "title": "pork intestine with vegetable and brown sauce.", + "itemDescription": "Pork intestine stir-fried with a selection of vegetables, typically served in a rich brown sauce.", + "price": 1399, + "priceTagline": { + "text": "$13.99", + "textFormat": "$13.99", + "accessibilityText": "$13.99" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "pork intestine with vegetable and brown sauce.", + "textFormat": "pork intestine with vegetable and brown sauce.", + "accessibilityText": "pork intestine with vegetable and brown sauce." + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Pork intestine stir-fried with a selection of vegetables, typically served in a rich brown sauce.", + "textFormat": "Pork intestine stir-fried with a selection of vegetables, typically served in a rich brown sauce." + }, + "subsectionUuid": "f1a8f89b-a68a-47ed-86fc-cc78d6045d25", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$13.99", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$13.99" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "pork intestine with vegetable and brown sauce.", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "pork intestine with vegetable and brown sauce." + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 6 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "6e1ce3f6-1588-5a24-a69d-cf337925437f", + "title": "Sizzling Pork Kidney", + "itemDescription": "Spicy.", + "price": 1250, + "priceTagline": { + "text": "$12.50", + "textFormat": "$12.50", + "accessibilityText": "$12.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Sizzling Pork Kidney", + "textFormat": "Sizzling Pork Kidney", + "accessibilityText": "Sizzling Pork Kidney" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy.", + "textFormat": "Spicy." + }, + "subsectionUuid": "f1a8f89b-a68a-47ed-86fc-cc78d6045d25", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.50" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Sizzling Pork Kidney", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Sizzling Pork Kidney" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 7 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "70a43fc5-69f4-595c-894b-acfd16c48871", + "title": "Baked Tofu & Chives with Shredded Pork", + "itemDescription": "Baked tofu and chives are combined with shredded pork, typically featuring a blend of spices and sauces to create a harmonious dish.", + "price": 1250, + "priceTagline": { + "text": "$12.50", + "textFormat": "$12.50", + "accessibilityText": "$12.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Baked Tofu & Chives with Shredded Pork", + "textFormat": "Baked Tofu & Chives with Shredded Pork", + "accessibilityText": "Baked Tofu & Chives with Shredded Pork" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Baked tofu and chives are combined with shredded pork, typically featuring a blend of spices and sauces to create a harmonious dish.", + "textFormat": "Baked tofu and chives are combined with shredded pork, typically featuring a blend of spices and sauces to create a harmonious dish." + }, + "subsectionUuid": "f1a8f89b-a68a-47ed-86fc-cc78d6045d25", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.50" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Baked Tofu & Chives with Shredded Pork", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Baked Tofu & Chives with Shredded Pork" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 8 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "44d88dbb-9792-5b74-8f7e-c5ca59e8d40f", + "title": "Twice Cooked Pork", + "itemDescription": "Spicy. Pork belly.", + "price": 1250, + "priceTagline": { + "text": "$12.50", + "textFormat": "$12.50", + "accessibilityText": "$12.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Twice Cooked Pork", + "textFormat": "Twice Cooked Pork", + "accessibilityText": "Twice Cooked Pork" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy. Pork belly.", + "textFormat": "Spicy. Pork belly." + }, + "subsectionUuid": "f1a8f89b-a68a-47ed-86fc-cc78d6045d25", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.50" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Twice Cooked Pork", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Twice Cooked Pork" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 9 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + } + ], + "sectionUUID": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "catalogSectionAnalyticsData": { + "catalogSectionPosition": 6 + }, + "paginationEnabled": false, + "scores": null + }, + "type": "standardItemsPayload" + } + }, + { + "type": "VERTICAL_GRID", + "catalogSectionUUID": "0ff9d928-99ec-4c80-a7cd-91d5a6b986cb", + "payload": { + "standardItemsPayload": { + "title": { + "text": "Chicken" + }, + "spanCount": 2, + "catalogItems": [ + { + "uuid": "41200ec1-70cb-599f-a145-c640113a1d5e", + "imageUrl": "https://tb-static.uber.com/prod/image-proc/processed_images/a346eb3bf73264bdb7b0822b27d2f0f9/0fb376d1da56c05644450062d25c5c84.jpeg", + "title": "Spicy Chicken", + "itemDescription": "Spicy.", + "price": 1250, + "priceTagline": { + "text": "$12.50", + "textFormat": "$12.50", + "accessibilityText": "$12.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Spicy Chicken", + "textFormat": "Spicy Chicken", + "accessibilityText": "Spicy Chicken" + }, + "isSoldOut": false, + "hasCustomizations": false, + "endorsement": { + "backgroundColor": { + "color": "#0E8345" + }, + "text": "Popular", + "textFormat": "Popular", + "accessibilityText": "Popular", + "textBorder": "PILL" + }, + "endorsementAnalyticsTag": "confidence_builders_popular", + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy.", + "textFormat": "Spicy." + }, + "subsectionUuid": "0ff9d928-99ec-4c80-a7cd-91d5a6b986cb", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.50" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Spicy Chicken", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Spicy Chicken" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 0, + "endorsementMetadata": { + "endorsementType": "most_liked" + } + }, + "endorsementV2": { + "style": { + "definedStyle": "GREEN", + "type": "definedStyle" + }, + "size": "X_SMALL", + "state": "ACTIVE", + "text": "Popular", + "hierarchy": "PRIMARY" + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "16b21465-e905-40d6-8d7f-e5ad3dfc331d", + "title": "General Tso's Chicken", + "itemDescription": "Spicy.", + "price": 1199, + "priceTagline": { + "text": "$11.99", + "textFormat": "$11.99", + "accessibilityText": "$11.99" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "General Tso's Chicken", + "textFormat": "General Tso's Chicken", + "accessibilityText": "General Tso's Chicken" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy.", + "textFormat": "Spicy." + }, + "subsectionUuid": "0ff9d928-99ec-4c80-a7cd-91d5a6b986cb", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$11.99", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a066%\u00c2\u00a0(27)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$11.99, 66% of customers liked this based on 27 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "General Tso's Chicken", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "General Tso's Chicken" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 1, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "66%", + "numRatings": 27 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "da12a27c-cd3c-4d49-bc9e-b679e1a789f0", + "title": "Sesame Chicken", + "itemDescription": "Crispy chicken pieces coated in a rich, savory sauce, topped with sesame seeds and served with a side of steamed broccoli.", + "price": 1199, + "priceTagline": { + "text": "$11.99", + "textFormat": "$11.99", + "accessibilityText": "$11.99" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Sesame Chicken", + "textFormat": "Sesame Chicken", + "accessibilityText": "Sesame Chicken" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Crispy chicken pieces coated in a rich, savory sauce, topped with sesame seeds and served with a side of steamed broccoli.", + "textFormat": "Crispy chicken pieces coated in a rich, savory sauce, topped with sesame seeds and served with a side of steamed broccoli." + }, + "subsectionUuid": "0ff9d928-99ec-4c80-a7cd-91d5a6b986cb", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$11.99", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a087%\u00c2\u00a0(32)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$11.99, 87% of customers liked this based on 32 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Sesame Chicken", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Sesame Chicken" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 2, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "87%", + "numRatings": 32 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "14c80685-7c5b-4bf2-a2f5-e82ec2771031", + "title": "Chicken Broccoli", + "itemDescription": "Sliced chicken breast stir-fried with fresh broccoli, typically includes a savory brown sauce.", + "price": 1250, + "priceTagline": { + "text": "$12.50", + "textFormat": "$12.50", + "accessibilityText": "$12.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Chicken Broccoli", + "textFormat": "Chicken Broccoli", + "accessibilityText": "Chicken Broccoli" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Sliced chicken breast stir-fried with fresh broccoli, typically includes a savory brown sauce.", + "textFormat": "Sliced chicken breast stir-fried with fresh broccoli, typically includes a savory brown sauce." + }, + "subsectionUuid": "0ff9d928-99ec-4c80-a7cd-91d5a6b986cb", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a070%\u00c2\u00a0(10)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.50, 70% of customers liked this based on 10 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Chicken Broccoli", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Chicken Broccoli" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 3, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "70%", + "numRatings": 10 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "0f6efbcb-a80b-4763-85ca-b2f4c1f6a57b", + "title": "Orange Chicken", + "itemDescription": "Spicy.", + "price": 1199, + "priceTagline": { + "text": "$11.99", + "textFormat": "$11.99", + "accessibilityText": "$11.99" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Orange Chicken", + "textFormat": "Orange Chicken", + "accessibilityText": "Orange Chicken" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy.", + "textFormat": "Spicy." + }, + "subsectionUuid": "0ff9d928-99ec-4c80-a7cd-91d5a6b986cb", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$11.99", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$11.99" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Orange Chicken", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Orange Chicken" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 4 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "a91ea7cd-7326-4fd1-b166-6055b58af261", + "title": "Mongolian Chicken", + "itemDescription": "Crispy slices of chicken stir fried in a sweet and savory sauce", + "price": 1250, + "priceTagline": { + "text": "$12.50", + "textFormat": "$12.50", + "accessibilityText": "$12.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Mongolian Chicken", + "textFormat": "Mongolian Chicken", + "accessibilityText": "Mongolian Chicken" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Crispy slices of chicken stir fried in a sweet and savory sauce", + "textFormat": "Crispy slices of chicken stir fried in a sweet and savory sauce" + }, + "subsectionUuid": "0ff9d928-99ec-4c80-a7cd-91d5a6b986cb", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.50" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Mongolian Chicken", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Mongolian Chicken" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 5 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "c7c3e454-b606-43fd-92b0-4a00917de66d", + "title": "Crispy Chicken with Garlic Sauce", + "itemDescription": "Crispy fried chicken pieces paired with fresh broccoli, drizzled with a savory garlic sauce.", + "price": 1199, + "priceTagline": { + "text": "$11.99", + "textFormat": "$11.99", + "accessibilityText": "$11.99" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Crispy Chicken with Garlic Sauce", + "textFormat": "Crispy Chicken with Garlic Sauce", + "accessibilityText": "Crispy Chicken with Garlic Sauce" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Crispy fried chicken pieces paired with fresh broccoli, drizzled with a savory garlic sauce.", + "textFormat": "Crispy fried chicken pieces paired with fresh broccoli, drizzled with a savory garlic sauce." + }, + "subsectionUuid": "0ff9d928-99ec-4c80-a7cd-91d5a6b986cb", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$11.99", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a090%\u00c2\u00a0(11)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$11.99, 90% of customers liked this based on 11 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Crispy Chicken with Garlic Sauce", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Crispy Chicken with Garlic Sauce" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 6, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "90%", + "numRatings": 11 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "93370066-f6ec-4d64-a0d1-5ffac240f66b", + "title": "Big Plate Chicken", + "itemDescription": "Spicy.", + "price": 1199, + "priceTagline": { + "text": "$11.99", + "textFormat": "$11.99", + "accessibilityText": "$11.99" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Big Plate Chicken", + "textFormat": "Big Plate Chicken", + "accessibilityText": "Big Plate Chicken" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy.", + "textFormat": "Spicy." + }, + "subsectionUuid": "0ff9d928-99ec-4c80-a7cd-91d5a6b986cb", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$11.99", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a0100%\u00c2\u00a0(6)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$11.99, 100% of customers liked this based on 6 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Big Plate Chicken", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Big Plate Chicken" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 7, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "100%", + "numRatings": 6 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "36ff3720-cce5-4d6b-9623-456a0854a08c", + "title": "Kung Pao Chicken", + "itemDescription": "Spicy. / .", + "price": 1199, + "priceTagline": { + "text": "$11.99", + "textFormat": "$11.99", + "accessibilityText": "$11.99" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Kung Pao Chicken", + "textFormat": "Kung Pao Chicken", + "accessibilityText": "Kung Pao Chicken" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy. / .", + "textFormat": "Spicy. / ." + }, + "subsectionUuid": "0ff9d928-99ec-4c80-a7cd-91d5a6b986cb", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$11.99", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a0100%\u00c2\u00a0(5)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$11.99, 100% of customers liked this based on 5 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Kung Pao Chicken", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Kung Pao Chicken" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 8, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "100%", + "numRatings": 5 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "82549c89-2f68-4a51-a952-f6c43d4171fa", + "title": "Sliced Chicken with Garlic Sauce", + "itemDescription": "Spicy.", + "price": 1250, + "priceTagline": { + "text": "$12.50", + "textFormat": "$12.50", + "accessibilityText": "$12.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Sliced Chicken with Garlic Sauce", + "textFormat": "Sliced Chicken with Garlic Sauce", + "accessibilityText": "Sliced Chicken with Garlic Sauce" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy.", + "textFormat": "Spicy." + }, + "subsectionUuid": "0ff9d928-99ec-4c80-a7cd-91d5a6b986cb", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.50" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Sliced Chicken with Garlic Sauce", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Sliced Chicken with Garlic Sauce" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 9 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "4c913445-7cde-4e8d-b435-096199d3d11c", + "title": "Hunan Chicken", + "itemDescription": "Spicy.", + "price": 1250, + "priceTagline": { + "text": "$12.50", + "textFormat": "$12.50", + "accessibilityText": "$12.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Hunan Chicken", + "textFormat": "Hunan Chicken", + "accessibilityText": "Hunan Chicken" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy.", + "textFormat": "Spicy." + }, + "subsectionUuid": "0ff9d928-99ec-4c80-a7cd-91d5a6b986cb", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a066%\u00c2\u00a0(3)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.50, 66% of customers liked this based on 3 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Hunan Chicken", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Hunan Chicken" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 10, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "66%", + "numRatings": 3 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "1d7bc661-aa0d-5cbc-a26d-499cd4606542", + "title": "Chopped Chicken", + "itemDescription": "Spicy. With preserved vegetable.", + "price": 1275, + "priceTagline": { + "text": "$12.75", + "textFormat": "$12.75", + "accessibilityText": "$12.75" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Chopped Chicken", + "textFormat": "Chopped Chicken", + "accessibilityText": "Chopped Chicken" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy. With preserved vegetable.", + "textFormat": "Spicy. With preserved vegetable." + }, + "subsectionUuid": "0ff9d928-99ec-4c80-a7cd-91d5a6b986cb", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.75", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.75" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Chopped Chicken", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Chopped Chicken" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 11 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "98fde3d0-efcc-5b37-b414-a3c8ded640fc", + "title": "Sweet & Sour Chicken", + "itemDescription": "Crispy chicken coated in a tangy sweet-and-sour sauce.", + "price": 1199, + "priceTagline": { + "text": "$11.99", + "textFormat": "$11.99", + "accessibilityText": "$11.99" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Sweet & Sour Chicken", + "textFormat": "Sweet & Sour Chicken", + "accessibilityText": "Sweet & Sour Chicken" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Crispy chicken coated in a tangy sweet-and-sour sauce.", + "textFormat": "Crispy chicken coated in a tangy sweet-and-sour sauce." + }, + "subsectionUuid": "0ff9d928-99ec-4c80-a7cd-91d5a6b986cb", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$11.99", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$11.99" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Sweet & Sour Chicken", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Sweet & Sour Chicken" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 12 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "bc09f7b8-79b9-5215-b82c-e55d98e1450f", + "title": "Basil Chicken", + "itemDescription": "Taste sweet, cook with basil.", + "price": 1275, + "priceTagline": { + "text": "$12.75", + "textFormat": "$12.75", + "accessibilityText": "$12.75" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Basil Chicken", + "textFormat": "Basil Chicken", + "accessibilityText": "Basil Chicken" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Taste sweet, cook with basil.", + "textFormat": "Taste sweet, cook with basil." + }, + "subsectionUuid": "0ff9d928-99ec-4c80-a7cd-91d5a6b986cb", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.75", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.75" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Basil Chicken", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Basil Chicken" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 13 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + } + ], + "sectionUUID": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "catalogSectionAnalyticsData": { + "catalogSectionPosition": 7 + }, + "paginationEnabled": false, + "scores": null + }, + "type": "standardItemsPayload" + } + }, + { + "type": "VERTICAL_GRID", + "catalogSectionUUID": "287c5f45-607c-59ee-845a-2e5f73e8e0f9", + "payload": { + "standardItemsPayload": { + "title": { + "text": "Beef & Lamb" + }, + "spanCount": 2, + "catalogItems": [ + { + "uuid": "9b3e1730-409a-5c05-acc9-fbb4d4578d5a", + "title": "Beef Stew", + "itemDescription": "Spicy. With style potato.", + "price": 1250, + "priceTagline": { + "text": "$12.50", + "textFormat": "$12.50", + "accessibilityText": "$12.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Beef Stew", + "textFormat": "Beef Stew", + "accessibilityText": "Beef Stew" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy. With style potato.", + "textFormat": "Spicy. With style potato." + }, + "subsectionUuid": "287c5f45-607c-59ee-845a-2e5f73e8e0f9", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.50" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Beef Stew", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Beef Stew" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 0 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "b4f5bdea-c79b-47a2-a608-ce688dfb40be", + "title": "Spicy Beef", + "itemDescription": "Spicy.", + "price": 1275, + "priceTagline": { + "text": "$12.75", + "textFormat": "$12.75", + "accessibilityText": "$12.75" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Spicy Beef", + "textFormat": "Spicy Beef", + "accessibilityText": "Spicy Beef" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy.", + "textFormat": "Spicy." + }, + "subsectionUuid": "287c5f45-607c-59ee-845a-2e5f73e8e0f9", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.75", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a085%\u00c2\u00a0(7)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.75, 85% of customers liked this based on 7 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Spicy Beef", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Spicy Beef" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 1, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "85%", + "numRatings": 7 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "e93c15ac-27cc-4e39-bc3e-c1f4d58d2b97", + "title": "Cumin Beef", + "itemDescription": "Spicy.", + "price": 1250, + "priceTagline": { + "text": "$12.50", + "textFormat": "$12.50", + "accessibilityText": "$12.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Cumin Beef", + "textFormat": "Cumin Beef", + "accessibilityText": "Cumin Beef" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy.", + "textFormat": "Spicy." + }, + "subsectionUuid": "287c5f45-607c-59ee-845a-2e5f73e8e0f9", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.50" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Cumin Beef", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Cumin Beef" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 2 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "0150984e-00c2-5336-aa6d-3ec6f2be1ea1", + "title": "pepper steak", + "itemDescription": "sliced beef with green pepper and onion with black bean sauce", + "price": 1275, + "priceTagline": { + "text": "$12.75", + "textFormat": "$12.75", + "accessibilityText": "$12.75" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "pepper steak", + "textFormat": "pepper steak", + "accessibilityText": "pepper steak" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "sliced beef with green pepper and onion with black bean sauce", + "textFormat": "sliced beef with green pepper and onion with black bean sauce" + }, + "subsectionUuid": "287c5f45-607c-59ee-845a-2e5f73e8e0f9", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.75", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.75" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "pepper steak", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "pepper steak" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 3 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "4797ce5a-38c4-4e6b-aa42-0261a0b30d18", + "title": "Savory Lamb", + "itemDescription": "Tender slices of lamb saut\u00c3\u00a9ed with a blend of traditional Chinese spices, often accompanied by a savory sauce.", + "price": 1399, + "priceTagline": { + "text": "$13.99", + "textFormat": "$13.99", + "accessibilityText": "$13.99" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Savory Lamb", + "textFormat": "Savory Lamb", + "accessibilityText": "Savory Lamb" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Tender slices of lamb saut\u00c3\u00a9ed with a blend of traditional Chinese spices, often accompanied by a savory sauce.", + "textFormat": "Tender slices of lamb saut\u00c3\u00a9ed with a blend of traditional Chinese spices, often accompanied by a savory sauce." + }, + "subsectionUuid": "287c5f45-607c-59ee-845a-2e5f73e8e0f9", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$13.99", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$13.99" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Savory Lamb", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Savory Lamb" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 4 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "cec44a89-49f1-40a5-8767-c04e8e764a19", + "title": "Savory Beef", + "itemDescription": "Spicy.", + "price": 1299, + "priceTagline": { + "text": "$12.99", + "textFormat": "$12.99", + "accessibilityText": "$12.99" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Savory Beef", + "textFormat": "Savory Beef", + "accessibilityText": "Savory Beef" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy.", + "textFormat": "Spicy." + }, + "subsectionUuid": "287c5f45-607c-59ee-845a-2e5f73e8e0f9", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.99", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.99" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Savory Beef", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Savory Beef" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 5 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "b5bde7d9-272b-4d33-918e-9fcc9402c49e", + "title": "Mongolian Beef", + "itemDescription": "Sizzling Mongolian beef, stir-fried with onions and peppers in a savory sauce.", + "price": 1250, + "priceTagline": { + "text": "$12.50", + "textFormat": "$12.50", + "accessibilityText": "$12.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Mongolian Beef", + "textFormat": "Mongolian Beef", + "accessibilityText": "Mongolian Beef" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Sizzling Mongolian beef, stir-fried with onions and peppers in a savory sauce.", + "textFormat": "Sizzling Mongolian beef, stir-fried with onions and peppers in a savory sauce." + }, + "subsectionUuid": "287c5f45-607c-59ee-845a-2e5f73e8e0f9", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a076%\u00c2\u00a0(13)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.50, 76% of customers liked this based on 13 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Mongolian Beef", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Mongolian Beef" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 6, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "76%", + "numRatings": 13 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "ce611ab8-d92c-4c1d-aae4-9e550102380b", + "title": "Beef with Broccoli", + "itemDescription": "Tender beef sauteed with fresh broccoli", + "price": 1250, + "priceTagline": { + "text": "$12.50", + "textFormat": "$12.50", + "accessibilityText": "$12.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Beef with Broccoli", + "textFormat": "Beef with Broccoli", + "accessibilityText": "Beef with Broccoli" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Tender beef sauteed with fresh broccoli", + "textFormat": "Tender beef sauteed with fresh broccoli" + }, + "subsectionUuid": "287c5f45-607c-59ee-845a-2e5f73e8e0f9", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.50" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Beef with Broccoli", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Beef with Broccoli" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 7 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "4a8971a5-dd33-4ed8-b58d-ce823e1abb8e", + "title": "Cumin Lamb", + "itemDescription": "Spicy.", + "price": 1399, + "priceTagline": { + "text": "$13.99", + "textFormat": "$13.99", + "accessibilityText": "$13.99" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Cumin Lamb", + "textFormat": "Cumin Lamb", + "accessibilityText": "Cumin Lamb" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy.", + "textFormat": "Spicy." + }, + "subsectionUuid": "287c5f45-607c-59ee-845a-2e5f73e8e0f9", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$13.99", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a0100%\u00c2\u00a0(3)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$13.99, 100% of customers liked this based on 3 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Cumin Lamb", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Cumin Lamb" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 8, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "100%", + "numRatings": 3 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "21cfd27f-79f5-5b8f-b62f-7b3e0af7fdf3", + "title": "Beef Stew with House Style Potato", + "itemDescription": "Slow-cooked beef stew with house style potatoes, typically includes a mix of aromatic herbs and spices in a rich, savory sauce.", + "price": 1250, + "priceTagline": { + "text": "$12.50", + "textFormat": "$12.50", + "accessibilityText": "$12.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Beef Stew with House Style Potato", + "textFormat": "Beef Stew with House Style Potato", + "accessibilityText": "Beef Stew with House Style Potato" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Slow-cooked beef stew with house style potatoes, typically includes a mix of aromatic herbs and spices in a rich, savory sauce.", + "textFormat": "Slow-cooked beef stew with house style potatoes, typically includes a mix of aromatic herbs and spices in a rich, savory sauce." + }, + "subsectionUuid": "287c5f45-607c-59ee-845a-2e5f73e8e0f9", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.50" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Beef Stew with House Style Potato", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Beef Stew with House Style Potato" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 9 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "89bef7bb-8d13-4bad-aee6-fb10215b6de3", + "title": "Sizzling Plate Beef", + "itemDescription": "Sizzling plate beef typically includes tender slices of beef saut\u00c3\u00a9ed with a mix of vegetables such as onions and bell peppers, served in a special sauce on a hot plate.", + "price": 1250, + "priceTagline": { + "text": "$12.50", + "textFormat": "$12.50", + "accessibilityText": "$12.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Sizzling Plate Beef", + "textFormat": "Sizzling Plate Beef", + "accessibilityText": "Sizzling Plate Beef" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Sizzling plate beef typically includes tender slices of beef saut\u00c3\u00a9ed with a mix of vegetables such as onions and bell peppers, served in a special sauce on a hot plate.", + "textFormat": "Sizzling plate beef typically includes tender slices of beef saut\u00c3\u00a9ed with a mix of vegetables such as onions and bell peppers, served in a special sauce on a hot plate." + }, + "subsectionUuid": "287c5f45-607c-59ee-845a-2e5f73e8e0f9", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.50" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Sizzling Plate Beef", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Sizzling Plate Beef" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 10 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "482974a8-fd17-440f-8994-f1f3fac8302b", + "title": "Mongolian Lamb", + "itemDescription": "Tender strips of lamb in a delicious sweet-savory sauce", + "price": 1399, + "priceTagline": { + "text": "$13.99", + "textFormat": "$13.99", + "accessibilityText": "$13.99" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Mongolian Lamb", + "textFormat": "Mongolian Lamb", + "accessibilityText": "Mongolian Lamb" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Tender strips of lamb in a delicious sweet-savory sauce", + "textFormat": "Tender strips of lamb in a delicious sweet-savory sauce" + }, + "subsectionUuid": "287c5f45-607c-59ee-845a-2e5f73e8e0f9", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$13.99", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$13.99" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Mongolian Lamb", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Mongolian Lamb" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 11 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + } + ], + "sectionUUID": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "catalogSectionAnalyticsData": { + "catalogSectionPosition": 8 + }, + "paginationEnabled": false, + "scores": null + }, + "type": "standardItemsPayload" + } + }, + { + "type": "VERTICAL_GRID", + "catalogSectionUUID": "f52f089e-c14c-4c14-a30b-5b42dae18f83", + "payload": { + "standardItemsPayload": { + "title": { + "text": "Vegetables" + }, + "spanCount": 2, + "catalogItems": [ + { + "uuid": "2dbab99c-dffd-4805-a493-d28a64a768ce", + "title": "Mapo Tofu", + "itemDescription": "Spicy.", + "price": 999, + "priceTagline": { + "text": "$9.99", + "textFormat": "$9.99", + "accessibilityText": "$9.99" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Mapo Tofu", + "textFormat": "Mapo Tofu", + "accessibilityText": "Mapo Tofu" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy.", + "textFormat": "Spicy." + }, + "subsectionUuid": "f52f089e-c14c-4c14-a30b-5b42dae18f83", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$9.99", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a081%\u00c2\u00a0(11)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$9.99, 81% of customers liked this based on 11 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Mapo Tofu", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Mapo Tofu" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 0, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "81%", + "numRatings": 11 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "baf39164-96dd-4b83-9a30-932e7282953d", + "title": "Scramble Egg with Tomato", + "itemDescription": "Eggs are scrambled and combined with fresh tomatoes, creating a simple yet classic dish.", + "price": 995, + "priceTagline": { + "text": "$9.95", + "textFormat": "$9.95", + "accessibilityText": "$9.95" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Scramble Egg with Tomato", + "textFormat": "Scramble Egg with Tomato", + "accessibilityText": "Scramble Egg with Tomato" + }, + "isSoldOut": false, + "hasCustomizations": false, + "endorsement": { + "backgroundColor": { + "color": "#0E8345" + }, + "text": "Popular", + "textFormat": "Popular", + "accessibilityText": "Popular", + "textBorder": "PILL" + }, + "endorsementAnalyticsTag": "confidence_builders_popular", + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Eggs are scrambled and combined with fresh tomatoes, creating a simple yet classic dish.", + "textFormat": "Eggs are scrambled and combined with fresh tomatoes, creating a simple yet classic dish." + }, + "subsectionUuid": "f52f089e-c14c-4c14-a30b-5b42dae18f83", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$9.95", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$9.95" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Scramble Egg with Tomato", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Scramble Egg with Tomato" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 1, + "endorsementMetadata": { + "endorsementType": "most_liked" + } + }, + "endorsementV2": { + "style": { + "definedStyle": "GREEN", + "type": "definedStyle" + }, + "size": "X_SMALL", + "state": "ACTIVE", + "text": "Popular", + "hierarchy": "PRIMARY" + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "c6d6c257-d100-4be5-a6a2-39d015cd229b", + "title": "String Bean", + "itemDescription": "With garlic.", + "price": 990, + "priceTagline": { + "text": "$9.90", + "textFormat": "$9.90", + "accessibilityText": "$9.90" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "String Bean", + "textFormat": "String Bean", + "accessibilityText": "String Bean" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "With garlic.", + "textFormat": "With garlic." + }, + "subsectionUuid": "f52f089e-c14c-4c14-a30b-5b42dae18f83", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$9.90", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a095%\u00c2\u00a0(20)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$9.90, 95% of customers liked this based on 20 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "String Bean", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "String Bean" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 2, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "95%", + "numRatings": 20 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "c8e94bf8-f183-42d3-9de9-5be63280ee0e", + "title": "Shredded Potato", + "itemDescription": "Spicy. With spicy sour sauce.", + "price": 950, + "priceTagline": { + "text": "$9.50", + "textFormat": "$9.50", + "accessibilityText": "$9.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Shredded Potato", + "textFormat": "Shredded Potato", + "accessibilityText": "Shredded Potato" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy. With spicy sour sauce.", + "textFormat": "Spicy. With spicy sour sauce." + }, + "subsectionUuid": "f52f089e-c14c-4c14-a30b-5b42dae18f83", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$9.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$9.50" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Shredded Potato", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Shredded Potato" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 3 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "cab5b414-719a-4538-ba97-094b9714f102", + "title": "Shanghai Bok Choy with Mushroom", + "itemDescription": "Shanghai bok choy and mushrooms, stir-fried, typically includes a savory sauce.", + "price": 950, + "priceTagline": { + "text": "$9.50", + "textFormat": "$9.50", + "accessibilityText": "$9.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Shanghai Bok Choy with Mushroom", + "textFormat": "Shanghai Bok Choy with Mushroom", + "accessibilityText": "Shanghai Bok Choy with Mushroom" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Shanghai bok choy and mushrooms, stir-fried, typically includes a savory sauce.", + "textFormat": "Shanghai bok choy and mushrooms, stir-fried, typically includes a savory sauce." + }, + "subsectionUuid": "f52f089e-c14c-4c14-a30b-5b42dae18f83", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$9.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a090%\u00c2\u00a0(11)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$9.50, 90% of customers liked this based on 11 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Shanghai Bok Choy with Mushroom", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Shanghai Bok Choy with Mushroom" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 4, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "90%", + "numRatings": 11 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "8280e722-9eb4-45cd-8029-600be5c5342c", + "title": "Eggplant with Spicy Garlic Sauce", + "itemDescription": "Spicy.", + "price": 1095, + "priceTagline": { + "text": "$10.95", + "textFormat": "$10.95", + "accessibilityText": "$10.95" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Eggplant with Spicy Garlic Sauce", + "textFormat": "Eggplant with Spicy Garlic Sauce", + "accessibilityText": "Eggplant with Spicy Garlic Sauce" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy.", + "textFormat": "Spicy." + }, + "subsectionUuid": "f52f089e-c14c-4c14-a30b-5b42dae18f83", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$10.95", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a0100%\u00c2\u00a0(5)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$10.95, 100% of customers liked this based on 5 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Eggplant with Spicy Garlic Sauce", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Eggplant with Spicy Garlic Sauce" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 5, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "100%", + "numRatings": 5 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "88b2d5fe-81e0-42c3-b9bc-bd51e3712546", + "title": "Taiwan Cabbage with Oyster Sauce", + "itemDescription": "Taiwanese cabbage stir-fried and coated in a savory oyster sauce, often accompanied by hints of garlic for added flavor.", + "price": 950, + "priceTagline": { + "text": "$9.50", + "textFormat": "$9.50", + "accessibilityText": "$9.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Taiwan Cabbage with Oyster Sauce", + "textFormat": "Taiwan Cabbage with Oyster Sauce", + "accessibilityText": "Taiwan Cabbage with Oyster Sauce" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Taiwanese cabbage stir-fried and coated in a savory oyster sauce, often accompanied by hints of garlic for added flavor.", + "textFormat": "Taiwanese cabbage stir-fried and coated in a savory oyster sauce, often accompanied by hints of garlic for added flavor." + }, + "subsectionUuid": "f52f089e-c14c-4c14-a30b-5b42dae18f83", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$9.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$9.50" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Taiwan Cabbage with Oyster Sauce", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Taiwan Cabbage with Oyster Sauce" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 6 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "52366fec-6083-4a1e-bde3-d88bff1c37fa", + "title": "Basil Eggplant", + "itemDescription": "Eggplant and basil stir-fried in a seasoned soy sauce, typically includes a blend of traditional Chinese spices.", + "price": 1095, + "priceTagline": { + "text": "$10.95", + "textFormat": "$10.95", + "accessibilityText": "$10.95" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Basil Eggplant", + "textFormat": "Basil Eggplant", + "accessibilityText": "Basil Eggplant" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Eggplant and basil stir-fried in a seasoned soy sauce, typically includes a blend of traditional Chinese spices.", + "textFormat": "Eggplant and basil stir-fried in a seasoned soy sauce, typically includes a blend of traditional Chinese spices." + }, + "subsectionUuid": "f52f089e-c14c-4c14-a30b-5b42dae18f83", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$10.95", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$10.95" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Basil Eggplant", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Basil Eggplant" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 7 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "13d547ad-4086-45bf-bcd1-dd269886136c", + "title": "Celery with Cashew", + "itemDescription": "Celery and cashew nuts stir-fried together, typically includes a mix of sauces for a savory taste.", + "price": 999, + "priceTagline": { + "text": "$9.99", + "textFormat": "$9.99", + "accessibilityText": "$9.99" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Celery with Cashew", + "textFormat": "Celery with Cashew", + "accessibilityText": "Celery with Cashew" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Celery and cashew nuts stir-fried together, typically includes a mix of sauces for a savory taste.", + "textFormat": "Celery and cashew nuts stir-fried together, typically includes a mix of sauces for a savory taste." + }, + "subsectionUuid": "f52f089e-c14c-4c14-a30b-5b42dae18f83", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$9.99", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$9.99" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Celery with Cashew", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Celery with Cashew" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 8 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "e6a0108b-53be-4a14-983c-b3624c098184", + "title": "Eggplant with Brown Sauce", + "itemDescription": "A couple of whole eggplant special cook with brown sauce.", + "price": 950, + "priceTagline": { + "text": "$9.50", + "textFormat": "$9.50", + "accessibilityText": "$9.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Eggplant with Brown Sauce", + "textFormat": "Eggplant with Brown Sauce", + "accessibilityText": "Eggplant with Brown Sauce" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "A couple of whole eggplant special cook with brown sauce.", + "textFormat": "A couple of whole eggplant special cook with brown sauce." + }, + "subsectionUuid": "f52f089e-c14c-4c14-a30b-5b42dae18f83", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$9.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a0100%\u00c2\u00a0(3)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$9.50, 100% of customers liked this based on 3 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Eggplant with Brown Sauce", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Eggplant with Brown Sauce" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 9, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "100%", + "numRatings": 3 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "110249f9-0ab9-437d-863a-6764d7bde14a", + "title": "Shredded Potato with Spicy Green Pepper", + "itemDescription": "Spicy.", + "price": 950, + "priceTagline": { + "text": "$9.50", + "textFormat": "$9.50", + "accessibilityText": "$9.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Shredded Potato with Spicy Green Pepper", + "textFormat": "Shredded Potato with Spicy Green Pepper", + "accessibilityText": "Shredded Potato with Spicy Green Pepper" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy.", + "textFormat": "Spicy." + }, + "subsectionUuid": "f52f089e-c14c-4c14-a30b-5b42dae18f83", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$9.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$9.50" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Shredded Potato with Spicy Green Pepper", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Shredded Potato with Spicy Green Pepper" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 10 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "bc316998-435f-477b-8a8e-2dcd81caf99c", + "title": "Home Style Spicy Bean Curd", + "itemDescription": "Spicy.", + "price": 995, + "priceTagline": { + "text": "$9.95", + "textFormat": "$9.95", + "accessibilityText": "$9.95" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Home Style Spicy Bean Curd", + "textFormat": "Home Style Spicy Bean Curd", + "accessibilityText": "Home Style Spicy Bean Curd" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy.", + "textFormat": "Spicy." + }, + "subsectionUuid": "f52f089e-c14c-4c14-a30b-5b42dae18f83", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$9.95", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a080%\u00c2\u00a0(5)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$9.95, 80% of customers liked this based on 5 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Home Style Spicy Bean Curd", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Home Style Spicy Bean Curd" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 11, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "80%", + "numRatings": 5 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "fd3263be-fa7e-47ad-bb2a-e09a93357864", + "title": "Braised Bean Curd", + "itemDescription": "With vegetable and spicy sauce or with vegetable and brown sauce.", + "price": 995, + "priceTagline": { + "text": "$9.95", + "textFormat": "$9.95", + "accessibilityText": "$9.95" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Braised Bean Curd", + "textFormat": "Braised Bean Curd", + "accessibilityText": "Braised Bean Curd" + }, + "isSoldOut": false, + "hasCustomizations": true, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "With vegetable and spicy sauce or with vegetable and brown sauce.", + "textFormat": "With vegetable and spicy sauce or with vegetable and brown sauce." + }, + "subsectionUuid": "f52f089e-c14c-4c14-a30b-5b42dae18f83", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": false, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$9.95", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$9.95" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Braised Bean Curd", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Braised Bean Curd" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 12 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "4a1dc794-e919-59c2-8de6-fd65cbafdb3c", + "title": "Saut\u00c3\u00a9ed Pepper Bean Curd", + "itemDescription": "Saut\u00c3\u00a9ed bean curd with peppers, typically includes tofu stir-fried with a variety of bell peppers.", + "price": 950, + "priceTagline": { + "text": "$9.50", + "textFormat": "$9.50", + "accessibilityText": "$9.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Saut\u00c3\u00a9ed Pepper Bean Curd", + "textFormat": "Saut\u00c3\u00a9ed Pepper Bean Curd", + "accessibilityText": "Saut\u00c3\u00a9ed Pepper Bean Curd" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Saut\u00c3\u00a9ed bean curd with peppers, typically includes tofu stir-fried with a variety of bell peppers.", + "textFormat": "Saut\u00c3\u00a9ed bean curd with peppers, typically includes tofu stir-fried with a variety of bell peppers." + }, + "subsectionUuid": "f52f089e-c14c-4c14-a30b-5b42dae18f83", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$9.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$9.50" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Saut\u00c3\u00a9ed Pepper Bean Curd", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Saut\u00c3\u00a9ed Pepper Bean Curd" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 13 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "6efbd026-5461-5ac0-896e-f8f1266396de", + "title": "Green Pepper & Potato", + "itemDescription": "With eggplant.", + "price": 1095, + "priceTagline": { + "text": "$10.95", + "textFormat": "$10.95", + "accessibilityText": "$10.95" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Green Pepper & Potato", + "textFormat": "Green Pepper & Potato", + "accessibilityText": "Green Pepper & Potato" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "With eggplant.", + "textFormat": "With eggplant." + }, + "subsectionUuid": "f52f089e-c14c-4c14-a30b-5b42dae18f83", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$10.95", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$10.95" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Green Pepper & Potato", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Green Pepper & Potato" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 14 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + } + ], + "sectionUUID": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "catalogSectionAnalyticsData": { + "catalogSectionPosition": 9 + }, + "paginationEnabled": false, + "scores": null + }, + "type": "standardItemsPayload" + } + }, + { + "type": "VERTICAL_GRID", + "catalogSectionUUID": "02fc44b6-0da9-460f-ae56-f0b5f12ab5bd", + "payload": { + "standardItemsPayload": { + "title": { + "text": "Seafood" + }, + "spanCount": 2, + "catalogItems": [ + { + "uuid": "ef2f277d-0879-50bd-9b57-ea039b889b79", + "imageUrl": "https://tb-static.uber.com/prod/image-proc/processed_images/caaf3484cb727246ef7d86fe2ab654ce/0fb376d1da56c05644450062d25c5c84.jpeg", + "title": "Hong Kong Style Shrimp", + "itemDescription": "Spicy.", + "price": 1350, + "priceTagline": { + "text": "$13.50", + "textFormat": "$13.50", + "accessibilityText": "$13.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Hong Kong Style Shrimp", + "textFormat": "Hong Kong Style Shrimp", + "accessibilityText": "Hong Kong Style Shrimp" + }, + "isSoldOut": false, + "hasCustomizations": false, + "endorsement": { + "backgroundColor": { + "color": "#0E8345" + }, + "text": "Popular", + "textFormat": "Popular", + "accessibilityText": "Popular", + "textBorder": "PILL" + }, + "endorsementAnalyticsTag": "confidence_builders_popular", + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy.", + "textFormat": "Spicy." + }, + "subsectionUuid": "02fc44b6-0da9-460f-ae56-f0b5f12ab5bd", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$13.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$13.50" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Hong Kong Style Shrimp", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Hong Kong Style Shrimp" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 0, + "endorsementMetadata": { + "endorsementType": "most_liked" + } + }, + "endorsementV2": { + "style": { + "definedStyle": "GREEN", + "type": "definedStyle" + }, + "size": "X_SMALL", + "state": "ACTIVE", + "text": "Popular", + "hierarchy": "PRIMARY" + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "9ddcbc29-2472-4c1a-bc61-cb4e93929d3e", + "title": "Seafood With fried tofu", + "itemDescription": "With fried tofu.", + "price": 1299, + "priceTagline": { + "text": "$12.99", + "textFormat": "$12.99", + "accessibilityText": "$12.99" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Seafood With fried tofu", + "textFormat": "Seafood With fried tofu", + "accessibilityText": "Seafood With fried tofu" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "With fried tofu.", + "textFormat": "With fried tofu." + }, + "subsectionUuid": "02fc44b6-0da9-460f-ae56-f0b5f12ab5bd", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.99", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a0100%\u00c2\u00a0(13)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.99, 100% of customers liked this based on 13 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Seafood With fried tofu", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Seafood With fried tofu" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 1, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "100%", + "numRatings": 13 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "7db5286d-f660-4b2f-9014-85db22d28be4", + "title": "Pan Fried Noodle With seafood", + "itemDescription": "With seafood.", + "price": 1299, + "priceTagline": { + "text": "$12.99", + "textFormat": "$12.99", + "accessibilityText": "$12.99" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Pan Fried Noodle With seafood", + "textFormat": "Pan Fried Noodle With seafood", + "accessibilityText": "Pan Fried Noodle With seafood" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "With seafood.", + "textFormat": "With seafood." + }, + "subsectionUuid": "02fc44b6-0da9-460f-ae56-f0b5f12ab5bd", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.99", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.99" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Pan Fried Noodle With seafood", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Pan Fried Noodle With seafood" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 2 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "ad003cd6-8a38-4d87-8438-261871ffe3e2", + "title": "Ginger Scallion Shrimp", + "itemDescription": "Shrimp stir-fried with fresh ginger and scallions, typically includes a savory sauce to highlight the ingredients.", + "price": 1275, + "priceTagline": { + "text": "$12.75", + "textFormat": "$12.75", + "accessibilityText": "$12.75" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Ginger Scallion Shrimp", + "textFormat": "Ginger Scallion Shrimp", + "accessibilityText": "Ginger Scallion Shrimp" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Shrimp stir-fried with fresh ginger and scallions, typically includes a savory sauce to highlight the ingredients.", + "textFormat": "Shrimp stir-fried with fresh ginger and scallions, typically includes a savory sauce to highlight the ingredients." + }, + "subsectionUuid": "02fc44b6-0da9-460f-ae56-f0b5f12ab5bd", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.75", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.75" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Ginger Scallion Shrimp", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Ginger Scallion Shrimp" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 3 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "93771df4-2b97-4a4b-92f3-8ac12e709f35", + "title": "Hunan Style Shrimp", + "itemDescription": "Spicy and sweet chili sauce with big shirmp", + "price": 1295, + "priceTagline": { + "text": "$12.95", + "textFormat": "$12.95", + "accessibilityText": "$12.95" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Hunan Style Shrimp", + "textFormat": "Hunan Style Shrimp", + "accessibilityText": "Hunan Style Shrimp" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy and sweet chili sauce with big shirmp", + "textFormat": "Spicy and sweet chili sauce with big shirmp" + }, + "subsectionUuid": "02fc44b6-0da9-460f-ae56-f0b5f12ab5bd", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.95", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.95" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Hunan Style Shrimp", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Hunan Style Shrimp" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 4 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "552bb496-7a87-4b43-86e9-0cab6c1e8d98", + "title": "Spicy Fish", + "itemDescription": "Spicy.", + "price": 1250, + "priceTagline": { + "text": "$12.50", + "textFormat": "$12.50", + "accessibilityText": "$12.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Spicy Fish", + "textFormat": "Spicy Fish", + "accessibilityText": "Spicy Fish" + }, + "isSoldOut": false, + "hasCustomizations": false, + "endorsement": { + "backgroundColor": { + "color": "#0E8345" + }, + "text": "Popular", + "textFormat": "Popular", + "accessibilityText": "Popular", + "textBorder": "PILL" + }, + "endorsementAnalyticsTag": "confidence_builders_popular", + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy.", + "textFormat": "Spicy." + }, + "subsectionUuid": "02fc44b6-0da9-460f-ae56-f0b5f12ab5bd", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.50" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Spicy Fish", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Spicy Fish" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 5, + "endorsementMetadata": { + "endorsementType": "most_liked" + } + }, + "endorsementV2": { + "style": { + "definedStyle": "GREEN", + "type": "definedStyle" + }, + "size": "X_SMALL", + "state": "ACTIVE", + "text": "Popular", + "hierarchy": "PRIMARY" + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "cb1f0faf-9f42-409d-a503-277ad8547f2f", + "title": "Cashew With shrimp", + "itemDescription": "With shrimp.", + "price": 1250, + "priceTagline": { + "text": "$12.50", + "textFormat": "$12.50", + "accessibilityText": "$12.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Cashew With shrimp", + "textFormat": "Cashew With shrimp", + "accessibilityText": "Cashew With shrimp" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "With shrimp.", + "textFormat": "With shrimp." + }, + "subsectionUuid": "02fc44b6-0da9-460f-ae56-f0b5f12ab5bd", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.50" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Cashew With shrimp", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Cashew With shrimp" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 6 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "f24593e2-c94a-4542-a1a9-6dc3a11a0b49", + "title": "Black Bean Sauce with Whole Fish", + "itemDescription": "whole fish with black bean sauce", + "price": 1250, + "priceTagline": { + "text": "$12.50", + "textFormat": "$12.50", + "accessibilityText": "$12.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Black Bean Sauce with Whole Fish", + "textFormat": "Black Bean Sauce with Whole Fish", + "accessibilityText": "Black Bean Sauce with Whole Fish" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "whole fish with black bean sauce", + "textFormat": "whole fish with black bean sauce" + }, + "subsectionUuid": "02fc44b6-0da9-460f-ae56-f0b5f12ab5bd", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.50" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Black Bean Sauce with Whole Fish", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Black Bean Sauce with Whole Fish" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 7 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "529871ef-88fb-42d4-8601-d4446b0771b4", + "title": "Fish Fillet With vegetable", + "itemDescription": "With vegetable and white sauce", + "price": 1250, + "priceTagline": { + "text": "$12.50", + "textFormat": "$12.50", + "accessibilityText": "$12.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Fish Fillet With vegetable", + "textFormat": "Fish Fillet With vegetable", + "accessibilityText": "Fish Fillet With vegetable" + }, + "isSoldOut": false, + "hasCustomizations": false, + "endorsement": { + "backgroundColor": { + "color": "#0E8345" + }, + "text": "Popular", + "textFormat": "Popular", + "accessibilityText": "Popular", + "textBorder": "PILL" + }, + "endorsementAnalyticsTag": "confidence_builders_popular", + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "With vegetable and white sauce", + "textFormat": "With vegetable and white sauce" + }, + "subsectionUuid": "02fc44b6-0da9-460f-ae56-f0b5f12ab5bd", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.50" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Fish Fillet With vegetable", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Fish Fillet With vegetable" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 8, + "endorsementMetadata": { + "endorsementType": "most_liked" + } + }, + "endorsementV2": { + "style": { + "definedStyle": "GREEN", + "type": "definedStyle" + }, + "size": "X_SMALL", + "state": "ACTIVE", + "text": "Popular", + "hierarchy": "PRIMARY" + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "5332d3ec-2344-4046-9173-351ce997ec4b", + "title": "Steamed Fish", + "itemDescription": "Tender steamed fish fillets garnished with julienned carrots, fresh cilantro, and a savory soy-based sauce.", + "price": 1250, + "priceTagline": { + "text": "$12.50", + "textFormat": "$12.50", + "accessibilityText": "$12.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Steamed Fish", + "textFormat": "Steamed Fish", + "accessibilityText": "Steamed Fish" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Tender steamed fish fillets garnished with julienned carrots, fresh cilantro, and a savory soy-based sauce.", + "textFormat": "Tender steamed fish fillets garnished with julienned carrots, fresh cilantro, and a savory soy-based sauce." + }, + "subsectionUuid": "02fc44b6-0da9-460f-ae56-f0b5f12ab5bd", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": " \u00e2\u0080\u00a2 ", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "THUMB_UP_OUTLINE", + "color": "PRIMARY", + "size": "SPACING_UNIT_1_5X" + }, + "alignment": "CENTERED" + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": "\u00c2\u00a0100%\u00c2\u00a0(7)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.50, 100% of customers liked this based on 7 reviews." + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Steamed Fish", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Steamed Fish" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 9, + "endorsementMetadata": { + "endorsementType": "ratings", + "rating": "100%", + "numRatings": 7 + } + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "4f38ba1e-0f92-58b0-8c8d-e15789e81eb0", + "title": "Spicy Fish with Bean Sprouts & Clear Noodle", + "itemDescription": "Spicy.", + "price": 1199, + "priceTagline": { + "text": "$11.99", + "textFormat": "$11.99", + "accessibilityText": "$11.99" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Spicy Fish with Bean Sprouts & Clear Noodle", + "textFormat": "Spicy Fish with Bean Sprouts & Clear Noodle", + "accessibilityText": "Spicy Fish with Bean Sprouts & Clear Noodle" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy.", + "textFormat": "Spicy." + }, + "subsectionUuid": "02fc44b6-0da9-460f-ae56-f0b5f12ab5bd", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$11.99", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$11.99" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Spicy Fish with Bean Sprouts & Clear Noodle", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Spicy Fish with Bean Sprouts & Clear Noodle" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 10 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "e7a34768-8fd1-5785-8a4c-36562e68fad4", + "title": "Sweet & Sour Whole Fish", + "itemDescription": "Whole fish, deep-fried and accompanied by a tangy sweet and sour sauce, typically includes pineapple, bell peppers, and onions.", + "price": 1250, + "priceTagline": { + "text": "$12.50", + "textFormat": "$12.50", + "accessibilityText": "$12.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Sweet & Sour Whole Fish", + "textFormat": "Sweet & Sour Whole Fish", + "accessibilityText": "Sweet & Sour Whole Fish" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Whole fish, deep-fried and accompanied by a tangy sweet and sour sauce, typically includes pineapple, bell peppers, and onions.", + "textFormat": "Whole fish, deep-fried and accompanied by a tangy sweet and sour sauce, typically includes pineapple, bell peppers, and onions." + }, + "subsectionUuid": "02fc44b6-0da9-460f-ae56-f0b5f12ab5bd", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.50" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Sweet & Sour Whole Fish", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Sweet & Sour Whole Fish" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 11 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "4bd73944-d7cc-51bd-b446-3ca3192c093f", + "title": "Malatang", + "itemDescription": "Sichuan style spicy soup: fish filet, beef,fish ball,luncheon loaf,mushroom,bokchoy,quail eggs,clear noodle,napa,lotusroot,bamboo shoots,tofu...for: one person:$16.00; for two person:$22.75", + "price": 1695, + "priceTagline": { + "text": "$16.95", + "textFormat": "$16.95", + "accessibilityText": "$16.95" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Malatang", + "textFormat": "Malatang", + "accessibilityText": "Malatang" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Sichuan style spicy soup: fish filet, beef,fish ball,luncheon loaf,mushroom,bokchoy,quail eggs,clear noodle,napa,lotusroot,bamboo shoots,tofu...for: one person:$16.00; for two person:$22.75", + "textFormat": "Sichuan style spicy soup: fish filet, beef,fish ball,luncheon loaf,mushroom,bokchoy,quail eggs,clear noodle,napa,lotusroot,bamboo shoots,tofu...for: one person:$16.00; for two person:$22.75" + }, + "subsectionUuid": "02fc44b6-0da9-460f-ae56-f0b5f12ab5bd", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$16.95", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$16.95" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Malatang", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Malatang" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 12 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "09b6d017-7712-5fc4-bf27-7d84f680e32c", + "title": "Braised Whole Fish", + "itemDescription": "Whole tilapia braised with vege in brown sauce. spicy or no spicy your choice.", + "price": 1250, + "priceTagline": { + "text": "$12.50", + "textFormat": "$12.50", + "accessibilityText": "$12.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Braised Whole Fish", + "textFormat": "Braised Whole Fish", + "accessibilityText": "Braised Whole Fish" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Whole tilapia braised with vege in brown sauce. spicy or no spicy your choice.", + "textFormat": "Whole tilapia braised with vege in brown sauce. spicy or no spicy your choice." + }, + "subsectionUuid": "02fc44b6-0da9-460f-ae56-f0b5f12ab5bd", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.50" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Braised Whole Fish", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Braised Whole Fish" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 13 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "f48b41c1-da77-5fea-8ec7-ab8863e759c0", + "title": "Sichuan chili sauce with Whole Fish", + "itemDescription": "Spicy.", + "price": 1250, + "priceTagline": { + "text": "$12.50", + "textFormat": "$12.50", + "accessibilityText": "$12.50" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Sichuan chili sauce with Whole Fish", + "textFormat": "Sichuan chili sauce with Whole Fish", + "accessibilityText": "Sichuan chili sauce with Whole Fish" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Spicy.", + "textFormat": "Spicy." + }, + "subsectionUuid": "02fc44b6-0da9-460f-ae56-f0b5f12ab5bd", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.50", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.50" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Sichuan chili sauce with Whole Fish", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Sichuan chili sauce with Whole Fish" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 14 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "cbbcc9c4-f905-5747-b0bb-f988eef7c19c", + "title": "Fish with sour & salt vegetable soup", + "itemDescription": "fish with salt & sour vegetable soup.", + "price": 1295, + "priceTagline": { + "text": "$12.95", + "textFormat": "$12.95", + "accessibilityText": "$12.95" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Fish with sour & salt vegetable soup", + "textFormat": "Fish with sour & salt vegetable soup", + "accessibilityText": "Fish with sour & salt vegetable soup" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "fish with salt & sour vegetable soup.", + "textFormat": "fish with salt & sour vegetable soup." + }, + "subsectionUuid": "02fc44b6-0da9-460f-ae56-f0b5f12ab5bd", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$12.95", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$12.95" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Fish with sour & salt vegetable soup", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Fish with sour & salt vegetable soup" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 15 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "5ec80132-2bec-58c7-aa81-7b0d3718dea0", + "title": "Salt & Pepper Shrimp", + "itemDescription": "Shrimp deep-fried and seasoned with salt and pepper, typically includes onions and green scallions.", + "price": 1375, + "priceTagline": { + "text": "$13.75", + "textFormat": "$13.75", + "accessibilityText": "$13.75" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Salt & Pepper Shrimp", + "textFormat": "Salt & Pepper Shrimp", + "accessibilityText": "Salt & Pepper Shrimp" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Shrimp deep-fried and seasoned with salt and pepper, typically includes onions and green scallions.", + "textFormat": "Shrimp deep-fried and seasoned with salt and pepper, typically includes onions and green scallions." + }, + "subsectionUuid": "02fc44b6-0da9-460f-ae56-f0b5f12ab5bd", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$13.75", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$13.75" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Salt & Pepper Shrimp", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Salt & Pepper Shrimp" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 16 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "b7d29dbe-bbbb-5e80-8bfc-63091eb628fa", + "title": "Salt peper Squid", + "itemDescription": "Lightly battered squid, seasoned with salt and pepper, and typically includes onions and chillies for a spicy touch.", + "price": 1355, + "priceTagline": { + "text": "$13.55", + "textFormat": "$13.55", + "accessibilityText": "$13.55" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Salt peper Squid", + "textFormat": "Salt peper Squid", + "accessibilityText": "Salt peper Squid" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "Lightly battered squid, seasoned with salt and pepper, and typically includes onions and chillies for a spicy touch.", + "textFormat": "Lightly battered squid, seasoned with salt and pepper, and typically includes onions and chillies for a spicy touch." + }, + "subsectionUuid": "02fc44b6-0da9-460f-ae56-f0b5f12ab5bd", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$13.55", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$13.55" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Salt peper Squid", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Salt peper Squid" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 17 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + }, + { + "uuid": "5e4dad8b-9b0e-5d46-8360-5125249b8bfe", + "title": "Malatang", + "itemDescription": "for two person: fish filet,beef, fish ball, luncheon meat,tofu, mushroom, clear noodle,bochoy,lotusroot, bamboo shoots...", + "price": 2395, + "priceTagline": { + "text": "$23.95", + "textFormat": "$23.95", + "accessibilityText": "$23.95" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "Malatang", + "textFormat": "Malatang", + "accessibilityText": "Malatang" + }, + "isSoldOut": false, + "hasCustomizations": false, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "for two person: fish filet,beef, fish ball, luncheon meat,tofu, mushroom, clear noodle,bochoy,lotusroot, bamboo shoots...", + "textFormat": "for two person: fish filet,beef, fish ball, luncheon meat,tofu, mushroom, clear noodle,bochoy,lotusroot, bamboo shoots..." + }, + "subsectionUuid": "02fc44b6-0da9-460f-ae56-f0b5f12ab5bd", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": true, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$23.95", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$23.95" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Malatang", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Malatang" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 18 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + } + ], + "sectionUUID": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "catalogSectionAnalyticsData": { + "catalogSectionPosition": 10 + }, + "paginationEnabled": false, + "scores": null + }, + "type": "standardItemsPayload" + } + }, + { + "type": "VERTICAL_GRID", + "catalogSectionUUID": "017a5d2c-88c7-5f1e-8c5e-d8bf76ac5d12", + "payload": { + "standardItemsPayload": { + "title": { + "text": "Malatang" + }, + "spanCount": 2, + "catalogItems": [ + { + "uuid": "28eaf6a2-f83b-5d67-b20a-1cd59b4ed42c", + "title": "grilled fish for two person", + "itemDescription": "two whole grilled fish with vegetable and sauce.", + "price": 2275, + "priceTagline": { + "text": "$22.75", + "textFormat": "$22.75", + "accessibilityText": "$22.75" + }, + "spanCount": 2, + "displayType": "LIST", + "titleBadge": { + "text": "grilled fish for two person", + "textFormat": "grilled fish for two person", + "accessibilityText": "grilled fish for two person" + }, + "isSoldOut": false, + "hasCustomizations": true, + "numAlcoholicItems": 0, + "itemDescriptionBadge": { + "text": "two whole grilled fish with vegetable and sauce.", + "textFormat": "two whole grilled fish with vegetable and sauce." + }, + "subsectionUuid": "017a5d2c-88c7-5f1e-8c5e-d8bf76ac5d12", + "isAvailable": true, + "purchaseInfo": { + "purchaseOptions": [], + "pricingInfo": {} + }, + "sectionUuid": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "quickAddConfig": { + "shouldShow": true, + "isInteractionEnabled": false, + "position": "BOTTOM_TRAILING" + }, + "labelPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "$22.75", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "$22.75" + }, + "headingPrimary": { + "richTextElements": [ + { + "text": { + "text": { + "text": "grilled fish for two person", + "font": { + "style": "LABEL_DEFAULT", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "grilled fish for two person" + }, + "itemAvailabilityState": "UNKNOWN", + "catalogItemAnalyticsData": { + "catalogSectionItemPosition": 0 + }, + "imageOverlayElements": null, + "itemThumbnailElements": null, + "isWebPdpSupported": false + } + ], + "sectionUUID": "516658e0-667f-5063-a3e9-d9d3e13a2e53", + "catalogSectionAnalyticsData": { + "catalogSectionPosition": 11 + }, + "paginationEnabled": false, + "scores": null + }, + "type": "standardItemsPayload" + } + } + ] + }, + "groupOrderSizes": [], + "hideFavoriteButton": false, + "isVenueStore": false, + "isGroupOrderingDisabled": false, + "timeWindowPicker": { + "headerText": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Schedule pickup", + "font": { + "style": "HEADING_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Schedule pickup" + }, + "secondaryText": { + "richTextElements": [ + { + "text": { + "text": { + "text": "China Kitchen opens at 10:00 PM", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "LIGHT" + }, + "color": "CONTENT_SECONDARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "China Kitchen opens at 10:00 PM" + }, + "dates": [ + { + "date": "2025-03-11", + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Today", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + }, + "color": "CONTENT_INVERSE_TERTIARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Today" + }, + "listItems": [], + "viewState": "DISABLED" + }, + { + "date": "2025-03-12", + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Tomorrow", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + }, + "color": "PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Tomorrow" + }, + "secondaryText": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Mar 12", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "LIGHT" + }, + "color": "PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Mar 12" + }, + "listItems": [ + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 1, + "date": "2025-03-12", + "startTime": 630, + "endTime": 660, + "startTimeSeconds": 1741746600 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "10:30 AM - 11:00 AM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "10:30 AM - 11:00 AM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 2, + "date": "2025-03-12", + "startTime": 645, + "endTime": 675, + "startTimeSeconds": 1741747500 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "10:45 AM - 11:15 AM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "10:45 AM - 11:15 AM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 3, + "date": "2025-03-12", + "startTime": 660, + "endTime": 690, + "startTimeSeconds": 1741748400 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "11:00 AM - 11:30 AM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "11:00 AM - 11:30 AM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 4, + "date": "2025-03-12", + "startTime": 675, + "endTime": 705, + "startTimeSeconds": 1741749300 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "11:15 AM - 11:45 AM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "11:15 AM - 11:45 AM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 5, + "date": "2025-03-12", + "startTime": 690, + "endTime": 720, + "startTimeSeconds": 1741750200 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "11:30 AM - 12:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "11:30 AM - 12:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 6, + "date": "2025-03-12", + "startTime": 705, + "endTime": 735, + "startTimeSeconds": 1741751100 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "11:45 AM - 12:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "11:45 AM - 12:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 7, + "date": "2025-03-12", + "startTime": 720, + "endTime": 750, + "startTimeSeconds": 1741752000 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "12:00 PM - 12:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "12:00 PM - 12:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 8, + "date": "2025-03-12", + "startTime": 735, + "endTime": 765, + "startTimeSeconds": 1741752900 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "12:15 PM - 12:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "12:15 PM - 12:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 9, + "date": "2025-03-12", + "startTime": 750, + "endTime": 780, + "startTimeSeconds": 1741753800 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "12:30 PM - 1:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "12:30 PM - 1:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 10, + "date": "2025-03-12", + "startTime": 765, + "endTime": 795, + "startTimeSeconds": 1741754700 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "12:45 PM - 1:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "12:45 PM - 1:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 11, + "date": "2025-03-12", + "startTime": 780, + "endTime": 810, + "startTimeSeconds": 1741755600 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "1:00 PM - 1:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "1:00 PM - 1:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 12, + "date": "2025-03-12", + "startTime": 795, + "endTime": 825, + "startTimeSeconds": 1741756500 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "1:15 PM - 1:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "1:15 PM - 1:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 13, + "date": "2025-03-12", + "startTime": 810, + "endTime": 840, + "startTimeSeconds": 1741757400 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "1:30 PM - 2:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "1:30 PM - 2:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 14, + "date": "2025-03-12", + "startTime": 825, + "endTime": 855, + "startTimeSeconds": 1741758300 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "1:45 PM - 2:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "1:45 PM - 2:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 15, + "date": "2025-03-12", + "startTime": 840, + "endTime": 870, + "startTimeSeconds": 1741759200 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "2:00 PM - 2:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "2:00 PM - 2:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 16, + "date": "2025-03-12", + "startTime": 855, + "endTime": 885, + "startTimeSeconds": 1741760100 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "2:15 PM - 2:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "2:15 PM - 2:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 17, + "date": "2025-03-12", + "startTime": 870, + "endTime": 900, + "startTimeSeconds": 1741761000 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "2:30 PM - 3:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "2:30 PM - 3:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 18, + "date": "2025-03-12", + "startTime": 885, + "endTime": 915, + "startTimeSeconds": 1741761900 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "2:45 PM - 3:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "2:45 PM - 3:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 19, + "date": "2025-03-12", + "startTime": 900, + "endTime": 930, + "startTimeSeconds": 1741762800 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "3:00 PM - 3:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "3:00 PM - 3:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 20, + "date": "2025-03-12", + "startTime": 915, + "endTime": 945, + "startTimeSeconds": 1741763700 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "3:15 PM - 3:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "3:15 PM - 3:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 21, + "date": "2025-03-12", + "startTime": 930, + "endTime": 960, + "startTimeSeconds": 1741764600 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "3:30 PM - 4:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "3:30 PM - 4:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 22, + "date": "2025-03-12", + "startTime": 945, + "endTime": 975, + "startTimeSeconds": 1741765500 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "3:45 PM - 4:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "3:45 PM - 4:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 23, + "date": "2025-03-12", + "startTime": 960, + "endTime": 990, + "startTimeSeconds": 1741766400 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "4:00 PM - 4:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "4:00 PM - 4:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 24, + "date": "2025-03-12", + "startTime": 975, + "endTime": 1005, + "startTimeSeconds": 1741767300 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "4:15 PM - 4:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "4:15 PM - 4:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 25, + "date": "2025-03-12", + "startTime": 990, + "endTime": 1020, + "startTimeSeconds": 1741768200 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "4:30 PM - 5:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "4:30 PM - 5:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 26, + "date": "2025-03-12", + "startTime": 1005, + "endTime": 1035, + "startTimeSeconds": 1741769100 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "4:45 PM - 5:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "4:45 PM - 5:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 27, + "date": "2025-03-12", + "startTime": 1020, + "endTime": 1050, + "startTimeSeconds": 1741770000 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "5:00 PM - 5:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "5:00 PM - 5:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 28, + "date": "2025-03-12", + "startTime": 1035, + "endTime": 1065, + "startTimeSeconds": 1741770900 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "5:15 PM - 5:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "5:15 PM - 5:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 29, + "date": "2025-03-12", + "startTime": 1050, + "endTime": 1080, + "startTimeSeconds": 1741771800 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "5:30 PM - 6:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "5:30 PM - 6:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 30, + "date": "2025-03-12", + "startTime": 1065, + "endTime": 1095, + "startTimeSeconds": 1741772700 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "5:45 PM - 6:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "5:45 PM - 6:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 31, + "date": "2025-03-12", + "startTime": 1080, + "endTime": 1110, + "startTimeSeconds": 1741773600 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "6:00 PM - 6:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "6:00 PM - 6:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 32, + "date": "2025-03-12", + "startTime": 1095, + "endTime": 1125, + "startTimeSeconds": 1741774500 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "6:15 PM - 6:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "6:15 PM - 6:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 33, + "date": "2025-03-12", + "startTime": 1110, + "endTime": 1140, + "startTimeSeconds": 1741775400 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "6:30 PM - 7:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "6:30 PM - 7:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 34, + "date": "2025-03-12", + "startTime": 1125, + "endTime": 1155, + "startTimeSeconds": 1741776300 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "6:45 PM - 7:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "6:45 PM - 7:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 35, + "date": "2025-03-12", + "startTime": 1140, + "endTime": 1170, + "startTimeSeconds": 1741777200 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "7:00 PM - 7:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "7:00 PM - 7:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 36, + "date": "2025-03-12", + "startTime": 1155, + "endTime": 1185, + "startTimeSeconds": 1741778100 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "7:15 PM - 7:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "7:15 PM - 7:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 37, + "date": "2025-03-12", + "startTime": 1170, + "endTime": 1200, + "startTimeSeconds": 1741779000 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "7:30 PM - 8:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "7:30 PM - 8:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 38, + "date": "2025-03-12", + "startTime": 1185, + "endTime": 1215, + "startTimeSeconds": 1741779900 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "7:45 PM - 8:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "7:45 PM - 8:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 39, + "date": "2025-03-12", + "startTime": 1200, + "endTime": 1230, + "startTimeSeconds": 1741780800 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "8:00 PM - 8:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "8:00 PM - 8:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 40, + "date": "2025-03-12", + "startTime": 1215, + "endTime": 1245, + "startTimeSeconds": 1741781700 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "8:15 PM - 8:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "8:15 PM - 8:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 41, + "date": "2025-03-12", + "startTime": 1230, + "endTime": 1260, + "startTimeSeconds": 1741782600 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "8:30 PM - 9:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "8:30 PM - 9:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + } + ], + "viewState": "PRIMARY" + }, + { + "date": "2025-03-13", + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Thu", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + }, + "color": "PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Thu" + }, + "secondaryText": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Mar 13", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "LIGHT" + }, + "color": "PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Mar 13" + }, + "listItems": [ + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 42, + "date": "2025-03-13", + "startTime": 630, + "endTime": 660, + "startTimeSeconds": 1741833000 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "10:30 AM - 11:00 AM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "10:30 AM - 11:00 AM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 43, + "date": "2025-03-13", + "startTime": 645, + "endTime": 675, + "startTimeSeconds": 1741833900 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "10:45 AM - 11:15 AM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "10:45 AM - 11:15 AM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 44, + "date": "2025-03-13", + "startTime": 660, + "endTime": 690, + "startTimeSeconds": 1741834800 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "11:00 AM - 11:30 AM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "11:00 AM - 11:30 AM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 45, + "date": "2025-03-13", + "startTime": 675, + "endTime": 705, + "startTimeSeconds": 1741835700 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "11:15 AM - 11:45 AM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "11:15 AM - 11:45 AM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 46, + "date": "2025-03-13", + "startTime": 690, + "endTime": 720, + "startTimeSeconds": 1741836600 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "11:30 AM - 12:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "11:30 AM - 12:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 47, + "date": "2025-03-13", + "startTime": 705, + "endTime": 735, + "startTimeSeconds": 1741837500 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "11:45 AM - 12:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "11:45 AM - 12:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 48, + "date": "2025-03-13", + "startTime": 720, + "endTime": 750, + "startTimeSeconds": 1741838400 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "12:00 PM - 12:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "12:00 PM - 12:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 49, + "date": "2025-03-13", + "startTime": 735, + "endTime": 765, + "startTimeSeconds": 1741839300 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "12:15 PM - 12:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "12:15 PM - 12:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 50, + "date": "2025-03-13", + "startTime": 750, + "endTime": 780, + "startTimeSeconds": 1741840200 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "12:30 PM - 1:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "12:30 PM - 1:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 51, + "date": "2025-03-13", + "startTime": 765, + "endTime": 795, + "startTimeSeconds": 1741841100 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "12:45 PM - 1:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "12:45 PM - 1:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 52, + "date": "2025-03-13", + "startTime": 780, + "endTime": 810, + "startTimeSeconds": 1741842000 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "1:00 PM - 1:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "1:00 PM - 1:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 53, + "date": "2025-03-13", + "startTime": 795, + "endTime": 825, + "startTimeSeconds": 1741842900 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "1:15 PM - 1:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "1:15 PM - 1:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 54, + "date": "2025-03-13", + "startTime": 810, + "endTime": 840, + "startTimeSeconds": 1741843800 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "1:30 PM - 2:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "1:30 PM - 2:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 55, + "date": "2025-03-13", + "startTime": 825, + "endTime": 855, + "startTimeSeconds": 1741844700 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "1:45 PM - 2:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "1:45 PM - 2:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 56, + "date": "2025-03-13", + "startTime": 840, + "endTime": 870, + "startTimeSeconds": 1741845600 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "2:00 PM - 2:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "2:00 PM - 2:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 57, + "date": "2025-03-13", + "startTime": 855, + "endTime": 885, + "startTimeSeconds": 1741846500 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "2:15 PM - 2:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "2:15 PM - 2:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 58, + "date": "2025-03-13", + "startTime": 870, + "endTime": 900, + "startTimeSeconds": 1741847400 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "2:30 PM - 3:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "2:30 PM - 3:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 59, + "date": "2025-03-13", + "startTime": 885, + "endTime": 915, + "startTimeSeconds": 1741848300 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "2:45 PM - 3:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "2:45 PM - 3:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 60, + "date": "2025-03-13", + "startTime": 900, + "endTime": 930, + "startTimeSeconds": 1741849200 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "3:00 PM - 3:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "3:00 PM - 3:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 61, + "date": "2025-03-13", + "startTime": 915, + "endTime": 945, + "startTimeSeconds": 1741850100 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "3:15 PM - 3:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "3:15 PM - 3:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 62, + "date": "2025-03-13", + "startTime": 930, + "endTime": 960, + "startTimeSeconds": 1741851000 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "3:30 PM - 4:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "3:30 PM - 4:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 63, + "date": "2025-03-13", + "startTime": 945, + "endTime": 975, + "startTimeSeconds": 1741851900 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "3:45 PM - 4:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "3:45 PM - 4:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 64, + "date": "2025-03-13", + "startTime": 960, + "endTime": 990, + "startTimeSeconds": 1741852800 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "4:00 PM - 4:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "4:00 PM - 4:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 65, + "date": "2025-03-13", + "startTime": 975, + "endTime": 1005, + "startTimeSeconds": 1741853700 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "4:15 PM - 4:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "4:15 PM - 4:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 66, + "date": "2025-03-13", + "startTime": 990, + "endTime": 1020, + "startTimeSeconds": 1741854600 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "4:30 PM - 5:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "4:30 PM - 5:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 67, + "date": "2025-03-13", + "startTime": 1005, + "endTime": 1035, + "startTimeSeconds": 1741855500 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "4:45 PM - 5:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "4:45 PM - 5:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 68, + "date": "2025-03-13", + "startTime": 1020, + "endTime": 1050, + "startTimeSeconds": 1741856400 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "5:00 PM - 5:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "5:00 PM - 5:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 69, + "date": "2025-03-13", + "startTime": 1035, + "endTime": 1065, + "startTimeSeconds": 1741857300 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "5:15 PM - 5:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "5:15 PM - 5:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 70, + "date": "2025-03-13", + "startTime": 1050, + "endTime": 1080, + "startTimeSeconds": 1741858200 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "5:30 PM - 6:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "5:30 PM - 6:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 71, + "date": "2025-03-13", + "startTime": 1065, + "endTime": 1095, + "startTimeSeconds": 1741859100 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "5:45 PM - 6:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "5:45 PM - 6:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 72, + "date": "2025-03-13", + "startTime": 1080, + "endTime": 1110, + "startTimeSeconds": 1741860000 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "6:00 PM - 6:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "6:00 PM - 6:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 73, + "date": "2025-03-13", + "startTime": 1095, + "endTime": 1125, + "startTimeSeconds": 1741860900 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "6:15 PM - 6:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "6:15 PM - 6:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 74, + "date": "2025-03-13", + "startTime": 1110, + "endTime": 1140, + "startTimeSeconds": 1741861800 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "6:30 PM - 7:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "6:30 PM - 7:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 75, + "date": "2025-03-13", + "startTime": 1125, + "endTime": 1155, + "startTimeSeconds": 1741862700 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "6:45 PM - 7:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "6:45 PM - 7:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 76, + "date": "2025-03-13", + "startTime": 1140, + "endTime": 1170, + "startTimeSeconds": 1741863600 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "7:00 PM - 7:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "7:00 PM - 7:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 77, + "date": "2025-03-13", + "startTime": 1155, + "endTime": 1185, + "startTimeSeconds": 1741864500 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "7:15 PM - 7:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "7:15 PM - 7:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 78, + "date": "2025-03-13", + "startTime": 1170, + "endTime": 1200, + "startTimeSeconds": 1741865400 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "7:30 PM - 8:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "7:30 PM - 8:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 79, + "date": "2025-03-13", + "startTime": 1185, + "endTime": 1215, + "startTimeSeconds": 1741866300 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "7:45 PM - 8:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "7:45 PM - 8:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 80, + "date": "2025-03-13", + "startTime": 1200, + "endTime": 1230, + "startTimeSeconds": 1741867200 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "8:00 PM - 8:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "8:00 PM - 8:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 81, + "date": "2025-03-13", + "startTime": 1215, + "endTime": 1245, + "startTimeSeconds": 1741868100 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "8:15 PM - 8:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "8:15 PM - 8:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 82, + "date": "2025-03-13", + "startTime": 1230, + "endTime": 1260, + "startTimeSeconds": 1741869000 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "8:30 PM - 9:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "8:30 PM - 9:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + } + ], + "viewState": "PRIMARY" + }, + { + "date": "2025-03-14", + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Fri", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + }, + "color": "PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Fri" + }, + "secondaryText": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Mar 14", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "LIGHT" + }, + "color": "PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Mar 14" + }, + "listItems": [ + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 83, + "date": "2025-03-14", + "startTime": 630, + "endTime": 660, + "startTimeSeconds": 1741919400 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "10:30 AM - 11:00 AM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "10:30 AM - 11:00 AM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 84, + "date": "2025-03-14", + "startTime": 645, + "endTime": 675, + "startTimeSeconds": 1741920300 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "10:45 AM - 11:15 AM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "10:45 AM - 11:15 AM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 85, + "date": "2025-03-14", + "startTime": 660, + "endTime": 690, + "startTimeSeconds": 1741921200 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "11:00 AM - 11:30 AM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "11:00 AM - 11:30 AM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 86, + "date": "2025-03-14", + "startTime": 675, + "endTime": 705, + "startTimeSeconds": 1741922100 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "11:15 AM - 11:45 AM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "11:15 AM - 11:45 AM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 87, + "date": "2025-03-14", + "startTime": 690, + "endTime": 720, + "startTimeSeconds": 1741923000 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "11:30 AM - 12:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "11:30 AM - 12:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 88, + "date": "2025-03-14", + "startTime": 705, + "endTime": 735, + "startTimeSeconds": 1741923900 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "11:45 AM - 12:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "11:45 AM - 12:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 89, + "date": "2025-03-14", + "startTime": 720, + "endTime": 750, + "startTimeSeconds": 1741924800 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "12:00 PM - 12:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "12:00 PM - 12:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 90, + "date": "2025-03-14", + "startTime": 735, + "endTime": 765, + "startTimeSeconds": 1741925700 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "12:15 PM - 12:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "12:15 PM - 12:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 91, + "date": "2025-03-14", + "startTime": 750, + "endTime": 780, + "startTimeSeconds": 1741926600 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "12:30 PM - 1:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "12:30 PM - 1:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 92, + "date": "2025-03-14", + "startTime": 765, + "endTime": 795, + "startTimeSeconds": 1741927500 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "12:45 PM - 1:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "12:45 PM - 1:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 93, + "date": "2025-03-14", + "startTime": 780, + "endTime": 810, + "startTimeSeconds": 1741928400 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "1:00 PM - 1:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "1:00 PM - 1:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 94, + "date": "2025-03-14", + "startTime": 795, + "endTime": 825, + "startTimeSeconds": 1741929300 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "1:15 PM - 1:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "1:15 PM - 1:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 95, + "date": "2025-03-14", + "startTime": 810, + "endTime": 840, + "startTimeSeconds": 1741930200 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "1:30 PM - 2:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "1:30 PM - 2:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 96, + "date": "2025-03-14", + "startTime": 825, + "endTime": 855, + "startTimeSeconds": 1741931100 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "1:45 PM - 2:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "1:45 PM - 2:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 97, + "date": "2025-03-14", + "startTime": 840, + "endTime": 870, + "startTimeSeconds": 1741932000 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "2:00 PM - 2:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "2:00 PM - 2:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 98, + "date": "2025-03-14", + "startTime": 855, + "endTime": 885, + "startTimeSeconds": 1741932900 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "2:15 PM - 2:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "2:15 PM - 2:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 99, + "date": "2025-03-14", + "startTime": 870, + "endTime": 900, + "startTimeSeconds": 1741933800 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "2:30 PM - 3:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "2:30 PM - 3:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 100, + "date": "2025-03-14", + "startTime": 885, + "endTime": 915, + "startTimeSeconds": 1741934700 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "2:45 PM - 3:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "2:45 PM - 3:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 101, + "date": "2025-03-14", + "startTime": 900, + "endTime": 930, + "startTimeSeconds": 1741935600 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "3:00 PM - 3:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "3:00 PM - 3:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 102, + "date": "2025-03-14", + "startTime": 915, + "endTime": 945, + "startTimeSeconds": 1741936500 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "3:15 PM - 3:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "3:15 PM - 3:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 103, + "date": "2025-03-14", + "startTime": 930, + "endTime": 960, + "startTimeSeconds": 1741937400 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "3:30 PM - 4:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "3:30 PM - 4:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 104, + "date": "2025-03-14", + "startTime": 945, + "endTime": 975, + "startTimeSeconds": 1741938300 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "3:45 PM - 4:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "3:45 PM - 4:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 105, + "date": "2025-03-14", + "startTime": 960, + "endTime": 990, + "startTimeSeconds": 1741939200 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "4:00 PM - 4:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "4:00 PM - 4:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 106, + "date": "2025-03-14", + "startTime": 975, + "endTime": 1005, + "startTimeSeconds": 1741940100 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "4:15 PM - 4:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "4:15 PM - 4:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 107, + "date": "2025-03-14", + "startTime": 990, + "endTime": 1020, + "startTimeSeconds": 1741941000 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "4:30 PM - 5:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "4:30 PM - 5:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 108, + "date": "2025-03-14", + "startTime": 1005, + "endTime": 1035, + "startTimeSeconds": 1741941900 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "4:45 PM - 5:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "4:45 PM - 5:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 109, + "date": "2025-03-14", + "startTime": 1020, + "endTime": 1050, + "startTimeSeconds": 1741942800 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "5:00 PM - 5:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "5:00 PM - 5:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 110, + "date": "2025-03-14", + "startTime": 1035, + "endTime": 1065, + "startTimeSeconds": 1741943700 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "5:15 PM - 5:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "5:15 PM - 5:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 111, + "date": "2025-03-14", + "startTime": 1050, + "endTime": 1080, + "startTimeSeconds": 1741944600 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "5:30 PM - 6:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "5:30 PM - 6:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 112, + "date": "2025-03-14", + "startTime": 1065, + "endTime": 1095, + "startTimeSeconds": 1741945500 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "5:45 PM - 6:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "5:45 PM - 6:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 113, + "date": "2025-03-14", + "startTime": 1080, + "endTime": 1110, + "startTimeSeconds": 1741946400 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "6:00 PM - 6:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "6:00 PM - 6:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 114, + "date": "2025-03-14", + "startTime": 1095, + "endTime": 1125, + "startTimeSeconds": 1741947300 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "6:15 PM - 6:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "6:15 PM - 6:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 115, + "date": "2025-03-14", + "startTime": 1110, + "endTime": 1140, + "startTimeSeconds": 1741948200 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "6:30 PM - 7:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "6:30 PM - 7:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 116, + "date": "2025-03-14", + "startTime": 1125, + "endTime": 1155, + "startTimeSeconds": 1741949100 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "6:45 PM - 7:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "6:45 PM - 7:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 117, + "date": "2025-03-14", + "startTime": 1140, + "endTime": 1170, + "startTimeSeconds": 1741950000 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "7:00 PM - 7:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "7:00 PM - 7:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 118, + "date": "2025-03-14", + "startTime": 1155, + "endTime": 1185, + "startTimeSeconds": 1741950900 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "7:15 PM - 7:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "7:15 PM - 7:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 119, + "date": "2025-03-14", + "startTime": 1170, + "endTime": 1200, + "startTimeSeconds": 1741951800 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "7:30 PM - 8:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "7:30 PM - 8:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 120, + "date": "2025-03-14", + "startTime": 1185, + "endTime": 1215, + "startTimeSeconds": 1741952700 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "7:45 PM - 8:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "7:45 PM - 8:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 121, + "date": "2025-03-14", + "startTime": 1200, + "endTime": 1230, + "startTimeSeconds": 1741953600 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "8:00 PM - 8:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "8:00 PM - 8:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 122, + "date": "2025-03-14", + "startTime": 1215, + "endTime": 1245, + "startTimeSeconds": 1741954500 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "8:15 PM - 8:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "8:15 PM - 8:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 123, + "date": "2025-03-14", + "startTime": 1230, + "endTime": 1260, + "startTimeSeconds": 1741955400 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "8:30 PM - 9:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "8:30 PM - 9:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + } + ], + "viewState": "PRIMARY" + }, + { + "date": "2025-03-15", + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Sat", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + }, + "color": "PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Sat" + }, + "secondaryText": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Mar 15", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "LIGHT" + }, + "color": "PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Mar 15" + }, + "listItems": [ + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 124, + "date": "2025-03-15", + "startTime": 630, + "endTime": 660, + "startTimeSeconds": 1742005800 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "10:30 AM - 11:00 AM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "10:30 AM - 11:00 AM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 125, + "date": "2025-03-15", + "startTime": 645, + "endTime": 675, + "startTimeSeconds": 1742006700 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "10:45 AM - 11:15 AM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "10:45 AM - 11:15 AM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 126, + "date": "2025-03-15", + "startTime": 660, + "endTime": 690, + "startTimeSeconds": 1742007600 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "11:00 AM - 11:30 AM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "11:00 AM - 11:30 AM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 127, + "date": "2025-03-15", + "startTime": 675, + "endTime": 705, + "startTimeSeconds": 1742008500 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "11:15 AM - 11:45 AM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "11:15 AM - 11:45 AM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 128, + "date": "2025-03-15", + "startTime": 690, + "endTime": 720, + "startTimeSeconds": 1742009400 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "11:30 AM - 12:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "11:30 AM - 12:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 129, + "date": "2025-03-15", + "startTime": 705, + "endTime": 735, + "startTimeSeconds": 1742010300 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "11:45 AM - 12:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "11:45 AM - 12:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 130, + "date": "2025-03-15", + "startTime": 720, + "endTime": 750, + "startTimeSeconds": 1742011200 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "12:00 PM - 12:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "12:00 PM - 12:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 131, + "date": "2025-03-15", + "startTime": 735, + "endTime": 765, + "startTimeSeconds": 1742012100 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "12:15 PM - 12:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "12:15 PM - 12:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 132, + "date": "2025-03-15", + "startTime": 750, + "endTime": 780, + "startTimeSeconds": 1742013000 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "12:30 PM - 1:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "12:30 PM - 1:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 133, + "date": "2025-03-15", + "startTime": 765, + "endTime": 795, + "startTimeSeconds": 1742013900 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "12:45 PM - 1:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "12:45 PM - 1:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 134, + "date": "2025-03-15", + "startTime": 780, + "endTime": 810, + "startTimeSeconds": 1742014800 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "1:00 PM - 1:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "1:00 PM - 1:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 135, + "date": "2025-03-15", + "startTime": 795, + "endTime": 825, + "startTimeSeconds": 1742015700 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "1:15 PM - 1:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "1:15 PM - 1:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 136, + "date": "2025-03-15", + "startTime": 810, + "endTime": 840, + "startTimeSeconds": 1742016600 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "1:30 PM - 2:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "1:30 PM - 2:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 137, + "date": "2025-03-15", + "startTime": 825, + "endTime": 855, + "startTimeSeconds": 1742017500 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "1:45 PM - 2:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "1:45 PM - 2:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 138, + "date": "2025-03-15", + "startTime": 840, + "endTime": 870, + "startTimeSeconds": 1742018400 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "2:00 PM - 2:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "2:00 PM - 2:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 139, + "date": "2025-03-15", + "startTime": 855, + "endTime": 885, + "startTimeSeconds": 1742019300 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "2:15 PM - 2:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "2:15 PM - 2:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 140, + "date": "2025-03-15", + "startTime": 870, + "endTime": 900, + "startTimeSeconds": 1742020200 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "2:30 PM - 3:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "2:30 PM - 3:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 141, + "date": "2025-03-15", + "startTime": 885, + "endTime": 915, + "startTimeSeconds": 1742021100 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "2:45 PM - 3:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "2:45 PM - 3:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 142, + "date": "2025-03-15", + "startTime": 900, + "endTime": 930, + "startTimeSeconds": 1742022000 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "3:00 PM - 3:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "3:00 PM - 3:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 143, + "date": "2025-03-15", + "startTime": 915, + "endTime": 945, + "startTimeSeconds": 1742022900 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "3:15 PM - 3:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "3:15 PM - 3:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 144, + "date": "2025-03-15", + "startTime": 930, + "endTime": 960, + "startTimeSeconds": 1742023800 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "3:30 PM - 4:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "3:30 PM - 4:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 145, + "date": "2025-03-15", + "startTime": 945, + "endTime": 975, + "startTimeSeconds": 1742024700 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "3:45 PM - 4:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "3:45 PM - 4:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 146, + "date": "2025-03-15", + "startTime": 960, + "endTime": 990, + "startTimeSeconds": 1742025600 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "4:00 PM - 4:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "4:00 PM - 4:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 147, + "date": "2025-03-15", + "startTime": 975, + "endTime": 1005, + "startTimeSeconds": 1742026500 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "4:15 PM - 4:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "4:15 PM - 4:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 148, + "date": "2025-03-15", + "startTime": 990, + "endTime": 1020, + "startTimeSeconds": 1742027400 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "4:30 PM - 5:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "4:30 PM - 5:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 149, + "date": "2025-03-15", + "startTime": 1005, + "endTime": 1035, + "startTimeSeconds": 1742028300 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "4:45 PM - 5:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "4:45 PM - 5:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 150, + "date": "2025-03-15", + "startTime": 1020, + "endTime": 1050, + "startTimeSeconds": 1742029200 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "5:00 PM - 5:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "5:00 PM - 5:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 151, + "date": "2025-03-15", + "startTime": 1035, + "endTime": 1065, + "startTimeSeconds": 1742030100 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "5:15 PM - 5:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "5:15 PM - 5:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 152, + "date": "2025-03-15", + "startTime": 1050, + "endTime": 1080, + "startTimeSeconds": 1742031000 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "5:30 PM - 6:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "5:30 PM - 6:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 153, + "date": "2025-03-15", + "startTime": 1065, + "endTime": 1095, + "startTimeSeconds": 1742031900 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "5:45 PM - 6:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "5:45 PM - 6:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 154, + "date": "2025-03-15", + "startTime": 1080, + "endTime": 1110, + "startTimeSeconds": 1742032800 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "6:00 PM - 6:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "6:00 PM - 6:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 155, + "date": "2025-03-15", + "startTime": 1095, + "endTime": 1125, + "startTimeSeconds": 1742033700 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "6:15 PM - 6:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "6:15 PM - 6:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 156, + "date": "2025-03-15", + "startTime": 1110, + "endTime": 1140, + "startTimeSeconds": 1742034600 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "6:30 PM - 7:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "6:30 PM - 7:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 157, + "date": "2025-03-15", + "startTime": 1125, + "endTime": 1155, + "startTimeSeconds": 1742035500 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "6:45 PM - 7:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "6:45 PM - 7:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 158, + "date": "2025-03-15", + "startTime": 1140, + "endTime": 1170, + "startTimeSeconds": 1742036400 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "7:00 PM - 7:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "7:00 PM - 7:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 159, + "date": "2025-03-15", + "startTime": 1155, + "endTime": 1185, + "startTimeSeconds": 1742037300 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "7:15 PM - 7:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "7:15 PM - 7:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 160, + "date": "2025-03-15", + "startTime": 1170, + "endTime": 1200, + "startTimeSeconds": 1742038200 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "7:30 PM - 8:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "7:30 PM - 8:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 161, + "date": "2025-03-15", + "startTime": 1185, + "endTime": 1215, + "startTimeSeconds": 1742039100 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "7:45 PM - 8:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "7:45 PM - 8:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 162, + "date": "2025-03-15", + "startTime": 1200, + "endTime": 1230, + "startTimeSeconds": 1742040000 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "8:00 PM - 8:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "8:00 PM - 8:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 163, + "date": "2025-03-15", + "startTime": 1215, + "endTime": 1245, + "startTimeSeconds": 1742040900 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "8:15 PM - 8:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "8:15 PM - 8:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 164, + "date": "2025-03-15", + "startTime": 1230, + "endTime": 1260, + "startTimeSeconds": 1742041800 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "8:30 PM - 9:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "8:30 PM - 9:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 165, + "date": "2025-03-15", + "startTime": 1245, + "endTime": 1275, + "startTimeSeconds": 1742042700 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "8:45 PM - 9:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "8:45 PM - 9:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 166, + "date": "2025-03-15", + "startTime": 1260, + "endTime": 1290, + "startTimeSeconds": 1742043600 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "9:00 PM - 9:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "9:00 PM - 9:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + } + ], + "viewState": "PRIMARY" + }, + { + "date": "2025-03-16", + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Sun", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + }, + "color": "PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Sun" + }, + "secondaryText": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Mar 16", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "LIGHT" + }, + "color": "PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Mar 16" + }, + "listItems": [ + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 167, + "date": "2025-03-16", + "startTime": 630, + "endTime": 660, + "startTimeSeconds": 1742092200 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "10:30 AM - 11:00 AM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "10:30 AM - 11:00 AM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 168, + "date": "2025-03-16", + "startTime": 645, + "endTime": 675, + "startTimeSeconds": 1742093100 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "10:45 AM - 11:15 AM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "10:45 AM - 11:15 AM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 169, + "date": "2025-03-16", + "startTime": 660, + "endTime": 690, + "startTimeSeconds": 1742094000 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "11:00 AM - 11:30 AM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "11:00 AM - 11:30 AM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 170, + "date": "2025-03-16", + "startTime": 675, + "endTime": 705, + "startTimeSeconds": 1742094900 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "11:15 AM - 11:45 AM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "11:15 AM - 11:45 AM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 171, + "date": "2025-03-16", + "startTime": 690, + "endTime": 720, + "startTimeSeconds": 1742095800 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "11:30 AM - 12:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "11:30 AM - 12:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 172, + "date": "2025-03-16", + "startTime": 705, + "endTime": 735, + "startTimeSeconds": 1742096700 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "11:45 AM - 12:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "11:45 AM - 12:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 173, + "date": "2025-03-16", + "startTime": 720, + "endTime": 750, + "startTimeSeconds": 1742097600 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "12:00 PM - 12:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "12:00 PM - 12:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 174, + "date": "2025-03-16", + "startTime": 735, + "endTime": 765, + "startTimeSeconds": 1742098500 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "12:15 PM - 12:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "12:15 PM - 12:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 175, + "date": "2025-03-16", + "startTime": 750, + "endTime": 780, + "startTimeSeconds": 1742099400 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "12:30 PM - 1:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "12:30 PM - 1:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 176, + "date": "2025-03-16", + "startTime": 765, + "endTime": 795, + "startTimeSeconds": 1742100300 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "12:45 PM - 1:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "12:45 PM - 1:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 177, + "date": "2025-03-16", + "startTime": 780, + "endTime": 810, + "startTimeSeconds": 1742101200 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "1:00 PM - 1:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "1:00 PM - 1:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 178, + "date": "2025-03-16", + "startTime": 795, + "endTime": 825, + "startTimeSeconds": 1742102100 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "1:15 PM - 1:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "1:15 PM - 1:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 179, + "date": "2025-03-16", + "startTime": 810, + "endTime": 840, + "startTimeSeconds": 1742103000 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "1:30 PM - 2:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "1:30 PM - 2:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 180, + "date": "2025-03-16", + "startTime": 825, + "endTime": 855, + "startTimeSeconds": 1742103900 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "1:45 PM - 2:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "1:45 PM - 2:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 181, + "date": "2025-03-16", + "startTime": 840, + "endTime": 870, + "startTimeSeconds": 1742104800 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "2:00 PM - 2:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "2:00 PM - 2:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 182, + "date": "2025-03-16", + "startTime": 855, + "endTime": 885, + "startTimeSeconds": 1742105700 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "2:15 PM - 2:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "2:15 PM - 2:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 183, + "date": "2025-03-16", + "startTime": 870, + "endTime": 900, + "startTimeSeconds": 1742106600 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "2:30 PM - 3:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "2:30 PM - 3:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 184, + "date": "2025-03-16", + "startTime": 885, + "endTime": 915, + "startTimeSeconds": 1742107500 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "2:45 PM - 3:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "2:45 PM - 3:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 185, + "date": "2025-03-16", + "startTime": 900, + "endTime": 930, + "startTimeSeconds": 1742108400 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "3:00 PM - 3:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "3:00 PM - 3:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 186, + "date": "2025-03-16", + "startTime": 915, + "endTime": 945, + "startTimeSeconds": 1742109300 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "3:15 PM - 3:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "3:15 PM - 3:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 187, + "date": "2025-03-16", + "startTime": 930, + "endTime": 960, + "startTimeSeconds": 1742110200 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "3:30 PM - 4:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "3:30 PM - 4:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 188, + "date": "2025-03-16", + "startTime": 945, + "endTime": 975, + "startTimeSeconds": 1742111100 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "3:45 PM - 4:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "3:45 PM - 4:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 189, + "date": "2025-03-16", + "startTime": 960, + "endTime": 990, + "startTimeSeconds": 1742112000 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "4:00 PM - 4:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "4:00 PM - 4:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 190, + "date": "2025-03-16", + "startTime": 975, + "endTime": 1005, + "startTimeSeconds": 1742112900 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "4:15 PM - 4:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "4:15 PM - 4:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 191, + "date": "2025-03-16", + "startTime": 990, + "endTime": 1020, + "startTimeSeconds": 1742113800 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "4:30 PM - 5:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "4:30 PM - 5:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 192, + "date": "2025-03-16", + "startTime": 1005, + "endTime": 1035, + "startTimeSeconds": 1742114700 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "4:45 PM - 5:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "4:45 PM - 5:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 193, + "date": "2025-03-16", + "startTime": 1020, + "endTime": 1050, + "startTimeSeconds": 1742115600 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "5:00 PM - 5:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "5:00 PM - 5:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 194, + "date": "2025-03-16", + "startTime": 1035, + "endTime": 1065, + "startTimeSeconds": 1742116500 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "5:15 PM - 5:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "5:15 PM - 5:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 195, + "date": "2025-03-16", + "startTime": 1050, + "endTime": 1080, + "startTimeSeconds": 1742117400 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "5:30 PM - 6:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "5:30 PM - 6:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 196, + "date": "2025-03-16", + "startTime": 1065, + "endTime": 1095, + "startTimeSeconds": 1742118300 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "5:45 PM - 6:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "5:45 PM - 6:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 197, + "date": "2025-03-16", + "startTime": 1080, + "endTime": 1110, + "startTimeSeconds": 1742119200 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "6:00 PM - 6:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "6:00 PM - 6:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 198, + "date": "2025-03-16", + "startTime": 1095, + "endTime": 1125, + "startTimeSeconds": 1742120100 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "6:15 PM - 6:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "6:15 PM - 6:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 199, + "date": "2025-03-16", + "startTime": 1110, + "endTime": 1140, + "startTimeSeconds": 1742121000 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "6:30 PM - 7:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "6:30 PM - 7:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 200, + "date": "2025-03-16", + "startTime": 1125, + "endTime": 1155, + "startTimeSeconds": 1742121900 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "6:45 PM - 7:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "6:45 PM - 7:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 201, + "date": "2025-03-16", + "startTime": 1140, + "endTime": 1170, + "startTimeSeconds": 1742122800 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "7:00 PM - 7:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "7:00 PM - 7:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 202, + "date": "2025-03-16", + "startTime": 1155, + "endTime": 1185, + "startTimeSeconds": 1742123700 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "7:15 PM - 7:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "7:15 PM - 7:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 203, + "date": "2025-03-16", + "startTime": 1170, + "endTime": 1200, + "startTimeSeconds": 1742124600 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "7:30 PM - 8:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "7:30 PM - 8:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 204, + "date": "2025-03-16", + "startTime": 1185, + "endTime": 1215, + "startTimeSeconds": 1742125500 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "7:45 PM - 8:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "7:45 PM - 8:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 205, + "date": "2025-03-16", + "startTime": 1200, + "endTime": 1230, + "startTimeSeconds": 1742126400 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "8:00 PM - 8:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "8:00 PM - 8:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 206, + "date": "2025-03-16", + "startTime": 1215, + "endTime": 1245, + "startTimeSeconds": 1742127300 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "8:15 PM - 8:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "8:15 PM - 8:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 207, + "date": "2025-03-16", + "startTime": 1230, + "endTime": 1260, + "startTimeSeconds": 1742128200 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "8:30 PM - 9:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "8:30 PM - 9:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 208, + "date": "2025-03-16", + "startTime": 1245, + "endTime": 1275, + "startTimeSeconds": 1742129100 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "8:45 PM - 9:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "8:45 PM - 9:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 209, + "date": "2025-03-16", + "startTime": 1260, + "endTime": 1290, + "startTimeSeconds": 1742130000 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "9:00 PM - 9:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "9:00 PM - 9:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + } + ], + "viewState": "PRIMARY" + }, + { + "date": "2025-03-17", + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Mon", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + }, + "color": "PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Mon" + }, + "secondaryText": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Mar 17", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "LIGHT" + }, + "color": "PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Mar 17" + }, + "listItems": [ + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 210, + "date": "2025-03-17", + "startTime": 630, + "endTime": 660, + "startTimeSeconds": 1742178600 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "10:30 AM - 11:00 AM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "10:30 AM - 11:00 AM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 211, + "date": "2025-03-17", + "startTime": 645, + "endTime": 675, + "startTimeSeconds": 1742179500 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "10:45 AM - 11:15 AM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "10:45 AM - 11:15 AM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 212, + "date": "2025-03-17", + "startTime": 660, + "endTime": 690, + "startTimeSeconds": 1742180400 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "11:00 AM - 11:30 AM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "11:00 AM - 11:30 AM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 213, + "date": "2025-03-17", + "startTime": 675, + "endTime": 705, + "startTimeSeconds": 1742181300 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "11:15 AM - 11:45 AM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "11:15 AM - 11:45 AM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 214, + "date": "2025-03-17", + "startTime": 690, + "endTime": 720, + "startTimeSeconds": 1742182200 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "11:30 AM - 12:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "11:30 AM - 12:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 215, + "date": "2025-03-17", + "startTime": 705, + "endTime": 735, + "startTimeSeconds": 1742183100 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "11:45 AM - 12:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "11:45 AM - 12:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 216, + "date": "2025-03-17", + "startTime": 720, + "endTime": 750, + "startTimeSeconds": 1742184000 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "12:00 PM - 12:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "12:00 PM - 12:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 217, + "date": "2025-03-17", + "startTime": 735, + "endTime": 765, + "startTimeSeconds": 1742184900 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "12:15 PM - 12:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "12:15 PM - 12:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 218, + "date": "2025-03-17", + "startTime": 750, + "endTime": 780, + "startTimeSeconds": 1742185800 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "12:30 PM - 1:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "12:30 PM - 1:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 219, + "date": "2025-03-17", + "startTime": 765, + "endTime": 795, + "startTimeSeconds": 1742186700 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "12:45 PM - 1:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "12:45 PM - 1:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 220, + "date": "2025-03-17", + "startTime": 780, + "endTime": 810, + "startTimeSeconds": 1742187600 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "1:00 PM - 1:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "1:00 PM - 1:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 221, + "date": "2025-03-17", + "startTime": 795, + "endTime": 825, + "startTimeSeconds": 1742188500 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "1:15 PM - 1:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "1:15 PM - 1:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 222, + "date": "2025-03-17", + "startTime": 810, + "endTime": 840, + "startTimeSeconds": 1742189400 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "1:30 PM - 2:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "1:30 PM - 2:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 223, + "date": "2025-03-17", + "startTime": 825, + "endTime": 855, + "startTimeSeconds": 1742190300 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "1:45 PM - 2:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "1:45 PM - 2:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 224, + "date": "2025-03-17", + "startTime": 840, + "endTime": 870, + "startTimeSeconds": 1742191200 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "2:00 PM - 2:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "2:00 PM - 2:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 225, + "date": "2025-03-17", + "startTime": 855, + "endTime": 885, + "startTimeSeconds": 1742192100 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "2:15 PM - 2:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "2:15 PM - 2:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 226, + "date": "2025-03-17", + "startTime": 870, + "endTime": 900, + "startTimeSeconds": 1742193000 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "2:30 PM - 3:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "2:30 PM - 3:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 227, + "date": "2025-03-17", + "startTime": 885, + "endTime": 915, + "startTimeSeconds": 1742193900 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "2:45 PM - 3:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "2:45 PM - 3:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 228, + "date": "2025-03-17", + "startTime": 900, + "endTime": 930, + "startTimeSeconds": 1742194800 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "3:00 PM - 3:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "3:00 PM - 3:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 229, + "date": "2025-03-17", + "startTime": 915, + "endTime": 945, + "startTimeSeconds": 1742195700 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "3:15 PM - 3:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "3:15 PM - 3:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 230, + "date": "2025-03-17", + "startTime": 930, + "endTime": 960, + "startTimeSeconds": 1742196600 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "3:30 PM - 4:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "3:30 PM - 4:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 231, + "date": "2025-03-17", + "startTime": 945, + "endTime": 975, + "startTimeSeconds": 1742197500 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "3:45 PM - 4:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "3:45 PM - 4:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 232, + "date": "2025-03-17", + "startTime": 960, + "endTime": 990, + "startTimeSeconds": 1742198400 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "4:00 PM - 4:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "4:00 PM - 4:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 233, + "date": "2025-03-17", + "startTime": 975, + "endTime": 1005, + "startTimeSeconds": 1742199300 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "4:15 PM - 4:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "4:15 PM - 4:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 234, + "date": "2025-03-17", + "startTime": 990, + "endTime": 1020, + "startTimeSeconds": 1742200200 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "4:30 PM - 5:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "4:30 PM - 5:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 235, + "date": "2025-03-17", + "startTime": 1005, + "endTime": 1035, + "startTimeSeconds": 1742201100 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "4:45 PM - 5:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "4:45 PM - 5:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 236, + "date": "2025-03-17", + "startTime": 1020, + "endTime": 1050, + "startTimeSeconds": 1742202000 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "5:00 PM - 5:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "5:00 PM - 5:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 237, + "date": "2025-03-17", + "startTime": 1035, + "endTime": 1065, + "startTimeSeconds": 1742202900 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "5:15 PM - 5:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "5:15 PM - 5:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 238, + "date": "2025-03-17", + "startTime": 1050, + "endTime": 1080, + "startTimeSeconds": 1742203800 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "5:30 PM - 6:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "5:30 PM - 6:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 239, + "date": "2025-03-17", + "startTime": 1065, + "endTime": 1095, + "startTimeSeconds": 1742204700 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "5:45 PM - 6:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "5:45 PM - 6:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 240, + "date": "2025-03-17", + "startTime": 1080, + "endTime": 1110, + "startTimeSeconds": 1742205600 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "6:00 PM - 6:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "6:00 PM - 6:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 241, + "date": "2025-03-17", + "startTime": 1095, + "endTime": 1125, + "startTimeSeconds": 1742206500 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "6:15 PM - 6:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "6:15 PM - 6:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 242, + "date": "2025-03-17", + "startTime": 1110, + "endTime": 1140, + "startTimeSeconds": 1742207400 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "6:30 PM - 7:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "6:30 PM - 7:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 243, + "date": "2025-03-17", + "startTime": 1125, + "endTime": 1155, + "startTimeSeconds": 1742208300 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "6:45 PM - 7:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "6:45 PM - 7:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 244, + "date": "2025-03-17", + "startTime": 1140, + "endTime": 1170, + "startTimeSeconds": 1742209200 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "7:00 PM - 7:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "7:00 PM - 7:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 245, + "date": "2025-03-17", + "startTime": 1155, + "endTime": 1185, + "startTimeSeconds": 1742210100 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "7:15 PM - 7:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "7:15 PM - 7:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 246, + "date": "2025-03-17", + "startTime": 1170, + "endTime": 1200, + "startTimeSeconds": 1742211000 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "7:30 PM - 8:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "7:30 PM - 8:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 247, + "date": "2025-03-17", + "startTime": 1185, + "endTime": 1215, + "startTimeSeconds": 1742211900 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "7:45 PM - 8:15 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "7:45 PM - 8:15 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 248, + "date": "2025-03-17", + "startTime": 1200, + "endTime": 1230, + "startTimeSeconds": 1742212800 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "8:00 PM - 8:30 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "8:00 PM - 8:30 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 249, + "date": "2025-03-17", + "startTime": 1215, + "endTime": 1245, + "startTimeSeconds": 1742213700 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "8:15 PM - 8:45 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "8:15 PM - 8:45 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + }, + { + "timeWindowViewModel": { + "timeWindow": { + "timeWindowID": 250, + "date": "2025-03-17", + "startTime": 1230, + "endTime": 1260, + "startTimeSeconds": 1742214600 + }, + "text": { + "richTextElements": [ + { + "text": { + "text": { + "text": "8:30 PM - 9:00 PM", + "font": { + "style": "LABEL_DEFAULT", + "weight": "UNKNOWN" + } + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "8:30 PM - 9:00 PM" + }, + "viewState": "PRIMARY" + }, + "type": "timeWindowViewModel" + } + ], + "viewState": "PRIMARY" + } + ], + "actions": [ + { + "action": { + "type": "SCHEDULE" + }, + "viewModel": { + "buttonViewModel": { + "style": { + "definedStyle": "PRIMARY", + "type": "definedStyle" + }, + "buttonSize": "LARGE", + "content": { + "textContent": { + "shape": "RECT", + "textContent": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Schedule" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Schedule" + } + }, + "type": "textContent" + }, + "isEnabled": true + }, + "type": "buttonViewModel" + }, + "availability": "TIME_WINDOW_SELECTED" + }, + { + "action": { + "type": "CANCEL" + }, + "viewModel": { + "buttonViewModel": { + "style": { + "definedStyle": "SECONDARY", + "type": "definedStyle" + }, + "buttonSize": "LARGE", + "content": { + "textContent": { + "shape": "RECT", + "textContent": { + "richTextElements": [ + { + "text": { + "text": { + "text": "Cancel" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Cancel" + } + }, + "type": "textContent" + }, + "isEnabled": true + }, + "type": "buttonViewModel" + }, + "availability": "ALWAYS" + } + ], + "selectedTimeWindowID": 1, + "initialViewportVisibleTimeWindowID": 1 + }, + "headerBrandingInfo": { + "storeName": { + "richTextElements": [ + { + "text": { + "text": { + "text": "China Kitchen", + "font": { + "style": "HEADING_SMALL", + "weight": "BOLD" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ] + }, + "truncatingMetadata": { + "richTextElements": [ + { + "text": { + "text": { + "text": "4.4 ", + "font": { + "style": "LABEL_SMALL", + "weight": "MEDIUM" + }, + "color": "CONTENT_PRIMARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "icon": { + "icon": { + "icon": "STAR", + "color": "CONTENT_PRIMARY" + }, + "alignment": "CENTERED", + "font": { + "style": "PARAGRAPH_X_SMALL", + "weight": "NORMAL" + } + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": " (380+)", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_TERTIARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ], + "accessibilityText": "Rating 4.4 from 380+ reviews\n" + }, + "nonTruncatingMetadata": { + "richTextElements": [ + { + "icon": { + "icon": { + "icon": "CLOCK", + "color": "CONTENT_TERTIARY" + }, + "alignment": "CENTERED", + "font": { + "style": "PARAGRAPH_X_SMALL", + "weight": "NORMAL" + } + }, + "type": "icon" + }, + { + "text": { + "text": { + "text": " Available at 10:00 AM", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_TERTIARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": "\n", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_TERTIARY" + }, + "predefinedDecorations": null + }, + "type": "text" + }, + { + "text": { + "text": { + "text": "5385 New Peachtree Rd, Chamblee, GA 30341", + "font": { + "style": "PARAGRAPH_SMALL", + "weight": "NORMAL" + }, + "color": "CONTENT_TERTIARY" + }, + "predefinedDecorations": null + }, + "type": "text" + } + ] + }, + "headerType": "RESTAURANT", + "storeTags": null + }, + "storeBanners": null, + "exploreMoreStores": { + "516658e0-667f-5063-a3e9-d9d3e13a2e53": { + "top": null, + "bottom": null + } + }, + "storeFrontActionPills": [ + { + "actionPillType": "GROUP_ORDER", + "overflowActions": null + }, + { + "title": "Schedule", + "actionPillType": "SCHEDULE", + "overflowActions": null + } + ], + "timing": 270, + "eaterPreviewPrompts": null, + "storeMerchantTypeInfo": { + "uberMerchantType": { + "type": "MERCHANT_TYPE_RESTAURANT", + "restaurant": { + "type": "RESTAURANT_MERCHANT_TYPE_UNKNOWN" + } + }, + "isMultiLevel": false + }, + "featuredItemsSections": null, + "storeSessionUuid": "e82d8018-0079-437b-a769-0c3c2593f047" + }, + "dataUpdateCount": 1, + "dataUpdatedAt": 1741696417024, + "error": null, + "errorUpdateCount": 0, + "errorUpdatedAt": 0, + "fetchFailureCount": 0, + "fetchMeta": null, + "isFetching": false, + "isInvalidated": false, + "isPaused": false, + "status": "success" + }, + "queryKey": [ + "getStoreV1", + { + "storeUuid": "0212c830-1845-41d2-aa06-6c78bfb97315", + "diningMode": "PICKUP", + "time": { + "asap": true + }, + "cbType": "EATER_ENDORSED" + }, + { + "diningMode": "PICKUP", + "locationReference": "ChIJ7cXuxpYZ2jERPmwg_xdxMsE", + "deliveryTime": { + "asap": true + } + } + ], + "queryHash": "[\"getStoreV1\",{\"cbType\":\"EATER_ENDORSED\",\"diningMode\":\"PICKUP\",\"storeUuid\":\"0212c830-1845-41d2-aa06-6c78bfb97315\",\"time\":{\"asap\":true}},{\"deliveryTime\":{\"asap\":true},\"diningMode\":\"PICKUP\",\"locationReference\":\"ChIJ7cXuxpYZ2jERPmwg_xdxMsE\"}]" + }, + { + "state": { + "data": { + "isLoggedIn": false + }, + "dataUpdateCount": 0, + "dataUpdatedAt": 1741696417025, + "error": null, + "errorUpdateCount": 0, + "errorUpdatedAt": 0, + "fetchFailureCount": 0, + "fetchMeta": null, + "isFetching": false, + "isInvalidated": false, + "isPaused": false, + "status": "success" + }, + "queryKey": [ + "getUserV1", + {}, + null + ], + "queryHash": "[\"getUserV1\",{},null]" + }, + { + "state": { + "data": { + "checkoutPayloads": {}, + "draftOrderUUID": "", + "hasDismissedError": "initial" + }, + "dataUpdateCount": 0, + "dataUpdatedAt": 1741696417029, + "error": null, + "errorUpdateCount": 0, + "errorUpdatedAt": 0, + "fetchFailureCount": 0, + "fetchMeta": null, + "isFetching": false, + "isInvalidated": false, + "isPaused": false, + "status": "success" + }, + "queryKey": [ + "checkoutPresentation", + "", + "data" + ], + "queryHash": "[\"checkoutPresentation\",\"\",\"data\"]" + }, + { + "state": { + "data": 16, + "dataUpdateCount": 0, + "dataUpdatedAt": 1741696417035, + "error": null, + "errorUpdateCount": 0, + "errorUpdatedAt": 0, + "fetchFailureCount": 0, + "fetchMeta": null, + "isFetching": false, + "isInvalidated": false, + "isPaused": false, + "status": "success" + }, + "queryKey": "pickup_map_meta.zoom_level", + "queryHash": "[\"pickup_map_meta.zoom_level\"]" + }, + { + "state": { + "data": "FEED", + "dataUpdateCount": 0, + "dataUpdatedAt": 1741696417035, + "error": null, + "errorUpdateCount": 0, + "errorUpdatedAt": 0, + "fetchFailureCount": 0, + "fetchMeta": null, + "isFetching": false, + "isInvalidated": false, + "isPaused": false, + "status": "success" + }, + "queryKey": "pickup_map_meta.display_mode", + "queryHash": "[\"pickup_map_meta.display_mode\"]" + }, + { + "state": { + "data": null, + "dataUpdateCount": 0, + "dataUpdatedAt": 1741696417035, + "error": null, + "errorUpdateCount": 0, + "errorUpdatedAt": 0, + "fetchFailureCount": 0, + "fetchMeta": null, + "isFetching": false, + "isInvalidated": false, + "isPaused": false, + "status": "success" + }, + "queryKey": "pickup_map_meta.coordinates", + "queryHash": "[\"pickup_map_meta.coordinates\"]" + } + ] +} \ No newline at end of file diff --git a/web/ubereats/II/html.html b/web/ubereats/II/html.html new file mode 100644 index 0000000..9a0edab --- /dev/null +++ b/web/ubereats/II/html.html @@ -0,0 +1,710 @@ +Order China Kitchen Menu Delivery in Atlanta | China Kitchen Prices | Uber Eats + + + + + +
        Skip to content
        China Kitchen

        China Kitchen

        4.4 x (380+) • Chinese • Asian • Seafood • € • Info

        xClock Available at 10:00 AM

        5385 New Peachtree Rd, Chamblee, GA 30341

        China Kitchen, located in the Dunwoody Forest neighborhood of Atlanta, specializes in Chinese cuisine, offering a wide variety of dishes that cater to diverse tastes. Popular among patrons are the Spicy Master ...
        China Kitchen, located in the Dunwoody Forest neighborhood of Atlanta, specializes in Chinese cuisine, offering a wide variety of dishes that cater to diverse tastes. Popular among patrons are the Spicy Master Dumpling and Spicy Chicken, along with Veg Spring Rolls, which are also frequently ordered together. The menu features an extensive selection including Shanghai Soup Dumplings, various types of dry hot pots like Seasoning Fish and Lamb, as well as a selection of seafood dishes such as Hong Kong Style Shrimp and Salt and Pepper Squid. This establishment is particularly favored during the evening hours and maintains a high customer satisfaction with a rating of 4.4.

        Rating and reviews

        4.4

        StarStarStarStarStar outline

        380+ Ratings

        "looooooooovvvvvve the spicy chicken it never disappoints."

        StarStarStarStarStar
         • HAMILTON A. • 05/01/24

        "love the spicy chicken little nuggets of happiness"

        StarStarStarStarStar
         • HAMILTON A. • 04/07/24

        $0.00

        Pricing & fees

        Closed

        Pickup time

        Sunday

        10:00 AM - 9:30 PM

        Monday - Friday

        10:00 AM - 9:00 PM

        Saturday

        10:00 AM - 9:30 PM

        All Day

        10:00 AM – 9:00 PM

        Search
        + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/web/ubereats/II/main.py b/web/ubereats/II/main.py new file mode 100644 index 0000000..eed427e --- /dev/null +++ b/web/ubereats/II/main.py @@ -0,0 +1,504 @@ +import re +import time +from urllib.parse import unquote +import requests +import json +from lxml import etree +from openpyxl import load_workbook +from openpyxl.styles import Font, PatternFill, Alignment, Border, Side + + +class ubereats: + def __init__(self): + + self.cookies = { + 'dId': '201f1380-db90-4fce-b53c-9e5f1a1797db', + 'uev2.diningMode': 'PICKUP', + 'marketing_vistor_id': 'b2b08d27-61c5-49a5-8960-3bf57d7dc740', + 'u-cookie-prefs': 'eyJ2ZXJzaW9uIjoxMDAsImRhdGUiOjE3NDExNzE2MjgyODAsImNvb2tpZUNhdGVnb3JpZXMiOlsiYWxsIl0sImltcGxpY2l0Ijp0cnVlfQ%3D%3D', + 'uev2.gg': 'true', + '_gcl_au': '1.1.639637700.1741171631', + '_scid': 'PKHcwyQACjnCw9d1hw_hGGK2mECWKPAw', + '_fbp': 'fb.1.1741171631251.75638408989351243', + '_ga': 'GA1.1.1953756175.1741171632', + '_ScCbts': '%5B%5D', + '_yjsu_yjad': '1741171631.b78cd8ba-9e38-46b9-b413-15deb0d5a676', + '_sctr': '1%7C1741104000000', + '_tt_enable_cookie': '1', + '_ttp': '01JNJYND745JBKHC19JF1B3ENF_.tt.1', + '_clck': 'oo6f3j%7C2%7Cfu1%7C0%7C1890', + 'uev2.loc': '%7B%22address%22%3A%7B%22address1%22%3A%22Hellu%20Coffee%22%2C%22address2%22%3A%22137%20Amoy%20St%2C%20%2301-05%20Far%20East%20Square%22%2C%22aptOrSuite%22%3A%22%22%2C%22eaterFormattedAddress%22%3A%22137%20Amoy%20St%2C%20%2301-05%20Far%20East%20Square%2C%20Singapore%20049965%22%2C%22subtitle%22%3A%22137%20Amoy%20St%2C%20%2301-05%20Far%20East%20Square%22%2C%22title%22%3A%22Hellu%20Coffee%22%2C%22uuid%22%3A%22%22%7D%2C%22latitude%22%3A1.2833573%2C%22longitude%22%3A103.8484733%2C%22reference%22%3A%22ChIJ7cXuxpYZ2jERPmwg_xdxMsE%22%2C%22referenceType%22%3A%22google_places%22%2C%22type%22%3A%22google_places%22%2C%22addressComponents%22%3A%7B%22city%22%3A%22%22%2C%22countryCode%22%3A%22SG%22%2C%22firstLevelSubdivisionCode%22%3A%22%22%2C%22postalCode%22%3A%22%22%7D%2C%22categories%22%3A%5B%22CAFE%22%2C%22FOOD_AND_BEVERAGE%22%2C%22RESTAURANT%22%2C%22SHOPS_AND_SERVICES%22%2C%22place%22%5D%2C%22originType%22%3A%22user_autocomplete%22%2C%22source%22%3A%22manual_auto_complete%22%2C%22userState%22%3A%22Unknown%22%7D', + '_uetvid': '32f691f0f9af11efad4d6dc246fea42a', + 'uev2.embed_theme_preference': 'dark', + 'uev2.id.xp': '662c2f60-f06a-4035-ac3e-d95125b67b55', + 'uev2.id.session': '4df841ca-6232-462b-a703-922e6b339076', + 'uev2.ts.session': '1741695951647', + '_ua': '{"session_id":"43b8b8f0-a29e-4afc-b413-1eb51d71fa4f","session_time_ms":1741695952168}', + 'jwt-session': 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpYXQiOjE3NDE2OTU5NTEsImRhdGEiOnsic2xhdGUtZXhwaXJlcy1hdCI6MTc0MTY5Nzc1MjE2OH0sImV4cCI6MTc0MTc4MjM1MX0.0A-JUI9H8p9GbF8psH4IUB5UYUBOdKxwt0hWuxNBs5k', + 'utag_main__sn': '6', + 'utag_main_ses_id': '1741695961152%3Bexp-session', + 'utag_main__pn': '1%3Bexp-session', + 'utm_medium': 'search-free-nonbrand', + 'utm_source': 'google-pas', + '_scid_r': 'SSHcwyQACjnCw9d1hw_hGGK2mECWKPAwQvf-Ww', + 'utag_main__se': '2%3Bexp-session', + 'utag_main__ss': '0%3Bexp-session', + 'utag_main__st': '1741697763074%3Bexp-session', + '_userUuid': '', + '_ga_P1RM71MPFP': 'GS1.1.1741695965.7.1.1741695965.60.0.0', + } + + self.headers = { + 'accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7', + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8', + 'cache-control': 'no-cache', + 'pragma': 'no-cache', + 'priority': 'u=0, i', + 'sec-ch-prefers-color-scheme': 'dark', + 'sec-ch-ua': '"Chromium";v="134", "Not:A-Brand";v="24", "Google Chrome";v="134"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-platform': '"Windows"', + 'sec-fetch-dest': 'document', + 'sec-fetch-mode': 'navigate', + 'sec-fetch-site': 'same-origin', + 'sec-fetch-user': '?1', + 'upgrade-insecure-requests': '1', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', + # 'cookie': 'dId=201f1380-db90-4fce-b53c-9e5f1a1797db; uev2.diningMode=PICKUP; marketing_vistor_id=b2b08d27-61c5-49a5-8960-3bf57d7dc740; u-cookie-prefs=eyJ2ZXJzaW9uIjoxMDAsImRhdGUiOjE3NDExNzE2MjgyODAsImNvb2tpZUNhdGVnb3JpZXMiOlsiYWxsIl0sImltcGxpY2l0Ijp0cnVlfQ%3D%3D; uev2.gg=true; _gcl_au=1.1.639637700.1741171631; _scid=PKHcwyQACjnCw9d1hw_hGGK2mECWKPAw; _fbp=fb.1.1741171631251.75638408989351243; _ga=GA1.1.1953756175.1741171632; _ScCbts=%5B%5D; _yjsu_yjad=1741171631.b78cd8ba-9e38-46b9-b413-15deb0d5a676; _sctr=1%7C1741104000000; _tt_enable_cookie=1; _ttp=01JNJYND745JBKHC19JF1B3ENF_.tt.1; _clck=oo6f3j%7C2%7Cfu1%7C0%7C1890; uev2.loc=%7B%22address%22%3A%7B%22address1%22%3A%22Hellu%20Coffee%22%2C%22address2%22%3A%22137%20Amoy%20St%2C%20%2301-05%20Far%20East%20Square%22%2C%22aptOrSuite%22%3A%22%22%2C%22eaterFormattedAddress%22%3A%22137%20Amoy%20St%2C%20%2301-05%20Far%20East%20Square%2C%20Singapore%20049965%22%2C%22subtitle%22%3A%22137%20Amoy%20St%2C%20%2301-05%20Far%20East%20Square%22%2C%22title%22%3A%22Hellu%20Coffee%22%2C%22uuid%22%3A%22%22%7D%2C%22latitude%22%3A1.2833573%2C%22longitude%22%3A103.8484733%2C%22reference%22%3A%22ChIJ7cXuxpYZ2jERPmwg_xdxMsE%22%2C%22referenceType%22%3A%22google_places%22%2C%22type%22%3A%22google_places%22%2C%22addressComponents%22%3A%7B%22city%22%3A%22%22%2C%22countryCode%22%3A%22SG%22%2C%22firstLevelSubdivisionCode%22%3A%22%22%2C%22postalCode%22%3A%22%22%7D%2C%22categories%22%3A%5B%22CAFE%22%2C%22FOOD_AND_BEVERAGE%22%2C%22RESTAURANT%22%2C%22SHOPS_AND_SERVICES%22%2C%22place%22%5D%2C%22originType%22%3A%22user_autocomplete%22%2C%22source%22%3A%22manual_auto_complete%22%2C%22userState%22%3A%22Unknown%22%7D; _uetvid=32f691f0f9af11efad4d6dc246fea42a; uev2.embed_theme_preference=dark; uev2.id.xp=662c2f60-f06a-4035-ac3e-d95125b67b55; uev2.id.session=4df841ca-6232-462b-a703-922e6b339076; uev2.ts.session=1741695951647; _ua={"session_id":"43b8b8f0-a29e-4afc-b413-1eb51d71fa4f","session_time_ms":1741695952168}; jwt-session=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpYXQiOjE3NDE2OTU5NTEsImRhdGEiOnsic2xhdGUtZXhwaXJlcy1hdCI6MTc0MTY5Nzc1MjE2OH0sImV4cCI6MTc0MTc4MjM1MX0.0A-JUI9H8p9GbF8psH4IUB5UYUBOdKxwt0hWuxNBs5k; utag_main__sn=6; utag_main_ses_id=1741695961152%3Bexp-session; utag_main__pn=1%3Bexp-session; utm_medium=search-free-nonbrand; utm_source=google-pas; _scid_r=SSHcwyQACjnCw9d1hw_hGGK2mECWKPAwQvf-Ww; utag_main__se=2%3Bexp-session; utag_main__ss=0%3Bexp-session; utag_main__st=1741697763074%3Bexp-session; _userUuid=; _ga_P1RM71MPFP=GS1.1.1741695965.7.1.1741695965.60.0.0', + } + + self.params = { + 'diningMode': 'PICKUP', + 'pl': 'JTdCJTIyYWRkcmVzcyUyMiUzQSUyMkhlbGx1JTIwQ29mZmVlJTIyJTJDJTIycmVmZXJlbmNlJTIyJTNBJTIyQ2hJSjdjWHV4cFlaMmpFUlBtd2dfeGR4TXNFJTIyJTJDJTIycmVmZXJlbmNlVHlwZSUyMiUzQSUyMmdvb2dsZV9wbGFjZXMlMjIlMkMlMjJsYXRpdHVkZSUyMiUzQTEuMjgzMzU3MyUyQyUyMmxvbmdpdHVkZSUyMiUzQTEwMy44NDg0NzMzJTdE', + 'ps': '1', + 'utm_campaign': 'CM2508147-search-free-nonbrand-google-pas_e_all_acq_Global', + 'utm_medium': 'search-free-nonbrand', + 'utm_source': 'google-pas', + } + + self.html = "" + self.wb = load_workbook('Menu.xlsx') + self.get_Html() + self.modify_first_row = self.modify_first_row() + + def clear_sheet(self, sheet): + ws = self.wb[sheet] + for row in ws.iter_rows(min_row=2): # 首行不清空 + for cell in row: + if cell.value is not None: + cell.value = None + self.wb.save('Menu.xlsx') + + def clear_except_first_row(self, sheet): + ws = self.wb[sheet] + + # **解除所有合并单元格** + merged_ranges = list(ws.merged_cells.ranges) + for merged_range in merged_ranges: + ws.unmerge_cells(str(merged_range)) + + # **获取最大行和最大列** + max_row = ws.max_row + max_col = ws.max_column + + # **清除第二行及之后的所有数据和格式** + if max_row > 1: + for row in range(2, max_row + 1): # 从第二行开始清除 + for col in range(1, max_col + 1): + cell = ws.cell(row=row, column=col) + cell.value = None # 清除数据 + cell.fill = PatternFill(fill_type=None) # 清除背景色 + cell.font = Font() # 重置字体 + cell.alignment = Alignment() # 重置对齐方式 + cell.border = Border() # 清除边框 + + # **删除第二行及之后的所有行** + ws.delete_rows(2, max_row - 1 if max_row > 2 else 1) + + # **清除行级别格式** + for row in range(2, max_row + 1): + if row in ws.row_dimensions: + ws.row_dimensions[row].fill = PatternFill(fill_type=None) # 清除行级背景色 + ws.row_dimensions[row].font = Font() # 清除行级字体 + ws.row_dimensions[row].alignment = Alignment() # 清除行级对齐方式 + + # **保存 Excel** + self.wb.save('Menu.xlsx') + + def get_Html(self): + + + response = requests.get( + 'https://www.ubereats.com/store/china-kitchen/AhLIMBhFQdKqBmx4v7lzFQ', + params=self.params, + cookies=self.cookies, + headers=self.headers, + ) + response_html = requests.get(self.url, headers=self.headers, cookies=self.cookies, params=self.params) + self.html = response.text.encode('utf-8').decode('unicode_escape') + with open('html_11.html', 'w',encoding="utf-8") as f: + f.write(self.html) + # with open('html.html', 'r', encoding='utf-8') as f: + # self.html = f.read() + + def get_Menu(self): + xpath_info = etree.HTML(self.html) + menu_list = xpath_info.xpath("//button[starts-with(@id, 'tabs-desktop-ofd-menu-tab-')]/span/text()") + menu_time = xpath_info.xpath("//p[@data-baseweb='typo-paragraphxsmall']/text()") + menu_time = menu_time[1].encode('latin-1').decode('utf-8') if menu_list else "" + menu_time = re.sub(r'\s+', '', menu_time) # Menu Description + self.clear_sheet("Menu") + ws = self.wb["Menu"] + ws["A2"] = "Third Party Menu" + self.clear_sheet("Categories") + ws = self.wb["Categories"] + for idx, item in enumerate(menu_list, start=2): + ws.cell(row=idx, column=1, value="Third Party Menu") + ws.cell(row=idx, column=2, value=item) + ws.cell(row=idx, column=3, value="") # 翻译 + ws.cell(row=idx, column=4, value=menu_time) + ws.cell(row=idx, column=5, value="") + + self.wb.save('Menu.xlsx') + + def modify_first_row(self): + ws = self.wb["Modifier"] + source_row = 1 + row_data = {} + + # 提取第一行数据和格式 + for col in range(1, ws.max_column + 1): + source_cell = ws.cell(row=source_row, column=col) + + row_data[col] = { + "value": source_cell.value, # 数据 + "font": Font( + name=source_cell.font.name, + size=source_cell.font.size, + bold=source_cell.font.bold, + italic=source_cell.font.italic, + underline=source_cell.font.underline, + color=source_cell.font.color.rgb if source_cell.font.color else None + ), + "alignment": Alignment( + horizontal=source_cell.alignment.horizontal, + vertical=source_cell.alignment.vertical, + wrap_text=source_cell.alignment.wrap_text + ), + "fill": PatternFill( + fill_type=source_cell.fill.patternType, + fgColor=source_cell.fill.fgColor.rgb if source_cell.fill.fgColor else None, + bgColor=source_cell.fill.bgColor.rgb if source_cell.fill.bgColor else None + ) if source_cell.fill and source_cell.fill.patternType else None, + "border": Border( + left=Side(style=source_cell.border.left.style, color=source_cell.border.left.color), + right=Side(style=source_cell.border.right.style, color=source_cell.border.right.color), + top=Side(style=source_cell.border.top.style, color=source_cell.border.top.color), + bottom=Side(style=source_cell.border.bottom.style, color=source_cell.border.bottom.color), + ) if source_cell.border else None + } + row_data["row_height"] = ws.row_dimensions[source_row].height + return row_data + def get_item(self): + # html_info = re.findall(r'', self.html, re.S) + # js2json = unquote(html_info[5]) + # print(js2json) + # json_data = json.loads(js2json) + # with open('data.json', 'w', encoding='utf-8') as f: + # f.write(json.dumps(json_data, indent=4)) + # exit() + self.clear_except_first_row("Item") + self.clear_except_first_row("Modifier") + ws = self.wb["Item"] + data = [] + with open('data.json', 'r', encoding='utf-8') as f: + json_data = json.load(f) + queries = json_data['queries'][0]['state']['data'] + storeUuid = queries['uuid'] + sectionUuid = list(queries["catalogSectionsMap"].keys())[0] + index = 2 + for catalog in queries["catalogSectionsMap"][sectionUuid]: + playload = catalog['payload'] + standardItemsPayload = playload['standardItemsPayload'] + _type = standardItemsPayload['title']['text'] + for citem in standardItemsPayload['catalogItems']: + menuItemUuid = citem['uuid'] + title = citem['title'] + price = citem['price'] / 100 + itemDescription = citem['itemDescription'] + if "/ ." in itemDescription: + itemDescription = itemDescription.replace("/ .", "") + if "é" in itemDescription: + itemDescription = itemDescription.replace("é", "é") + hasCustomizations = citem['hasCustomizations'] + subsectionUuid = citem['subsectionUuid'] + if hasCustomizations: + modifier = self.get_itemV1(storeUuid, sectionUuid, subsectionUuid, menuItemUuid) + if modifier['ism'] != 1: + for addons in modifier['addons']: + existing_addon = next((item for item in data if item["name"] == addons["name"]), None) + + if existing_addon: + existing_items = {item["name"] for item in existing_addon["list"]} + new_items = [item for item in addons["list"] if item["name"] not in existing_items] + existing_addon["list"].extend(new_items) + else: + data.append(addons) + + ws.cell(row=index, column=1, value="Online Lunch Menu") + ws.cell(row=index, column=2, value=_type) + ws.cell(row=index, column=3, value=title) + ws.cell(row=index, column=4, value="") + ws.cell(row=index, column=5, value=price) + ws.cell(row=index, column=7, value=itemDescription) + ws.cell(row=index, column=8, value="Sales Tax") + if not hasCustomizations: + ws.cell(row=index, column=6, value="") + else: + if modifier['ism'] == 3 or modifier['ism'] == 1: + value = ";".join( + [f"{format(price if i['price'] == 0.0 else i['price'] + price, '.2f')}/{i['name']}" for i in + modifier['sizes']]) + ws.cell(row=index, column=5, value=value) + if modifier['ism'] == 3: + v2 = "\n".join([i for i in modifier['nameList']]) + ws.cell(row=index, column=6, value=v2) + if modifier['ism'] == 2: + v2 = "\n".join([i['name'] for i in modifier['addons']]) + ws.cell(row=index, column=6, value=v2) + index += 1 + self.wb.save('Menu.xlsx') + + with open('Adata.json', 'w', encoding='utf-8') as f: + json.dump(data, f, ensure_ascii=False, indent=4) + + def write_xlsx(self): + ws = self.wb["Modifier"] + self.clear_except_first_row("Modifier") # 清除数据,但保留第一行 + + with open('Adata.json', 'r', encoding='utf-8') as f: + data = json.load(f) + + index = 2 # **确保从第 2 行开始填充数据** + + for i in data: + # **确保从 index > 2 才复制格式** + if index > 2: + ws.row_dimensions[index].height = self.modify_first_row["row_height"] + + for col, cell_data in self.modify_first_row.items(): + if col == "row_height": + continue + + target_cell = ws.cell(row=index, column=col) + + # **正确赋值** + target_cell.value = cell_data["value"] + + # **复制格式** + if cell_data["font"]: + target_cell.font = Font( + name=cell_data["font"].name, + size=cell_data["font"].size, + bold=cell_data["font"].bold, + italic=cell_data["font"].italic, + underline=cell_data["font"].underline, + color=cell_data["font"].color + ) + if cell_data["alignment"]: + target_cell.alignment = Alignment( + horizontal=cell_data["alignment"].horizontal, + vertical=cell_data["alignment"].vertical, + wrap_text=cell_data["alignment"].wrap_text + ) + if cell_data["fill"] and cell_data["fill"].patternType: + target_cell.fill = PatternFill( + fill_type=cell_data["fill"].patternType, + fgColor=cell_data["fill"].fgColor.rgb, + bgColor=cell_data["fill"].bgColor.rgb + ) + if cell_data["border"]: + target_cell.border = Border( + left=Side(style=cell_data["border"].left.style, color=cell_data["border"].left.color), + right=Side(style=cell_data["border"].right.style, color=cell_data["border"].right.color), + top=Side(style=cell_data["border"].top.style, color=cell_data["border"].top.color), + bottom=Side(style=cell_data["border"].bottom.style, color=cell_data["border"].bottom.color), + ) + index += 1 + + # **填充 JSON 数据** + ws.cell(row=index, column=1, value=i['name']) + ws.cell(row=index, column=2, value="") + ws.cell(row=index, column=7, value="Required" if i['required'] else "Not Required") + ws.cell(row=index, column=8, value="1") + ws.cell(row=index, column=9, value=i['maxPermitted']) + ws.cell(row=index, column=10, value="NO") + aindex = index + for item in i['list']: + ws.cell(row=index, column=3, value=item['name']) + ws.cell(row=index, column=6, value=item['price']) + + index += 1 + index += 1 + bindex = index + if bindex - aindex > 1: + ws.merge_cells(start_row=aindex, start_column=1, end_row=bindex - 2, end_column=1) + ws.cell(row=aindex, column=1).alignment = Alignment(horizontal="center", vertical="center") + + ws.merge_cells(start_row=aindex, start_column=2, end_row=bindex - 2, end_column=2) + ws.cell(row=aindex, column=2).alignment = Alignment(horizontal="center", vertical="center") + + ws.merge_cells(start_row=aindex, start_column=7, end_row=bindex - 2, end_column=7) + ws.cell(row=aindex, column=7).alignment = Alignment(horizontal="center", vertical="center") + ws.merge_cells(start_row=aindex, start_column=8, end_row=bindex - 2, end_column=8) + ws.cell(row=aindex, column=8).alignment = Alignment(horizontal="center", vertical="center") + ws.merge_cells(start_row=aindex, start_column=9, end_row=bindex - 2, end_column=9) + ws.cell(row=aindex, column=9).alignment = Alignment(horizontal="center", vertical="center") + ws.merge_cells(start_row=aindex, start_column=10, end_row=bindex - 2, end_column=10) + ws.cell(row=aindex, column=10).alignment = Alignment(horizontal="center", vertical="center") + + self.wb.save('Menu.xlsx') + + def get_itemV1(self, storeUuid, sectionUuid, subsectionUuid, menuItemUuid): + cookies = { + 'dId': '201f1380-db90-4fce-b53c-9e5f1a1797db', + 'uev2.diningMode': 'PICKUP', + 'marketing_vistor_id': 'b2b08d27-61c5-49a5-8960-3bf57d7dc740', + 'u-cookie-prefs': 'eyJ2ZXJzaW9uIjoxMDAsImRhdGUiOjE3NDExNzE2MjgyODAsImNvb2tpZUNhdGVnb3JpZXMiOlsiYWxsIl0sImltcGxpY2l0Ijp0cnVlfQ%3D%3D', + 'uev2.gg': 'true', + '_gcl_au': '1.1.639637700.1741171631', + '_scid': 'PKHcwyQACjnCw9d1hw_hGGK2mECWKPAw', + '_fbp': 'fb.1.1741171631251.75638408989351243', + '_ga': 'GA1.1.1953756175.1741171632', + '_ScCbts': '%5B%5D', + '_yjsu_yjad': '1741171631.b78cd8ba-9e38-46b9-b413-15deb0d5a676', + '_sctr': '1%7C1741104000000', + '_tt_enable_cookie': '1', + '_ttp': '01JNJYND745JBKHC19JF1B3ENF_.tt.1', + 'uev2.embed_theme_preference': 'dark', + 'uev2.id.xp': 'bd485f5e-f8f1-4dce-bf88-c1e92a3cd4c0', + '_ua': '{"session_id":"f08842b9-416c-4e82-bed0-25250e9abe14","session_time_ms":1741398128598}', + 'utm_medium': 'undefined', + 'utm_source': 'undefined', + '_clck': 'oo6f3j%7C2%7Cfu1%7C0%7C1890', + 'uev2.loc': '%7B%22address%22%3A%7B%22address1%22%3A%22Hellu%20Coffee%22%2C%22address2%22%3A%22137%20Amoy%20St%2C%20%2301-05%20Far%20East%20Square%22%2C%22aptOrSuite%22%3A%22%22%2C%22eaterFormattedAddress%22%3A%22137%20Amoy%20St%2C%20%2301-05%20Far%20East%20Square%2C%20Singapore%20049965%22%2C%22subtitle%22%3A%22137%20Amoy%20St%2C%20%2301-05%20Far%20East%20Square%22%2C%22title%22%3A%22Hellu%20Coffee%22%2C%22uuid%22%3A%22%22%7D%2C%22latitude%22%3A1.2833573%2C%22longitude%22%3A103.8484733%2C%22reference%22%3A%22ChIJ7cXuxpYZ2jERPmwg_xdxMsE%22%2C%22referenceType%22%3A%22google_places%22%2C%22type%22%3A%22google_places%22%2C%22addressComponents%22%3A%7B%22city%22%3A%22%22%2C%22countryCode%22%3A%22SG%22%2C%22firstLevelSubdivisionCode%22%3A%22%22%2C%22postalCode%22%3A%22%22%7D%2C%22categories%22%3A%5B%22CAFE%22%2C%22FOOD_AND_BEVERAGE%22%2C%22RESTAURANT%22%2C%22SHOPS_AND_SERVICES%22%2C%22place%22%5D%2C%22originType%22%3A%22user_autocomplete%22%2C%22source%22%3A%22manual_auto_complete%22%2C%22userState%22%3A%22Unknown%22%7D', + 'uev2.id.session': '92a4abd6-d9c4-4a11-97ee-ae4a7083eedd', + 'uev2.ts.session': '1741414539843', + 'jwt-session': 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJkYXRhIjp7InNsYXRlLWV4cGlyZXMtYXQiOjE3NDE0MTYzNDAyOTl9LCJpYXQiOjE3NDEzOTgxMjksImV4cCI6MTc0MTQ4NDUyOX0.hpvIQEo4HoKsyOfRlVGrxuXN1dO_R_9k_tHCbMe_q3s', + 'utag_main__sn': '5', + 'utag_main_ses_id': '1741414545690%3Bexp-session', + 'utag_main__pn': '1%3Bexp-session', + '_scid_r': 'SCHcwyQACjnCw9d1hw_hGGK2mECWKPAwQvf-Wg', + 'utag_main__se': '2%3Bexp-session', + 'utag_main__ss': '0%3Bexp-session', + 'utag_main__st': '1741416357381%3Bexp-session', + '_userUuid': '', + '_ga_P1RM71MPFP': 'GS1.1.1741414542.6.1.1741414563.39.0.0', + '_uetsid': '8fabeee0fbbe11ef9b636786bd2c1b62', + '_uetvid': '32f691f0f9af11efad4d6dc246fea42a', + } + headers = { + 'accept': '*/*', + 'accept-language': 'zh-CN,zh;q=0.9', + 'cache-control': 'no-cache', + 'content-type': 'application/json', + 'origin': 'https://www.ubereats.com', + 'pragma': 'no-cache', + 'priority': 'u=1, i', + # 'referer': 'https://www.ubereats.com/store/orlando-china-ocean/xFyut_WfRn6gd83QgBGLoA?diningMode=PICKUP&mod=quickView&modctx=%257B%2522storeUuid%2522%253A%2522c45caeb7-f59f-467e-a077-cdd080118ba0%2522%252C%2522sectionUuid%2522%253A%2522aa0f2b6d-8a05-575d-824a-814fa08b06d9%2522%252C%2522subsectionUuid%2522%253A%25228a6f7010-f06b-5f85-b417-38d9e96676f7%2522%252C%2522itemUuid%2522%253A%2522bad6eebb-46ff-571e-8d30-d42c40cdb62b%2522%252C%2522showSeeDetailsCTA%2522%253Atrue%257D&ps=1&sc=SEARCH_SUGGESTION', + 'sec-ch-prefers-color-scheme': 'dark', + 'sec-ch-ua': '"Chromium";v="134", "Not:A-Brand";v="24", "Google Chrome";v="134"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-platform': '"Windows"', + 'sec-fetch-dest': 'empty', + 'sec-fetch-mode': 'cors', + 'sec-fetch-site': 'same-origin', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', + 'x-csrf-token': 'x', + 'x-uber-client-gitref': 'a7f1b446e212f9e1ae1ee1c6541dbf565c7c6293' + } + + json_data = { + 'itemRequestType': 'ITEM', + 'storeUuid': storeUuid, + 'sectionUuid': sectionUuid, + 'subsectionUuid': subsectionUuid, + 'menuItemUuid': menuItemUuid, + 'cbType': 'EATER_ENDORSED', + 'contextReferences': [ + { + 'type': 'GROUP_ITEMS', + 'payload': { + 'type': 'groupItemsContextReferencePayload', + 'groupItemsContextReferencePayload': {}, + }, + 'pageContext': 'UNKNOWN', + }, + ], + } + proxies = { + 'http': 'http://127.0.0.1:7890', + 'https': 'http://127.0.0.1:7890' + } + response = requests.post('https://www.ubereats.com/_p/api/getMenuItemV1', cookies=cookies, headers=headers, + json=json_data, proxies=None).json() + + size_identifiers = ["(S)", "(L)", "(小)", "(大)", "(Half Gallon)", "(One Gallon)", "1.4pcs", "8pcs", "4pcs"] + data = {"ism": 0, "sizes": [], "addons": [], "nameList": []} # **新增 nameList** + has_size_option = False + has_addon_option = False + + customizationsList = response['data']['customizationsList'] + + for customizations in customizationsList: + title = customizations['title'] + customization_entry = {"name": title, "list": []} + for item in customizations['options']: + option_title = item['title'] + price = item['price'] / 100 + is_required = customizations['minPermitted'] > 0 + customization_entry["required"] = is_required + customization_entry["maxPermitted"] = customizations['maxPermitted'] + # **大小份归一化** + if any(option_title.startswith(size) for size in size_identifiers): + data['sizes'].append({"name": option_title, "price": price}) + has_size_option = True + else: + customization_entry["list"].append({"name": option_title, "price": price}) + has_addon_option = True + + # **解析子配菜** + if "childCustomizationList" in item and len(item['childCustomizationList']) > 0: + for child_customization in item["childCustomizationList"]: + for child_option in child_customization["options"]: + child_option_title = child_option["title"] + child_price = child_option["price"] / 100 + customization_entry["list"].append({"name": child_option_title, "price": child_price}) + has_addon_option = True # **子配菜也是配菜* + if customization_entry["list"]: + data["addons"].append(customization_entry) + + # **在 ism=3 时,生成 `nameList`** + if has_size_option and has_addon_option: + data['ism'] = 3 # **大小份 + 配菜** + data['ism'] = 3 # **大小份 + 配菜** + rename = data["addons"][0]["name"] + data['nameList'] = [f"{size['name']}: {rename}" for size in data["sizes"]] + elif has_size_option: + data['ism'] = 1 # **只有大小份** + elif has_addon_option: + data['ism'] = 2 # **只有配菜** + + print(data) # **检查数据是否正确** + return data + + +if __name__ == '__main__': + ubereats = ubereats() + ubereats.get_Menu() + # ubereats.get_item() + # ubereats.get_item() + # ubereats.write_xlsx() + # ubereats.get_itemV1("","","","") + # ubereats.get_itemV1("0212c830-1845-41d2-aa06-6c78bfb97315", "516658e0-667f-5063-a3e9-d9d3e13a2e53", "017a5d2c-88c7-5f1e-8c5e-d8bf76ac5d12", "28eaf6a2-f83b-5d67-b20a-1cd59b4ed42c") + # ubereats.write_xlsx() \ No newline at end of file diff --git a/web/ubereats/html.html b/web/ubereats/html.html new file mode 100644 index 0000000..7064f64 --- /dev/null +++ b/web/ubereats/html.html @@ -0,0 +1,710 @@ +Order China Kitchen - Menu & Prices - Atlanta Delivery | Uber Eats + + + + + +
        Skip to content
        China Kitchen

        China Kitchen

        4.4 xStar (380+) • Chinese • Asian • Seafood • € • Info

        5385 New Peachtree Rd, Chamblee, GA 30341

        China Kitchen, located in the Dunwoody Forest neighborhood of Atlanta, specializes in Chinese cuisine, offering a wide variety of dishes that cater to diverse tastes. Popular among patrons are the Spicy Master ...
        China Kitchen, located in the Dunwoody Forest neighborhood of Atlanta, specializes in Chinese cuisine, offering a wide variety of dishes that cater to diverse tastes. Popular among patrons are the Spicy Master Dumpling and Spicy Chicken, along with Veg Spring Rolls, which are also frequently ordered together. The menu features an extensive selection including Shanghai Soup Dumplings, various types of dry hot pots like Seasoning Fish and Lamb, as well as a selection of seafood dishes such as Hong Kong Style Shrimp and Salt and Pepper Squid. This establishment is particularly favored during the evening hours and maintains a high customer satisfaction with a rating of 4.4.

        Rating and reviews

        4.4

        StarStarStarStarStar outline

        380+ Ratings

        "looooooooovvvvvve the spicy chicken it never disappoints."

        StarStarStarStarStar
         • HAMILTON A. • 05/01/24

        "love the spicy chicken little nuggets of happiness"

        StarStarStarStarStar
         • HAMILTON A. • 04/07/24

        $0.00

        Pricing & fees

        5 min

        Pickup time

        Sunday

        10:00 AM - 9:30 PM

        Monday - Friday

        10:00 AM - 9:00 PM

        Saturday

        10:00 AM - 9:30 PM

        All Day

        10:00 AM – 9:00 PM

        Search
        + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/web/ubereats/html_11.html b/web/ubereats/html_11.html new file mode 100644 index 0000000..4582a88 --- /dev/null +++ b/web/ubereats/html_11.html @@ -0,0 +1,710 @@ +Order China Kitchen - Menu & Prices - Atlanta Delivery | Uber Eats + + + + + +
        Skip to content
        China Kitchen

        China Kitchen

        4.4 xStar (380+) • Chinese • Asian • Seafood • € • Info

        5385 New Peachtree Rd, Chamblee, GA 30341

        Rating and reviews

        4.4

        StarStarStarStarStar outline

        380+ Ratings

        "looooooooovvvvvve the spicy chicken it never disappoints."

        StarStarStarStarStar
         • HAMILTON A. • 05/01/24

        "love the spicy chicken little nuggets of happiness"

        StarStarStarStarStar
         • HAMILTON A. • 04/07/24

        $0.00

        Pricing & fees

        5 min

        Pickup time

        Sunday

        10:00 AM - 9:30 PM

        Monday - Friday

        10:00 AM - 9:00 PM

        Saturday

        10:00 AM - 9:30 PM

        All Day

        10:00 AM – 9:00 PM

        Search
        + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/web/ubereats/html_postman.html b/web/ubereats/html_postman.html new file mode 100644 index 0000000..fff3ae6 --- /dev/null +++ b/web/ubereats/html_postman.html @@ -0,0 +1,253 @@ +Order Orlando China Ocean - Menu & Prices - Orlando Delivery | Uber Eats + + + + + +
        Skip to content
        Orlando China Ocean

        Orlando China Ocean

        4.5 x (1,000+)AsianChineseCantoneseInfo

        xClock Available in 20 min

        2508 South Semoran Boulevard, Orlando, FL 32822

        Peng’s Asian Cuisine is a Chinese restaurant located in Orlando, known for its late-night popularity. The menu features a variety of traditional Chinese dishes, including favorites like Honey Spicy Chicken, Gen...
        Peng’s Asian Cuisine is a Chinese restaurant located in Orlando, known for its late-night popularity. The menu features a variety of traditional Chinese dishes, including favorites like Honey Spicy Chicken, General Tsos Chicken, Sweet and Sour Chicken, and Honey Sesame Chicken. For those who enjoy noodle dishes, options such as Roast Pork Lo Mein and Chicken Stir Fry Rice Noodles are available. The restaurant is highly rated, holding a customer rating of approximately 4.3, reflecting its commitment to quality and taste in every dish served.

        Rating and reviews

        4.5

        StarStarStarStarStar outline

        1000+ Ratings

        "Our favorite place was not open. Peng’s was so delicious!! Great honey sesame chicken, really good beef Lo mein. I got a spring roll and the chicken bao and they both were warm and crispy, I was honestly so happy with our meal!"

        StarStarStarStarStar
         • Colleen D. • 06/05/23

        "I absolutely love Peng's! Whether it's lunch time or late midnight meal! Their flavors are amazing! I'd recommend the House Lo Mein!"

        StarStarStarStarStar
         • Mackenzie O. • 05/16/24

        $0.00

        Pricing & fees

        Closed

        Pickup time

        Every Day

        1:00 PM - 11:59 PM

        Menu

        1:00 PM – 11:59 PM

        Search
        • Chow Fun

        • Mei Fun

        • Tofu

        • Daily Value Meal

        • Fried Rice

        • Lo Mein

        • Vegetables

        • Chop Suey

        • Pork

        • Chicken

        • Beef

        • Seafood

        • House Specials

        • Combo Platters

        • Beverage

        • Rating and reviews
          Star

          4.5

           • 

          1000+ Ratings • 

          58 Reviews

          Jim B.
          StarStarStarStarStar
           • 02/20/25

          Very good

          PHYLLIS T.
          StarStarStarStarStar
           • 02/13/25

          The food was very tasty and the prepared it fast

          Jessica S.
          StarStarStarStarStar
           • 09/26/24

          nice

          Jonathon M.
          StarStarStarStarStar
           • 09/23/24

          fyjfyxykfxfyk

          Az A.
          StarStarStarStarStar
           • 08/20/24

          always delicious and fresh

          Az A.
          StarStarStarStarStar
           • 08/19/24

          fresh & flavorful

          Chris M.
          StarStarStarStarStar
           • 07/02/24

          Good portions and very timely and hot food

          Jonathon M.
          StarStarStarStarStar
           • 07/01/24

          ethjaaaaaaa

          Joel C.
          StarStarStarStarStar
           • 06/06/24

          Ty

          David D.
          StarStarStarStarStar
           • 05/24/24

          Very good very nice

          Mackenzie O.
          StarStarStarStarStar
           • 05/16/24

          I absolutely love Peng's! Whether it's lunch time or late midnight meal! Their flavors are amazing! I'd recommend the House Lo Mein!

          Cyril S.
          StarStarStarStarStar
           • 05/11/24

          The lemon pineapple chicken was very good!

          Roberto C.
          StarStarStarStarStar
           • 05/04/24

          Good

          Miguel A.
          StarStarStarStarStar
           • 04/24/24

          House fried rice was bomb!

          Darleen L.
          StarStarStarStarStar
           • 04/19/24

          Chicken fried rice is delicious.

          BRIAN F.
          StarStarStarStarStar
           • 03/21/24

          muy buena la comida

          Jesus R.
          StarStarStarStarStar
           • 03/06/24

          great!

          JAZLYN L.
          StarStarStarStarStar
           • 02/22/24

          Amazing!!!

          Ang A.
          StarStarStarStarStar
           • 02/20/24

          traditional.

          David K.
          StarStarStarStarStar
           • 02/17/24

          Top quality food

          CARINA G.
          StarStarStarStarStar
           • 02/12/24

          Bien rápido

          Dana G.
          StarStarStarStarStar
           • 01/22/24

          always good

          Jack D.
          StarStarStarStarStar
           • 01/09/24

          Great as always!

          Linda J.
          StarStarStarStarStar
           • 12/22/23

          Reminds me of the dimsum restaurants in NYC. Fresh, tasty and filling!

          Shanna S.
          StarStarStarStarStar
           • 11/28/23

          AMAZING

          Steve B.
          StarStarStarStarStar
           • 11/27/23

          Nice and spicy

          India B.
          StarStarStarStarStar
           • 11/24/23

          I got the general tso chicken. So good

          William N.
          StarStarStarStarStar
           • 11/22/23

          Food was cooked well and had great taste

          Derek S.
          StarStarStarStarStar
           • 11/21/23

          Good value

          Angel C.
          StarStarStarStarStar
           • 11/09/23

          Very well made and authentic

          Joshua C.
          StarStarStarStarStar
           • 10/22/23

          yum yum I eat yum yum

          Nicole S.
          StarStarStarStarStar
           • 10/14/23

          THE RICE !!! it’s flavorful && so tasty !!

          Carlos C.
          StarStarStarStarStar
           • 09/30/23

          delicios and filling

          Jack D.
          StarStarStarStarStar
           • 09/21/23

          Delicious food

          Gabrielle R.
          StarStarStarStarStar
           • 08/26/23

          Their food is always fresh and delicious

          Alexander B.
          StarStarStarStarStar
           • 08/25/23

          Prepared properly with condiments and utensils plus it taste good and prepared quick.

          Alexander B.
          StarStarStarStarStar
           • 08/25/23

          Food taste good and proper packaging.

          Brittany A.
          StarStarStarStarStar
           • 08/10/23

          Sooo flavorful great portion size!

          Antonio R.
          StarStarStarStarStar
           • 08/07/23

          Good food

          Juanita D.
          StarStarStarStarStar
           • 08/04/23

          So good!!

          Carlos R.
          StarStarStarStarStar
           • 08/04/23

          general tso on point every time and fried wonton aswell

          Tierra M.
          StarStarStarStarStar
           • 08/01/23

          finally found a Chinese place with impeccable tasting food

          Claudia B.
          StarStarStarStarStar
           • 07/16/23

          Amazing food and service

          Michael B.
          StarStarStarStarStar
           • 07/15/23

          Amazing food

          GABRIEL A.
          StarStarStarStarStar
           • 07/10/23

          great food great service

          Carlos C.
          StarStarStarStarStar
           • 07/05/23

          fast friendly service

          Juanita D.
          StarStarStarStarStar
           • 07/04/23

          Food is always delicious

          David W.
          StarStarStarStarStar
           • 06/30/23

          Good

          Joseph M.
          StarStarStarStarStar
           • 06/30/23

          Delicious

          Keith A.
          StarStarStarStarStar
           • 06/09/23

          Very delicious.

          Colleen D.
          StarStarStarStarStar
           • 06/05/23

          Our favorite place was not open. Peng’s was so delicious!! Great honey sesame chicken, really good beef Lo mein. I got a spring roll and the chicken bao and they both were warm and crispy, I was honestly so happy with our meal!

          Sydney J.
          StarStarStarStarStar
           • 05/15/23

          So yum

          Kendyl V.
          StarStarStarStarStar
           • 05/02/23

          Sesame chicken was great, better than so many other places around here

          Adrian G.
          StarStarStarStarStar
           • 04/29/23

          Best asian food around

          Molly O.
          StarStarStarStarStar
           • 04/21/23

          lo mein is amazing!!

          Adrian G.
          StarStarStarStarStar
           • 04/15/23

          Best Asian food around

          Keith A.
          StarStarStarStarStar
           • 03/17/23

          The food was delicious.

          Carlos C.
          StarStarStarStarStar
           • 02/26/23

          Excellent!

        • Frequently asked questions

          • Yes. Orlando China Ocean delivery is available on Uber Eats in Orlando.

          • Enter your address to see if Orlando China Ocean delivery is available to your location in Orlando.

          • There are 2 ways to place an order on Uber Eats: on the app or online using the Uber Eats website. After you’ve looked over the Orlando China Ocean menu, simply choose the items you’d like to order and add them to your cart. Next, you’ll be able to review, place, and track your order.

          • View upfront pricing information for the various items offered by Orlando China Ocean here on this page.

          • To save money on the delivery, consider getting an Uber One membership, if available in your area, as one of its perks is a $0 Delivery Fee on select orders.

          • Payment is handled via your Uber Eats account.

          • If you’re in need of some suggestions for your Orlando China Ocean order, check out the items showcased in “Picked for you” on this page.

        + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/web/ubereats/html_postman2utf8.html b/web/ubereats/html_postman2utf8.html new file mode 100644 index 0000000..c4af269 --- /dev/null +++ b/web/ubereats/html_postman2utf8.html @@ -0,0 +1,710 @@ +Order Orlando China Ocean - Menu & Prices - Orlando Delivery | Uber Eats + + + + + +
        Skip to content
        Orlando China Ocean

        Orlando China Ocean

        4.5 x (1,000+) • Asian • Chinese • Cantonese • Info

        x Available at 1:00 PM

        2508 South Semoran Boulevard, Orlando, FL 32822

        Peng’s Asian Cuisine is a Chinese restaurant located in Orlando, known for its late-night popularity. The menu features a variety of traditional Chinese dishes, including favorites like Honey Spicy Chicken, Gen... More
        Peng’s Asian Cuisine is a Chinese restaurant located in Orlando, known for its late-night popularity. The menu features a variety of traditional Chinese dishes, including favorites like Honey Spicy Chicken, General Tsos Chicken, Sweet and Sour Chicken, and Honey Sesame Chicken. For those who enjoy noodle dishes, options such as Roast Pork Lo Mein and Chicken Stir Fry Rice Noodles are available. The restaurant is highly rated, holding a customer rating of approximately 4.3, reflecting its commitment to quality and taste in every dish served. Less

        $0.00

        Pricing & fees

        Closed

        Pickup time

        Every Day

        1:00 PM - 11:59 PM

        Menu

        1:00 PM – 11:59 PM

        Search
        • Rating and reviews
          Star

          4.5

           • 

          1000+ Ratings • 

          58 Reviews

          Jim B.
          StarStarStarStarStar
           • 02/20/25

          Very good

          PHYLLIS T.
          StarStarStarStarStar
           • 02/13/25

          The food was very tasty and the prepared it fast

          Jessica S.
          StarStarStarStarStar
           • 09/26/24

          nice

          Jonathon M.
          StarStarStarStarStar
           • 09/23/24

          fyjfyxykfxfyk

          Az A.
          StarStarStarStarStar
           • 08/20/24

          always delicious and fresh

          Az A.
          StarStarStarStarStar
           • 08/19/24

          fresh & flavorful

          Chris M.
          StarStarStarStarStar
           • 07/02/24

          Good portions and very timely and hot food

          Jonathon M.
          StarStarStarStarStar
           • 07/01/24

          ethjaaaaaaa

          Joel C.
          StarStarStarStarStar
           • 06/06/24

          Ty

          David D.
          StarStarStarStarStar
           • 05/24/24

          Very good very nice

          Mackenzie O.
          StarStarStarStarStar
           • 05/16/24

          I absolutely love Peng's! Whether it's lunch time or late midnight meal! Their flavors are amazing! I'd recommend the House Lo Mein!

          Cyril S.
          StarStarStarStarStar
           • 05/11/24

          The lemon pineapple chicken was very good!

          Roberto C.
          StarStarStarStarStar
           • 05/04/24

          Good

          Miguel A.
          StarStarStarStarStar
           • 04/24/24

          House fried rice was bomb!

          Darleen L.
          StarStarStarStarStar
           • 04/19/24

          Chicken fried rice is delicious.

          BRIAN F.
          StarStarStarStarStar
           • 03/21/24

          muy buena la comida

          Jesus R.
          StarStarStarStarStar
           • 03/06/24

          great!

          JAZLYN L.
          StarStarStarStarStar
           • 02/22/24

          Amazing!!!

          Ang A.
          StarStarStarStarStar
           • 02/20/24

          traditional.

          David K.
          StarStarStarStarStar
           • 02/17/24

          Top quality food

          CARINA G.
          StarStarStarStarStar
           • 02/12/24

          Bien rápido

          Dana G.
          StarStarStarStarStar
           • 01/22/24

          always good

          Jack D.
          StarStarStarStarStar
           • 01/09/24

          Great as always!

          Linda J.
          StarStarStarStarStar
           • 12/22/23

          Reminds me of the dimsum restaurants in NYC. Fresh, tasty and filling!

          Shanna S.
          StarStarStarStarStar
           • 11/28/23

          AMAZING

          Steve B.
          StarStarStarStarStar
           • 11/27/23

          Nice and spicy

          India B.
          StarStarStarStarStar
           • 11/24/23

          I got the general tso chicken. So good

          William N.
          StarStarStarStarStar
           • 11/22/23

          Food was cooked well and had great taste

          Derek S.
          StarStarStarStarStar
           • 11/21/23

          Good value

          Angel C.
          StarStarStarStarStar
           • 11/09/23

          Very well made and authentic

          Joshua C.
          StarStarStarStarStar
           • 10/22/23

          yum yum I eat yum yum

          Nicole S.
          StarStarStarStarStar
           • 10/14/23

          THE RICE !!! it’s flavorful && so tasty !!

          Carlos C.
          StarStarStarStarStar
           • 09/30/23

          delicios and filling

          Jack D.
          StarStarStarStarStar
           • 09/21/23

          Delicious food

          Gabrielle R.
          StarStarStarStarStar
           • 08/26/23

          Their food is always fresh and delicious

          Alexander B.
          StarStarStarStarStar
           • 08/25/23

          Food taste good and proper packaging.

          Alexander B.
          StarStarStarStarStar
           • 08/25/23

          Prepared properly with condiments and utensils plus it taste good and prepared quick.

          Brittany A.
          StarStarStarStarStar
           • 08/10/23

          Sooo flavorful great portion size!

          Antonio R.
          StarStarStarStarStar
           • 08/07/23

          Good food

          Juanita D.
          StarStarStarStarStar
           • 08/04/23

          So good!!

          Carlos R.
          StarStarStarStarStar
           • 08/04/23

          general tso on point every time and fried wonton aswell

          Tierra M.
          StarStarStarStarStar
           • 08/01/23

          finally found a Chinese place with impeccable tasting food

          Claudia B.
          StarStarStarStarStar
           • 07/16/23

          Amazing food and service

          Michael B.
          StarStarStarStarStar
           • 07/15/23

          Amazing food

          GABRIEL A.
          StarStarStarStarStar
           • 07/10/23

          great food great service

          Carlos C.
          StarStarStarStarStar
           • 07/05/23

          fast friendly service

          Juanita D.
          StarStarStarStarStar
           • 07/04/23

          Food is always delicious

          David W.
          StarStarStarStarStar
           • 06/30/23

          Good

          Joseph M.
          StarStarStarStarStar
           • 06/30/23

          Delicious

          Keith A.
          StarStarStarStarStar
           • 06/09/23

          Very delicious.

          Colleen D.
          StarStarStarStarStar
           • 06/05/23

          Our favorite place was not open. Peng’s was so delicious!! Great honey sesame chicken, really good beef Lo mein. I got a spring roll and the chicken bao and they both were warm and crispy, I was honestly so happy with our meal!

          Sydney J.
          StarStarStarStarStar
           • 05/15/23

          So yum

          Kendyl V.
          StarStarStarStarStar
           • 05/02/23

          Sesame chicken was great, better than so many other places around here

          Adrian G.
          StarStarStarStarStar
           • 04/29/23

          Best asian food around

          Molly O.
          StarStarStarStarStar
           • 04/21/23

          lo mein is amazing!!

          Adrian G.
          StarStarStarStarStar
           • 04/15/23

          Best Asian food around

          Keith A.
          StarStarStarStarStar
           • 03/17/23

          The food was delicious.

          Carlos C.
          StarStarStarStarStar
           • 02/26/23

          Excellent!

        • Frequently asked questions

          • Yes. Orlando China Ocean delivery is available on Uber Eats in Orlando.

          • Enter your address to see if Orlando China Ocean delivery is available to your location in Orlando.

          • There are 2 ways to place an order on Uber Eats: on the app or online using the Uber Eats website. After you’ve looked over the Orlando China Ocean menu, simply choose the items you’d like to order and add them to your cart. Next, you’ll be able to review, place, and track your order.

          • View upfront pricing information for the various items offered by Orlando China Ocean here on this page.

          • To save money on the delivery, consider getting an Uber One membership, if available in your area, as one of its perks is a $0 Delivery Fee on select orders.

          • Payment is handled via your Uber Eats account.

          • If you’re in need of some suggestions for your Orlando China Ocean order, check out the items showcased in “Picked for you” on this page.

        + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/web/ubereats/main.py b/web/ubereats/main.py new file mode 100644 index 0000000..21f61e6 --- /dev/null +++ b/web/ubereats/main.py @@ -0,0 +1,451 @@ +import re +import time +from urllib.parse import unquote +import requests +import json +from lxml import etree +from openpyxl import load_workbook +from openpyxl.styles import Font, PatternFill, Alignment, Border, Side + + +class ubereats: + def __init__(self): + self.html = "" + self.wb = load_workbook('Menu to 11.05PM.xlsx') + self.get_Html() + self.modify_first_row = self.modify_first_row() + + def clear_sheet(self, sheet): + ws = self.wb[sheet] + for row in ws.iter_rows(min_row=2): # 首行不清空 + for cell in row: + if cell.value is not None: + cell.value = None + self.wb.save('Menu.xlsx') + + def clear_except_first_row(self, sheet): + ws = self.wb[sheet] + + # **解除所有合并单元格** + merged_ranges = list(ws.merged_cells.ranges) + for merged_range in merged_ranges: + ws.unmerge_cells(str(merged_range)) + + # **获取最大行和最大列** + max_row = ws.max_row + max_col = ws.max_column + + # **清除第二行及之后的所有数据和格式** + if max_row > 1: + for row in range(2, max_row + 1): # 从第二行开始清除 + for col in range(1, max_col + 1): + cell = ws.cell(row=row, column=col) + cell.value = None # 清除数据 + cell.fill = PatternFill(fill_type=None) # 清除背景色 + cell.font = Font() # 重置字体 + cell.alignment = Alignment() # 重置对齐方式 + cell.border = Border() # 清除边框 + + # **删除第二行及之后的所有行** + ws.delete_rows(2, max_row - 1 if max_row > 2 else 1) + + # **清除行级别格式** + for row in range(2, max_row + 1): + if row in ws.row_dimensions: + ws.row_dimensions[row].fill = PatternFill(fill_type=None) # 清除行级背景色 + ws.row_dimensions[row].font = Font() # 清除行级字体 + ws.row_dimensions[row].alignment = Alignment() # 清除行级对齐方式 + + # **保存 Excel** + self.wb.save('Menu.xlsx') + + def get_Html(self): + url = "https://www.ubereats.com/store/orlando-china-ocean/xFyut_WfRn6gd83QgBGLoA?diningMode=PICKUP&mod=storeDeliveryTime&modctx=%257B%2522entryPoint%2522%253A%2522store-auto-surface%2522%252C%2522encodedStoreUuid%2522%253A%2522xFyut_WfRn6gd83QgBGLoA%2522%257D&pl=JTdCJTIyYWRkcmVzcyUyMiUzQSUyMkhlbGx1JTIwQ29mZmVlJTIyJTJDJTIycmVmZXJlbmNlJTIyJTNBJTIyQ2hJSjdjWHV4cFlaMmpFUlBtd2dfeGR4TXNFJTIyJTJDJTIycmVmZXJlbmNlVHlwZSUyMiUzQSUyMmdvb2dsZV9wbGFjZXMlMjIlMkMlMjJsYXRpdHVkZSUyMiUzQTEuMjgzMzU3MyUyQyUyMmxvbmdpdHVkZSUyMiUzQTEwMy44NDg0NzMzJTdE&ps=1&sc=SEARCH_SUGGESTION" + + payload = {} + headers = { + 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:136.0) Gecko/20100101 Firefox/136.0', + 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', + 'Accept-Language': 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2', + 'Accept-Encoding': 'gzip, deflate, br, zstd', + 'Alt-Used': 'www.ubereats.com', + 'Connection': 'keep-alive', + 'Cookie': 'uev2.id.xp=13f67607-d8f3-4ef4-ac9c-fae732d3a38c; dId=99b6b840-9ad5-4458-af7e-b832fa6602cb; uev2.id.session=a6af5007-9946-4ab1-a1bc-4d2b69736607; uev2.ts.session=1741796659278; uev2.diningMode=PICKUP; uev2.loc=%7B%22address%22%3A%7B%22address1%22%3A%22Hellu%20Coffee%22%2C%22address2%22%3A%22137%20Amoy%20St%2C%20%2301-05%20Far%20East%20Square%22%2C%22aptOrSuite%22%3A%22%22%2C%22eaterFormattedAddress%22%3A%22137%20Amoy%20St%2C%20%2301-05%20Far%20East%20Square%2C%20Singapore%20049965%22%2C%22subtitle%22%3A%22137%20Amoy%20St%2C%20%2301-05%20Far%20East%20Square%22%2C%22title%22%3A%22Hellu%20Coffee%22%2C%22uuid%22%3A%22%22%7D%2C%22latitude%22%3A1.2833573%2C%22longitude%22%3A103.8484733%2C%22reference%22%3A%22ChIJ7cXuxpYZ2jERPmwg_xdxMsE%22%2C%22referenceType%22%3A%22google_places%22%2C%22type%22%3A%22google_places%22%2C%22addressComponents%22%3A%7B%22city%22%3A%22%22%2C%22countryCode%22%3A%22SG%22%2C%22firstLevelSubdivisionCode%22%3A%22%22%2C%22postalCode%22%3A%22%22%7D%2C%22categories%22%3A%5B%22CAFE%22%2C%22FOOD_AND_BEVERAGE%22%2C%22RESTAURANT%22%2C%22SHOPS_AND_SERVICES%22%2C%22place%22%5D%2C%22originType%22%3A%22user_autocomplete%22%2C%22source%22%3A%22rev_geo_reference%22%2C%22userState%22%3A%22Unknown%22%7D; _ua={"session_id":"bdbf8384-0ffe-4501-90f8-6daa0eea2379","session_time_ms":1741796659351}; marketing_vistor_id=e17c0968-ef3d-4331-8211-c79c2ac7357e; jwt-session=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJkYXRhIjp7InNsYXRlLWV4cGlyZXMtYXQiOjE3NDE3OTg0NTkzNTB9LCJpYXQiOjE3NDE3OTY2NjAsImV4cCI6MTc0MTg4MzA2MH0.v-uUZO3RxqF6M29LFRNxNE_LpRMLWx7ApE7b7kPlQMQ; marketing_vistor_id=e17c0968-ef3d-4331-8211-c79c2ac7357e; uev2.diningMode=PICKUP; uev2.id.session=a6af5007-9946-4ab1-a1bc-4d2b69736607; uev2.ts.session=1741796659278', + 'Upgrade-Insecure-Requests': '1', + 'Sec-Fetch-Dest': 'document', + 'Sec-Fetch-Mode': 'navigate', + 'Sec-Fetch-Site': 'none', + 'Sec-Fetch-User': '?1', + 'Priority': 'u=0, i' + } + + response = requests.request("GET", url, headers=headers, data=payload) + + self.html = response.text.encode('utf-8').decode('unicode_escape') + with open('html_postman2utf8.html', 'w', encoding="utf-8") as f: + f.write(self.html) + # with open('html_11.html', 'r', encoding='utf-8') as f: + # self.html = f.read() + + def get_Menu(self): + xpath_info = etree.HTML(self.html) + menu_list = xpath_info.xpath("//button[starts-with(@id, 'tabs-desktop-ofd-menu-tab-')]/span/text()") + menu_time = xpath_info.xpath("//p[@data-baseweb='typo-paragraphxsmall']/text()") + menu_time = menu_time[1].encode('latin-1').decode('utf-8') if menu_list else "" + menu_time = re.sub(r'\s+', '', menu_time) # Menu Description + self.clear_sheet("Menu") + ws = self.wb["Menu"] + ws["A2"] = "Third Party Menu" + self.clear_sheet("Categories") + ws = self.wb["Categories"] + for idx, item in enumerate(menu_list, start=2): + ws.cell(row=idx, column=1, value="Third Party Menu") + ws.cell(row=idx, column=2, value=item) + ws.cell(row=idx, column=3, value="") # 翻译 + ws.cell(row=idx, column=4, value=menu_time) + ws.cell(row=idx, column=5, value="") + + self.wb.save('Menu.xlsx') + + def modify_first_row(self): + ws = self.wb["Modifier"] + source_row = 1 + row_data = {} + + # 提取第一行数据和格式 + for col in range(1, ws.max_column + 1): + source_cell = ws.cell(row=source_row, column=col) + + row_data[col] = { + "value": source_cell.value, # 数据 + "font": Font( + name=source_cell.font.name, + size=source_cell.font.size, + bold=source_cell.font.bold, + italic=source_cell.font.italic, + underline=source_cell.font.underline, + color=source_cell.font.color.rgb if source_cell.font.color else None + ), + "alignment": Alignment( + horizontal=source_cell.alignment.horizontal, + vertical=source_cell.alignment.vertical, + wrap_text=source_cell.alignment.wrap_text + ), + "fill": PatternFill( + fill_type=source_cell.fill.patternType, + fgColor=source_cell.fill.fgColor.rgb if source_cell.fill.fgColor else None, + bgColor=source_cell.fill.bgColor.rgb if source_cell.fill.bgColor else None + ) if source_cell.fill and source_cell.fill.patternType else None, + "border": Border( + left=Side(style=source_cell.border.left.style, color=source_cell.border.left.color), + right=Side(style=source_cell.border.right.style, color=source_cell.border.right.color), + top=Side(style=source_cell.border.top.style, color=source_cell.border.top.color), + bottom=Side(style=source_cell.border.bottom.style, color=source_cell.border.bottom.color), + ) if source_cell.border else None + } + row_data["row_height"] = ws.row_dimensions[source_row].height + return row_data + + def get_item(self): + html_info = re.findall(r'', self.html, re.S) + js2json = unquote(html_info[5]) + json_data = json.loads(js2json) + # with open('data.json', 'w', encoding='utf-8') as f: + # f.write(json.dumps(json_data, indent=4)) + # exit() + self.clear_except_first_row("Item") + self.clear_except_first_row("Modifier") + ws = self.wb["Item"] + data = [] + # with open('data.json', 'r', encoding='utf-8') as f: + # json_data = json.load(f) + queries = json_data['queries'][0]['state']['data'] + storeUuid = queries['uuid'] + sectionUuid = list(queries["catalogSectionsMap"].keys())[0] + index = 2 + for catalog in queries["catalogSectionsMap"][sectionUuid]: + playload = catalog['payload'] + standardItemsPayload = playload['standardItemsPayload'] + _type = standardItemsPayload['title']['text'] + for citem in standardItemsPayload['catalogItems']: + menuItemUuid = citem['uuid'] + title = citem['title'] + price = citem['price'] / 100 + itemDescription = citem['itemDescription'] + if "/ ." in itemDescription: + itemDescription = itemDescription.replace("/ .", "") + if "é" in itemDescription: + itemDescription = itemDescription.replace("é", "é") + hasCustomizations = citem['hasCustomizations'] + subsectionUuid = citem['subsectionUuid'] + if hasCustomizations: + modifier = self.get_itemV1(storeUuid, sectionUuid, subsectionUuid, menuItemUuid) + if modifier['ism'] != 1: + for addons in modifier['addons']: + existing_addon = next((item for item in data if item["name"] == addons["name"]), None) + + if existing_addon: + existing_items = {item["name"] for item in existing_addon["list"]} + new_items = [item for item in addons["list"] if item["name"] not in existing_items] + existing_addon["list"].extend(new_items) + else: + data.append(addons) + + ws.cell(row=index, column=1, value="Online Lunch Menu") + ws.cell(row=index, column=2, value=_type) + ws.cell(row=index, column=3, value=title) + ws.cell(row=index, column=4, value="") + ws.cell(row=index, column=5, value=price) + ws.cell(row=index, column=7, value=itemDescription) + ws.cell(row=index, column=8, value="Sales Tax") + if not hasCustomizations: + ws.cell(row=index, column=6, value="") + else: + if modifier['ism'] == 3 or modifier['ism'] == 1: + value = ";".join( + [f"{format(price if i['price'] == 0.0 else i['price'] + price, '.2f')}/{i['name']}" for + i in + modifier['sizes']]) + ws.cell(row=index, column=5, value=value) + if modifier['ism'] == 3: + v2 = "\n".join([i for i in modifier['nameList']]) + ws.cell(row=index, column=6, value=v2) + if modifier['ism'] == 2: + v2 = "\n".join([i['name'] for i in modifier['addons']]) + ws.cell(row=index, column=6, value=v2) + index += 1 + self.wb.save('Menu.xlsx') + + with open('Adata.json', 'w', encoding='utf-8') as f: + json.dump(data, f, ensure_ascii=False, indent=4) + + def write_xlsx(self): + ws = self.wb["Modifier"] + self.clear_except_first_row("Modifier") # 清除数据,但保留第一行 + + with open('Adata.json', 'r', encoding='utf-8') as f: + data = json.load(f) + + index = 2 # **确保从第 2 行开始填充数据** + + for i in data: + # **确保从 index > 2 才复制格式** + if index > 2: + ws.row_dimensions[index].height = self.modify_first_row["row_height"] + + for col, cell_data in self.modify_first_row.items(): + if col == "row_height": + continue + + target_cell = ws.cell(row=index, column=col) + + # **正确赋值** + target_cell.value = cell_data["value"] + + # **复制格式** + if cell_data["font"]: + target_cell.font = Font( + name=cell_data["font"].name, + size=cell_data["font"].size, + bold=cell_data["font"].bold, + italic=cell_data["font"].italic, + underline=cell_data["font"].underline, + color=cell_data["font"].color + ) + if cell_data["alignment"]: + target_cell.alignment = Alignment( + horizontal=cell_data["alignment"].horizontal, + vertical=cell_data["alignment"].vertical, + wrap_text=cell_data["alignment"].wrap_text + ) + if cell_data["fill"] and cell_data["fill"].patternType: + target_cell.fill = PatternFill( + fill_type=cell_data["fill"].patternType, + fgColor=cell_data["fill"].fgColor.rgb, + bgColor=cell_data["fill"].bgColor.rgb + ) + if cell_data["border"]: + target_cell.border = Border( + left=Side(style=cell_data["border"].left.style, color=cell_data["border"].left.color), + right=Side(style=cell_data["border"].right.style, + color=cell_data["border"].right.color), + top=Side(style=cell_data["border"].top.style, color=cell_data["border"].top.color), + bottom=Side(style=cell_data["border"].bottom.style, + color=cell_data["border"].bottom.color), + ) + index += 1 + + # **填充 JSON 数据** + ws.cell(row=index, column=1, value=i['name']) + ws.cell(row=index, column=2, value="") + ws.cell(row=index, column=7, value="Required" if i['required'] else "Not Required") + ws.cell(row=index, column=8, value="1") + ws.cell(row=index, column=9, value=i['maxPermitted']) + ws.cell(row=index, column=10, value="NO") + aindex = index + for item in i['list']: + ws.cell(row=index, column=3, value=item['name']) + ws.cell(row=index, column=6, value=item['price']) + + index += 1 + index += 1 + bindex = index + if bindex - aindex > 1: + ws.merge_cells(start_row=aindex, start_column=1, end_row=bindex - 2, end_column=1) + ws.cell(row=aindex, column=1).alignment = Alignment(horizontal="center", vertical="center") + + ws.merge_cells(start_row=aindex, start_column=2, end_row=bindex - 2, end_column=2) + ws.cell(row=aindex, column=2).alignment = Alignment(horizontal="center", vertical="center") + + ws.merge_cells(start_row=aindex, start_column=7, end_row=bindex - 2, end_column=7) + ws.cell(row=aindex, column=7).alignment = Alignment(horizontal="center", vertical="center") + ws.merge_cells(start_row=aindex, start_column=8, end_row=bindex - 2, end_column=8) + ws.cell(row=aindex, column=8).alignment = Alignment(horizontal="center", vertical="center") + ws.merge_cells(start_row=aindex, start_column=9, end_row=bindex - 2, end_column=9) + ws.cell(row=aindex, column=9).alignment = Alignment(horizontal="center", vertical="center") + ws.merge_cells(start_row=aindex, start_column=10, end_row=bindex - 2, end_column=10) + ws.cell(row=aindex, column=10).alignment = Alignment(horizontal="center", vertical="center") + + self.wb.save('Menu.xlsx') + + def get_itemV1(self, storeUuid, sectionUuid, subsectionUuid, menuItemUuid): + cookies = { + 'dId': '201f1380-db90-4fce-b53c-9e5f1a1797db', + 'uev2.diningMode': 'PICKUP', + 'marketing_vistor_id': 'b2b08d27-61c5-49a5-8960-3bf57d7dc740', + 'u-cookie-prefs': 'eyJ2ZXJzaW9uIjoxMDAsImRhdGUiOjE3NDExNzE2MjgyODAsImNvb2tpZUNhdGVnb3JpZXMiOlsiYWxsIl0sImltcGxpY2l0Ijp0cnVlfQ%3D%3D', + 'uev2.gg': 'true', + '_gcl_au': '1.1.639637700.1741171631', + '_scid': 'PKHcwyQACjnCw9d1hw_hGGK2mECWKPAw', + '_fbp': 'fb.1.1741171631251.75638408989351243', + '_ga': 'GA1.1.1953756175.1741171632', + '_ScCbts': '%5B%5D', + '_yjsu_yjad': '1741171631.b78cd8ba-9e38-46b9-b413-15deb0d5a676', + '_sctr': '1%7C1741104000000', + '_tt_enable_cookie': '1', + '_ttp': '01JNJYND745JBKHC19JF1B3ENF_.tt.1', + 'uev2.embed_theme_preference': 'dark', + 'uev2.id.xp': 'bd485f5e-f8f1-4dce-bf88-c1e92a3cd4c0', + '_ua': '{"session_id":"f08842b9-416c-4e82-bed0-25250e9abe14","session_time_ms":1741398128598}', + 'utm_medium': 'undefined', + 'utm_source': 'undefined', + '_clck': 'oo6f3j%7C2%7Cfu1%7C0%7C1890', + 'uev2.loc': '%7B%22address%22%3A%7B%22address1%22%3A%22Hellu%20Coffee%22%2C%22address2%22%3A%22137%20Amoy%20St%2C%20%2301-05%20Far%20East%20Square%22%2C%22aptOrSuite%22%3A%22%22%2C%22eaterFormattedAddress%22%3A%22137%20Amoy%20St%2C%20%2301-05%20Far%20East%20Square%2C%20Singapore%20049965%22%2C%22subtitle%22%3A%22137%20Amoy%20St%2C%20%2301-05%20Far%20East%20Square%22%2C%22title%22%3A%22Hellu%20Coffee%22%2C%22uuid%22%3A%22%22%7D%2C%22latitude%22%3A1.2833573%2C%22longitude%22%3A103.8484733%2C%22reference%22%3A%22ChIJ7cXuxpYZ2jERPmwg_xdxMsE%22%2C%22referenceType%22%3A%22google_places%22%2C%22type%22%3A%22google_places%22%2C%22addressComponents%22%3A%7B%22city%22%3A%22%22%2C%22countryCode%22%3A%22SG%22%2C%22firstLevelSubdivisionCode%22%3A%22%22%2C%22postalCode%22%3A%22%22%7D%2C%22categories%22%3A%5B%22CAFE%22%2C%22FOOD_AND_BEVERAGE%22%2C%22RESTAURANT%22%2C%22SHOPS_AND_SERVICES%22%2C%22place%22%5D%2C%22originType%22%3A%22user_autocomplete%22%2C%22source%22%3A%22manual_auto_complete%22%2C%22userState%22%3A%22Unknown%22%7D', + 'uev2.id.session': '92a4abd6-d9c4-4a11-97ee-ae4a7083eedd', + 'uev2.ts.session': '1741414539843', + 'jwt-session': 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJkYXRhIjp7InNsYXRlLWV4cGlyZXMtYXQiOjE3NDE0MTYzNDAyOTl9LCJpYXQiOjE3NDEzOTgxMjksImV4cCI6MTc0MTQ4NDUyOX0.hpvIQEo4HoKsyOfRlVGrxuXN1dO_R_9k_tHCbMe_q3s', + 'utag_main__sn': '5', + 'utag_main_ses_id': '1741414545690%3Bexp-session', + 'utag_main__pn': '1%3Bexp-session', + '_scid_r': 'SCHcwyQACjnCw9d1hw_hGGK2mECWKPAwQvf-Wg', + 'utag_main__se': '2%3Bexp-session', + 'utag_main__ss': '0%3Bexp-session', + 'utag_main__st': '1741416357381%3Bexp-session', + '_userUuid': '', + '_ga_P1RM71MPFP': 'GS1.1.1741414542.6.1.1741414563.39.0.0', + '_uetsid': '8fabeee0fbbe11ef9b636786bd2c1b62', + '_uetvid': '32f691f0f9af11efad4d6dc246fea42a', + } + headers = { + 'accept': '*/*', + 'accept-language': 'zh-CN,zh;q=0.9', + 'cache-control': 'no-cache', + 'content-type': 'application/json', + 'origin': 'https://www.ubereats.com', + 'pragma': 'no-cache', + 'priority': 'u=1, i', + # 'referer': 'https://www.ubereats.com/store/orlando-china-ocean/xFyut_WfRn6gd83QgBGLoA?diningMode=PICKUP&mod=quickView&modctx=%257B%2522storeUuid%2522%253A%2522c45caeb7-f59f-467e-a077-cdd080118ba0%2522%252C%2522sectionUuid%2522%253A%2522aa0f2b6d-8a05-575d-824a-814fa08b06d9%2522%252C%2522subsectionUuid%2522%253A%25228a6f7010-f06b-5f85-b417-38d9e96676f7%2522%252C%2522itemUuid%2522%253A%2522bad6eebb-46ff-571e-8d30-d42c40cdb62b%2522%252C%2522showSeeDetailsCTA%2522%253Atrue%257D&ps=1&sc=SEARCH_SUGGESTION', + 'sec-ch-prefers-color-scheme': 'dark', + 'sec-ch-ua': '"Chromium";v="134", "Not:A-Brand";v="24", "Google Chrome";v="134"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-platform': '"Windows"', + 'sec-fetch-dest': 'empty', + 'sec-fetch-mode': 'cors', + 'sec-fetch-site': 'same-origin', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', + 'x-csrf-token': 'x', + 'x-uber-client-gitref': 'a7f1b446e212f9e1ae1ee1c6541dbf565c7c6293' + } + + json_data = { + 'itemRequestType': 'ITEM', + 'storeUuid': storeUuid, + 'sectionUuid': sectionUuid, + 'subsectionUuid': subsectionUuid, + 'menuItemUuid': menuItemUuid, + 'cbType': 'EATER_ENDORSED', + 'contextReferences': [ + { + 'type': 'GROUP_ITEMS', + 'payload': { + 'type': 'groupItemsContextReferencePayload', + 'groupItemsContextReferencePayload': {}, + }, + 'pageContext': 'UNKNOWN', + }, + ], + } + proxies = { + 'http': 'http://127.0.0.1:7890', + 'https': 'http://127.0.0.1:7890' + } + response = requests.post('https://www.ubereats.com/_p/api/getMenuItemV1', cookies=cookies, headers=headers, + json=json_data, proxies=None).json() + + size_identifiers = ["(S)", "(L)", "(小)", "(大)", "(Half Gallon)", "(One Gallon)", "1.4pcs", "8pcs", "4pcs"] + data = {"ism": 0, "sizes": [], "addons": [], "nameList": []} # **新增 nameList** + has_size_option = False + has_addon_option = False + + customizationsList = response['data']['customizationsList'] + + for customizations in customizationsList: + title = customizations['title'] + customization_entry = {"name": title, "list": []} + for item in customizations['options']: + option_title = item['title'] + price = item['price'] / 100 + is_required = customizations['minPermitted'] > 0 + customization_entry["required"] = is_required + customization_entry["maxPermitted"] = customizations['maxPermitted'] + if any(option_title.startswith(size) for size in size_identifiers): + data['sizes'].append({"name": option_title, "price": price}) + has_size_option = True + else: + customization_entry["list"].append({"name": option_title, "price": price}) + has_addon_option = True + + # **解析子配菜** + if "childCustomizationList" in item and len(item['childCustomizationList']) > 0: + for child_customization in item["childCustomizationList"]: + for child_option in child_customization["options"]: + child_option_title = child_option["title"] + child_price = child_option["price"] / 100 + customization_entry["list"].append({"name": child_option_title, "price": child_price}) + has_addon_option = True # **子配菜也是配菜* + if customization_entry["list"]: + data["addons"].append(customization_entry) + + # **在 ism=3 时,生成 `nameList`** + if has_size_option and has_addon_option: + data['ism'] = 3 # **大小份 + 配菜** + data['ism'] = 3 # **大小份 + 配菜** + rename = data["addons"][0]["name"] + data['nameList'] = [f"{size['name']}: {rename}" for size in data["sizes"]] + elif has_size_option: + data['ism'] = 1 # **只有大小份** + elif has_addon_option: + data['ism'] = 2 # **只有配菜** + + print(data) # **检查数据是否正确** + return data + +if __name__ == '__main__': + ubereats = ubereats() + ubereats.get_Menu() + ubereats.get_item() + ubereats.get_item() + ubereats.write_xlsx() + # ubereats.get_itemV1("","","","") + # ubereats.get_itemV1("0212c830-1845-41d2-aa06-6c78bfb97315", "516658e0-667f-5063-a3e9-d9d3e13a2e53", "017a5d2c-88c7-5f1e-8c5e-d8bf76ac5d12", "28eaf6a2-f83b-5d67-b20a-1cd59b4ed42c") + # ubereats.write_xlsx() diff --git a/web/yutian_top/Download_.py b/web/yutian_top/Download_.py new file mode 100644 index 0000000..585350e --- /dev/null +++ b/web/yutian_top/Download_.py @@ -0,0 +1,116 @@ +import logging + +from Requests_Except import MR +from web.yutian_top.main import default_cookies, Requests + +base_url = 'www.yutian.top' +protocol = 'https' +default_headers = { + 'accept': 'application/json, text/plain, */*', + 'accept-language': 'zh-CN,zh;q=0.9', + 'cache-control': 'no-cache', + 'content-type': 'application/json;charset=UTF-8', + 'origin': 'https://www.yutian.top', + 'pragma': 'no-cache', + 'priority': 'u=1, i', + 'referer': 'https://www.yutian.top/enterprise/resume_store/list', + 'sec-ch-ua': '"Chromium";v="134", "Not:A-Brand";v="24", "Google Chrome";v="134"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-platform': '"Windows"', + 'sec-fetch-dest': 'empty', + 'sec-fetch-mode': 'cors', + 'sec-fetch-site': 'same-origin', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', +} +default_cookies = { + 'PHPSESSID': 'cac0b0c651b27ad30642869a4304c098', + 'auth-token': 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3NDU4NDg3MTUsImp0aSI6IjcwNjc4MWQ3LTJjMWYtNGZiZS04ZDM4LWRhMDRmYjdiMjljOSIsIm5hbWUiOiIxODYxNzg3MjE4NSIsInVzZXJfaWQiOiIwM2M2MmI5ODM4Yjk3Y2UzYmQxZTQwNDllZGVlNmI0OCIsInRlbmFudF90b2tlbiI6IjY1OTAxM2RlNjAxZmJmNjg1MzZmYTU0OTc4ODVkMTA2In0.1FH4SBYQu0CYhEzCzMlYBYZ2YsSM9kgkXWmgXcZ88Bs', + 'company_sign': '', + 'company_nonce': '', + 'cuid': '', +} + +Requests = MR(base_url, protocol) +Requests.set_default_headers(default_headers) +Requests.set_default_cookies(default_cookies) + +psdata = { + "resume_id": [], + "姓名": [], # user_name + "电话": [], # phone_encrypt +} + +Down = [20891, 19784, 19715, 19280, 18130, 17890, 1770, 17078, 15460, 15424, 14868, 13687, 13517, 11724, 9513, 9454, + 8161, 3372, 3065, 993, 988] + + +def buyResumeUserPhone(resume_id): + json_data = { + 'resume_id': resume_id, + 'from_type': '', + } + res = Requests.post('/job/company/v1/company/buyResumeUserPhone', json=json_data) + return res.to_Dict() + + +def getResumeDownloadLink(resume_id): + json_data = { + 'resume_id': resume_id, + 'delivery_id': '', + } + res = Requests.post('/job/company/v1/company/getResumeDownloadLink', json=json_data) + return res.to_Dict() + + +def getResumeUserPhone(resume_id): + json_data = { + 'resume_id': resume_id, + 'delivery_id': '', + 'is_pc': 1, + } + url = '/job/company/v1/company/getResumeUserPhone' + resp = Requests.post(url, json=json_data) + return resp.to_Dict() + + +def get_resume_info(resume_id): + json_data = { + 'resume_id': resume_id, + } + url = '/job/company/v1/resume/loadResume' + resp = Requests.post(url, json=json_data) + return resp.to_Dict() + + +def integrate(): + for r_id in Down: + user_info = get_resume_info(r_id) + u_name = user_info.user_name + r_info = getResumeUserPhone(r_id) + try: + phone = r_info.phone + except Exception as e: + phone = None + + # print(f"姓名: {u_name}, 电话: {phone}") + if phone is None : + res = buyResumeUserPhone(r_id) + print(res, r_id) + if res.buy_success: + print("购买成功!") + r_info = getResumeUserPhone(r_id) + phone = r_info.phone + psdata['resume_id'].append(r_id) + psdata['姓名'].append(u_name) + psdata['电话'].append(phone) + +def write_to_excel(): + import pandas as pd + df = pd.DataFrame(psdata) + df.to_excel('resume_data.xlsx', index=True) + print("数据已写入 resume_data.csv") + + +if __name__ == '__main__': + integrate() + write_to_excel() diff --git a/web/yutian_top/MRequest.py b/web/yutian_top/MRequest.py new file mode 100644 index 0000000..235ac34 --- /dev/null +++ b/web/yutian_top/MRequest.py @@ -0,0 +1,111 @@ +import requests +import logging +import time +from lxml import etree +from types import SimpleNamespace + +logging.basicConfig(level=logging.DEBUG, format='%(asctime)s - %(levelname)s - %(message)s') + +class ExtendedResponse(requests.Response): + def xpath(self, xpath_expr): + try: + tree = etree.HTML(self.text) + return tree.xpath(xpath_expr) + except Exception as e: + raise ValueError("XPath解析错误: " + str(e)) + + def to_Dict(self): + try: + data = self.json() + return self.dict_to_obj(data) + except Exception as e: + raise ValueError("JSON转换错误: " + str(e)) + + @staticmethod + def dict_to_obj(d): + if isinstance(d, dict): + return SimpleNamespace(**{k: ExtendedResponse.dict_to_obj(v) for k, v in d.items()}) + elif isinstance(d, list): + return [ExtendedResponse.dict_to_obj(item) for item in d] + else: + return d + +class MyRequests: + def __init__(self, base_url, protocol='http', retries=3, proxy_options=True, default_timeout=10, default_cookies=None): + self.base_url = base_url.rstrip('/') + self.protocol = protocol + self.retries = retries + self.default_timeout = default_timeout + self.session = requests.Session() + if proxy_options: + self.session.proxies = {"http": "http://127.0.0.1:7890", "https": "http://127.0.0.1:7890"} + if default_cookies: + self.session.cookies.update(default_cookies) + + def _build_url(self, url): + if url.startswith("http://") or url.startswith("https://"): + return url + return f"{self.protocol}://{self.base_url}/{url.lstrip('/')}" + + def set_default_headers(self, headers): + self.session.headers.update(headers) + + def set_default_cookies(self, cookies): + self.session.cookies.update(cookies) + + def get(self, url, params=None, headers=None, cookies=None, **kwargs): + full_url = self._build_url(url) + return self._request("GET", full_url, params=params, headers=headers, cookies=cookies, **kwargs) + + def post(self, url, data=None, json=None, headers=None, cookies=None, **kwargs): + full_url = self._build_url(url) + return self._request("POST", full_url, data=data, json=json, headers=headers, cookies=cookies, **kwargs) + + def update(self, url, data=None, json=None, headers=None, cookies=None, **kwargs): + full_url = self._build_url(url) + return self._request("PUT", full_url, data=data, json=json, headers=headers, cookies=cookies, **kwargs) + + def delete(self, url, params=None, headers=None, cookies=None, **kwargs): + full_url = self._build_url(url) + return self._request("DELETE", full_url, params=params, headers=headers, cookies=cookies, **kwargs) + + def _request(self, method, url, retries=None, **kwargs): + if retries is None: + retries = self.retries + if 'timeout' not in kwargs: + kwargs['timeout'] = self.default_timeout + if 'headers' in kwargs and kwargs['headers']: + headers = kwargs['headers'] + if 'referer' in headers: + headers['referer'] = self._build_url(headers['referer']) + try: + response = self.session.request(method, url, **kwargs) + response.raise_for_status() + response.__class__ = ExtendedResponse + return response + except Exception as e: + if retries > 0: + logging.warning(f"请求 {method} {url} 失败,剩余重试次数 {retries},错误: {e}") + time.sleep(2 ** (self.retries - retries)) + return self._request(method, url, retries=retries - 1, **kwargs) + else: + logging.error(f"请求 {method} {url} 重试次数用尽") + raise e + + def close(self): + self.session.close() + +if __name__ == '__main__': + req = MyRequests("httpbin.org", protocol="https", retries=3, proxy_options=True, default_timeout=5, default_cookies={"session": "abc"}) + req.set_default_headers({"User-Agent": "MyRequests/1.0"}) + try: + resp = req.get("/get", headers={"referer": "/page"}) + logging.info("状态码: %s", resp.status_code) + logging.info("JSON: %s", resp.json()) + logging.info("XPath: %s", resp.xpath('//title/text()')) + obj = resp.to_Dict() + logging.info("转换对象: %s", obj) + except Exception as ex: + logging.error("请求失败: %s", ex) + finally: + req.close() diff --git a/web/yutian_top/Requests_Except.py b/web/yutian_top/Requests_Except.py new file mode 100644 index 0000000..d694694 --- /dev/null +++ b/web/yutian_top/Requests_Except.py @@ -0,0 +1,115 @@ +import requests +import logging +import time +import json +from lxml import etree +from types import SimpleNamespace + +logging.basicConfig(level=logging.DEBUG, format='%(asctime)s - %(levelname)s - %(message)s') + +class ExtendedResponse(requests.Response): + def xpath(self, xpath_expr): + try: + tree = etree.HTML(self.text) + return tree.xpath(xpath_expr) + except Exception as e: + raise ValueError("XPath解析错误: " + str(e)) + + def to_Dict(self): + try: + data = self.json() + return self.dict_to_obj(data) + except Exception as e: + raise ValueError("JSON转换错误: " + str(e)) + + @staticmethod + def dict_to_obj(d): + if isinstance(d, dict): + return SimpleNamespace(**{k: ExtendedResponse.dict_to_obj(v) for k, v in d.items()}) + elif isinstance(d, list): + return [ExtendedResponse.dict_to_obj(item) for item in d] + else: + return d + +class MyRequests: + def __init__(self, base_url, protocol='http', retries=3, proxy_options=True, default_timeout=10, default_cookies=None): + self.base_url = base_url.rstrip('/') + self.protocol = protocol + self.retries = retries + self.default_timeout = default_timeout + self.session = requests.Session() + if proxy_options: + self.session.proxies = {"http": "http://127.0.0.1:7890", "https": "http://127.0.0.1:7890"} + if default_cookies: + self.session.cookies.update(default_cookies) + + def _build_url(self, url): + if url.startswith("http://") or url.startswith("https://"): + return url + return f"{self.protocol}://{self.base_url}/{url.lstrip('/')}" + + def set_default_headers(self, headers): + self.session.headers.update(headers) + + def set_default_cookies(self, cookies): + self.session.cookies.update(cookies) + + def get(self, url, params=None, headers=None, cookies=None, **kwargs): + full_url = self._build_url(url) + return self._request("GET", full_url, params=params, headers=headers, cookies=cookies, **kwargs) + + def post(self, url, data=None, json=None, headers=None, cookies=None, **kwargs): + full_url = self._build_url(url) + return self._request("POST", full_url, data=data, json=json, headers=headers, cookies=cookies, **kwargs) + + def update(self, url, data=None, json=None, headers=None, cookies=None, **kwargs): + full_url = self._build_url(url) + return self._request("PUT", full_url, data=data, json=json, headers=headers, cookies=cookies, **kwargs) + + def delete(self, url, params=None, headers=None, cookies=None, **kwargs): + full_url = self._build_url(url) + return self._request("DELETE", full_url, params=params, headers=headers, cookies=cookies, **kwargs) + + def _request(self, method, url, retries=None, **kwargs): + if retries is None: + retries = self.retries + if 'timeout' not in kwargs: + kwargs['timeout'] = self.default_timeout + if 'headers' in kwargs and kwargs['headers']: + headers = kwargs['headers'] + if 'referer' in headers: + headers['referer'] = self._build_url(headers['referer']) + try: + response = self.session.request(method, url, **kwargs) + response.raise_for_status() + response.__class__ = ExtendedResponse + return response + except Exception as e: + if retries > 0: + logging.warning(f"请求 {method} {url} 失败,剩余重试次数 {retries},错误: {e}") + time.sleep(2 ** (self.retries - retries)) + return self._request(method, url, retries=retries - 1, **kwargs) + else: + logging.error(f"请求 {method} {url} 重试次数用尽") + raise e + + def close(self): + self.session.close() + +class MR(MyRequests): + pass + +if __name__ == '__main__': + req = MyRequests("httpbin.org", protocol="https", retries=3, proxy_options=True, default_timeout=5, default_cookies={"session": "abc"}) + req.set_default_headers({"User-Agent": "MyRequests/1.0"}) + try: + resp = req.get("/get", headers={"referer": "/page"}) + logging.info("状态码: %s", resp.status_code) + logging.info("JSON: %s", resp.json()) + logging.info("XPath: %s", resp.xpath('//title/text()')) + obj = resp.to_Dict() + logging.info("转换对象: %s", obj.url) + except Exception as ex: + logging.error("请求失败: %s", ex) + finally: + req.close() diff --git a/web/yutian_top/captcha.png b/web/yutian_top/captcha.png new file mode 100644 index 0000000..16f9435 Binary files /dev/null and b/web/yutian_top/captcha.png differ diff --git a/web/yutian_top/captcha_pic/0.png b/web/yutian_top/captcha_pic/0.png new file mode 100644 index 0000000..f183010 Binary files /dev/null and b/web/yutian_top/captcha_pic/0.png differ diff --git a/web/yutian_top/captcha_pic/1.png b/web/yutian_top/captcha_pic/1.png new file mode 100644 index 0000000..cbe6217 Binary files /dev/null and b/web/yutian_top/captcha_pic/1.png differ diff --git a/web/yutian_top/captcha_pic/10.png b/web/yutian_top/captcha_pic/10.png new file mode 100644 index 0000000..b6d5970 Binary files /dev/null and b/web/yutian_top/captcha_pic/10.png differ diff --git a/web/yutian_top/captcha_pic/100.png b/web/yutian_top/captcha_pic/100.png new file mode 100644 index 0000000..e16ee44 Binary files /dev/null and b/web/yutian_top/captcha_pic/100.png differ diff --git a/web/yutian_top/captcha_pic/101.png b/web/yutian_top/captcha_pic/101.png new file mode 100644 index 0000000..68168c2 Binary files /dev/null and b/web/yutian_top/captcha_pic/101.png differ diff --git a/web/yutian_top/captcha_pic/102.png b/web/yutian_top/captcha_pic/102.png new file mode 100644 index 0000000..705ab40 Binary files /dev/null and b/web/yutian_top/captcha_pic/102.png differ diff --git a/web/yutian_top/captcha_pic/103.png b/web/yutian_top/captcha_pic/103.png new file mode 100644 index 0000000..a1e3615 Binary files /dev/null and b/web/yutian_top/captcha_pic/103.png differ diff --git a/web/yutian_top/captcha_pic/104.png b/web/yutian_top/captcha_pic/104.png new file mode 100644 index 0000000..74962b1 Binary files /dev/null and b/web/yutian_top/captcha_pic/104.png differ diff --git a/web/yutian_top/captcha_pic/105.png b/web/yutian_top/captcha_pic/105.png new file mode 100644 index 0000000..24a537a Binary files /dev/null and b/web/yutian_top/captcha_pic/105.png differ diff --git a/web/yutian_top/captcha_pic/106.png b/web/yutian_top/captcha_pic/106.png new file mode 100644 index 0000000..3b86a98 Binary files /dev/null and b/web/yutian_top/captcha_pic/106.png differ diff --git a/web/yutian_top/captcha_pic/107.png b/web/yutian_top/captcha_pic/107.png new file mode 100644 index 0000000..bfe3cc1 Binary files /dev/null and b/web/yutian_top/captcha_pic/107.png differ diff --git a/web/yutian_top/captcha_pic/108.png b/web/yutian_top/captcha_pic/108.png new file mode 100644 index 0000000..e02810e Binary files /dev/null and b/web/yutian_top/captcha_pic/108.png differ diff --git a/web/yutian_top/captcha_pic/109.png b/web/yutian_top/captcha_pic/109.png new file mode 100644 index 0000000..14b6d88 Binary files /dev/null and b/web/yutian_top/captcha_pic/109.png differ diff --git a/web/yutian_top/captcha_pic/11.png b/web/yutian_top/captcha_pic/11.png new file mode 100644 index 0000000..166d786 Binary files /dev/null and b/web/yutian_top/captcha_pic/11.png differ diff --git a/web/yutian_top/captcha_pic/110.png b/web/yutian_top/captcha_pic/110.png new file mode 100644 index 0000000..c0b448d Binary files /dev/null and b/web/yutian_top/captcha_pic/110.png differ diff --git a/web/yutian_top/captcha_pic/111.png b/web/yutian_top/captcha_pic/111.png new file mode 100644 index 0000000..0a36cf8 Binary files /dev/null and b/web/yutian_top/captcha_pic/111.png differ diff --git a/web/yutian_top/captcha_pic/112.png b/web/yutian_top/captcha_pic/112.png new file mode 100644 index 0000000..fe0d300 Binary files /dev/null and b/web/yutian_top/captcha_pic/112.png differ diff --git a/web/yutian_top/captcha_pic/113.png b/web/yutian_top/captcha_pic/113.png new file mode 100644 index 0000000..cd332a7 Binary files /dev/null and b/web/yutian_top/captcha_pic/113.png differ diff --git a/web/yutian_top/captcha_pic/114.png b/web/yutian_top/captcha_pic/114.png new file mode 100644 index 0000000..ed89b4e Binary files /dev/null and b/web/yutian_top/captcha_pic/114.png differ diff --git a/web/yutian_top/captcha_pic/115.png b/web/yutian_top/captcha_pic/115.png new file mode 100644 index 0000000..9b4decb Binary files /dev/null and b/web/yutian_top/captcha_pic/115.png differ diff --git a/web/yutian_top/captcha_pic/116.png b/web/yutian_top/captcha_pic/116.png new file mode 100644 index 0000000..b161135 Binary files /dev/null and b/web/yutian_top/captcha_pic/116.png differ diff --git a/web/yutian_top/captcha_pic/117.png b/web/yutian_top/captcha_pic/117.png new file mode 100644 index 0000000..214c3ed Binary files /dev/null and b/web/yutian_top/captcha_pic/117.png differ diff --git a/web/yutian_top/captcha_pic/118.png b/web/yutian_top/captcha_pic/118.png new file mode 100644 index 0000000..90f89c1 Binary files /dev/null and b/web/yutian_top/captcha_pic/118.png differ diff --git a/web/yutian_top/captcha_pic/119.png b/web/yutian_top/captcha_pic/119.png new file mode 100644 index 0000000..aec7e7a Binary files /dev/null and b/web/yutian_top/captcha_pic/119.png differ diff --git a/web/yutian_top/captcha_pic/12.png b/web/yutian_top/captcha_pic/12.png new file mode 100644 index 0000000..61e1e20 Binary files /dev/null and b/web/yutian_top/captcha_pic/12.png differ diff --git a/web/yutian_top/captcha_pic/120.png b/web/yutian_top/captcha_pic/120.png new file mode 100644 index 0000000..a8fc34b Binary files /dev/null and b/web/yutian_top/captcha_pic/120.png differ diff --git a/web/yutian_top/captcha_pic/121.png b/web/yutian_top/captcha_pic/121.png new file mode 100644 index 0000000..d701837 Binary files /dev/null and b/web/yutian_top/captcha_pic/121.png differ diff --git a/web/yutian_top/captcha_pic/122.png b/web/yutian_top/captcha_pic/122.png new file mode 100644 index 0000000..3f71f1d Binary files /dev/null and b/web/yutian_top/captcha_pic/122.png differ diff --git a/web/yutian_top/captcha_pic/123.png b/web/yutian_top/captcha_pic/123.png new file mode 100644 index 0000000..8e92587 Binary files /dev/null and b/web/yutian_top/captcha_pic/123.png differ diff --git a/web/yutian_top/captcha_pic/124.png b/web/yutian_top/captcha_pic/124.png new file mode 100644 index 0000000..92ed1ce Binary files /dev/null and b/web/yutian_top/captcha_pic/124.png differ diff --git a/web/yutian_top/captcha_pic/125.png b/web/yutian_top/captcha_pic/125.png new file mode 100644 index 0000000..15d8b58 Binary files /dev/null and b/web/yutian_top/captcha_pic/125.png differ diff --git a/web/yutian_top/captcha_pic/126.png b/web/yutian_top/captcha_pic/126.png new file mode 100644 index 0000000..efaffbf Binary files /dev/null and b/web/yutian_top/captcha_pic/126.png differ diff --git a/web/yutian_top/captcha_pic/127.png b/web/yutian_top/captcha_pic/127.png new file mode 100644 index 0000000..28cf588 Binary files /dev/null and b/web/yutian_top/captcha_pic/127.png differ diff --git a/web/yutian_top/captcha_pic/128.png b/web/yutian_top/captcha_pic/128.png new file mode 100644 index 0000000..abbb6e4 Binary files /dev/null and b/web/yutian_top/captcha_pic/128.png differ diff --git a/web/yutian_top/captcha_pic/129.png b/web/yutian_top/captcha_pic/129.png new file mode 100644 index 0000000..931b3b7 Binary files /dev/null and b/web/yutian_top/captcha_pic/129.png differ diff --git a/web/yutian_top/captcha_pic/13.png b/web/yutian_top/captcha_pic/13.png new file mode 100644 index 0000000..5df899a Binary files /dev/null and b/web/yutian_top/captcha_pic/13.png differ diff --git a/web/yutian_top/captcha_pic/130.png b/web/yutian_top/captcha_pic/130.png new file mode 100644 index 0000000..beebdfb Binary files /dev/null and b/web/yutian_top/captcha_pic/130.png differ diff --git a/web/yutian_top/captcha_pic/131.png b/web/yutian_top/captcha_pic/131.png new file mode 100644 index 0000000..24f779f Binary files /dev/null and b/web/yutian_top/captcha_pic/131.png differ diff --git a/web/yutian_top/captcha_pic/132.png b/web/yutian_top/captcha_pic/132.png new file mode 100644 index 0000000..f46f433 Binary files /dev/null and b/web/yutian_top/captcha_pic/132.png differ diff --git a/web/yutian_top/captcha_pic/133.png b/web/yutian_top/captcha_pic/133.png new file mode 100644 index 0000000..df6b7b0 Binary files /dev/null and b/web/yutian_top/captcha_pic/133.png differ diff --git a/web/yutian_top/captcha_pic/134.png b/web/yutian_top/captcha_pic/134.png new file mode 100644 index 0000000..3d961d0 Binary files /dev/null and b/web/yutian_top/captcha_pic/134.png differ diff --git a/web/yutian_top/captcha_pic/135.png b/web/yutian_top/captcha_pic/135.png new file mode 100644 index 0000000..1cac5b4 Binary files /dev/null and b/web/yutian_top/captcha_pic/135.png differ diff --git a/web/yutian_top/captcha_pic/136.png b/web/yutian_top/captcha_pic/136.png new file mode 100644 index 0000000..cc39405 Binary files /dev/null and b/web/yutian_top/captcha_pic/136.png differ diff --git a/web/yutian_top/captcha_pic/137.png b/web/yutian_top/captcha_pic/137.png new file mode 100644 index 0000000..173a9bb Binary files /dev/null and b/web/yutian_top/captcha_pic/137.png differ diff --git a/web/yutian_top/captcha_pic/138.png b/web/yutian_top/captcha_pic/138.png new file mode 100644 index 0000000..313b4ec Binary files /dev/null and b/web/yutian_top/captcha_pic/138.png differ diff --git a/web/yutian_top/captcha_pic/139.png b/web/yutian_top/captcha_pic/139.png new file mode 100644 index 0000000..d93ba9e Binary files /dev/null and b/web/yutian_top/captcha_pic/139.png differ diff --git a/web/yutian_top/captcha_pic/14.png b/web/yutian_top/captcha_pic/14.png new file mode 100644 index 0000000..68b0f7b Binary files /dev/null and b/web/yutian_top/captcha_pic/14.png differ diff --git a/web/yutian_top/captcha_pic/140.png b/web/yutian_top/captcha_pic/140.png new file mode 100644 index 0000000..83df727 Binary files /dev/null and b/web/yutian_top/captcha_pic/140.png differ diff --git a/web/yutian_top/captcha_pic/141.png b/web/yutian_top/captcha_pic/141.png new file mode 100644 index 0000000..d9f4e9b Binary files /dev/null and b/web/yutian_top/captcha_pic/141.png differ diff --git a/web/yutian_top/captcha_pic/142.png b/web/yutian_top/captcha_pic/142.png new file mode 100644 index 0000000..c76616c Binary files /dev/null and b/web/yutian_top/captcha_pic/142.png differ diff --git a/web/yutian_top/captcha_pic/143.png b/web/yutian_top/captcha_pic/143.png new file mode 100644 index 0000000..61433d0 Binary files /dev/null and b/web/yutian_top/captcha_pic/143.png differ diff --git a/web/yutian_top/captcha_pic/144.png b/web/yutian_top/captcha_pic/144.png new file mode 100644 index 0000000..2d4c14a Binary files /dev/null and b/web/yutian_top/captcha_pic/144.png differ diff --git a/web/yutian_top/captcha_pic/145.png b/web/yutian_top/captcha_pic/145.png new file mode 100644 index 0000000..a271b79 Binary files /dev/null and b/web/yutian_top/captcha_pic/145.png differ diff --git a/web/yutian_top/captcha_pic/146.png b/web/yutian_top/captcha_pic/146.png new file mode 100644 index 0000000..c10b0b8 Binary files /dev/null and b/web/yutian_top/captcha_pic/146.png differ diff --git a/web/yutian_top/captcha_pic/147.png b/web/yutian_top/captcha_pic/147.png new file mode 100644 index 0000000..ab8baba Binary files /dev/null and b/web/yutian_top/captcha_pic/147.png differ diff --git a/web/yutian_top/captcha_pic/148.png b/web/yutian_top/captcha_pic/148.png new file mode 100644 index 0000000..ad05441 Binary files /dev/null and b/web/yutian_top/captcha_pic/148.png differ diff --git a/web/yutian_top/captcha_pic/149.png b/web/yutian_top/captcha_pic/149.png new file mode 100644 index 0000000..2154eda Binary files /dev/null and b/web/yutian_top/captcha_pic/149.png differ diff --git a/web/yutian_top/captcha_pic/15.png b/web/yutian_top/captcha_pic/15.png new file mode 100644 index 0000000..c76ff31 Binary files /dev/null and b/web/yutian_top/captcha_pic/15.png differ diff --git a/web/yutian_top/captcha_pic/150.png b/web/yutian_top/captcha_pic/150.png new file mode 100644 index 0000000..dde4d01 Binary files /dev/null and b/web/yutian_top/captcha_pic/150.png differ diff --git a/web/yutian_top/captcha_pic/151.png b/web/yutian_top/captcha_pic/151.png new file mode 100644 index 0000000..b7aa17a Binary files /dev/null and b/web/yutian_top/captcha_pic/151.png differ diff --git a/web/yutian_top/captcha_pic/152.png b/web/yutian_top/captcha_pic/152.png new file mode 100644 index 0000000..1d7483a Binary files /dev/null and b/web/yutian_top/captcha_pic/152.png differ diff --git a/web/yutian_top/captcha_pic/153.png b/web/yutian_top/captcha_pic/153.png new file mode 100644 index 0000000..52b9a01 Binary files /dev/null and b/web/yutian_top/captcha_pic/153.png differ diff --git a/web/yutian_top/captcha_pic/154.png b/web/yutian_top/captcha_pic/154.png new file mode 100644 index 0000000..0b1d783 Binary files /dev/null and b/web/yutian_top/captcha_pic/154.png differ diff --git a/web/yutian_top/captcha_pic/155.png b/web/yutian_top/captcha_pic/155.png new file mode 100644 index 0000000..1a61784 Binary files /dev/null and b/web/yutian_top/captcha_pic/155.png differ diff --git a/web/yutian_top/captcha_pic/156.png b/web/yutian_top/captcha_pic/156.png new file mode 100644 index 0000000..46685f7 Binary files /dev/null and b/web/yutian_top/captcha_pic/156.png differ diff --git a/web/yutian_top/captcha_pic/157.png b/web/yutian_top/captcha_pic/157.png new file mode 100644 index 0000000..0e65b32 Binary files /dev/null and b/web/yutian_top/captcha_pic/157.png differ diff --git a/web/yutian_top/captcha_pic/158.png b/web/yutian_top/captcha_pic/158.png new file mode 100644 index 0000000..da8a7d0 Binary files /dev/null and b/web/yutian_top/captcha_pic/158.png differ diff --git a/web/yutian_top/captcha_pic/159.png b/web/yutian_top/captcha_pic/159.png new file mode 100644 index 0000000..dd2ba83 Binary files /dev/null and b/web/yutian_top/captcha_pic/159.png differ diff --git a/web/yutian_top/captcha_pic/16.png b/web/yutian_top/captcha_pic/16.png new file mode 100644 index 0000000..759cf59 Binary files /dev/null and b/web/yutian_top/captcha_pic/16.png differ diff --git a/web/yutian_top/captcha_pic/160.png b/web/yutian_top/captcha_pic/160.png new file mode 100644 index 0000000..d8980c0 Binary files /dev/null and b/web/yutian_top/captcha_pic/160.png differ diff --git a/web/yutian_top/captcha_pic/161.png b/web/yutian_top/captcha_pic/161.png new file mode 100644 index 0000000..0ef213d Binary files /dev/null and b/web/yutian_top/captcha_pic/161.png differ diff --git a/web/yutian_top/captcha_pic/162.png b/web/yutian_top/captcha_pic/162.png new file mode 100644 index 0000000..d727ad2 Binary files /dev/null and b/web/yutian_top/captcha_pic/162.png differ diff --git a/web/yutian_top/captcha_pic/163.png b/web/yutian_top/captcha_pic/163.png new file mode 100644 index 0000000..79128f5 Binary files /dev/null and b/web/yutian_top/captcha_pic/163.png differ diff --git a/web/yutian_top/captcha_pic/164.png b/web/yutian_top/captcha_pic/164.png new file mode 100644 index 0000000..b451b38 Binary files /dev/null and b/web/yutian_top/captcha_pic/164.png differ diff --git a/web/yutian_top/captcha_pic/165.png b/web/yutian_top/captcha_pic/165.png new file mode 100644 index 0000000..2891dba Binary files /dev/null and b/web/yutian_top/captcha_pic/165.png differ diff --git a/web/yutian_top/captcha_pic/166.png b/web/yutian_top/captcha_pic/166.png new file mode 100644 index 0000000..9279810 Binary files /dev/null and b/web/yutian_top/captcha_pic/166.png differ diff --git a/web/yutian_top/captcha_pic/167.png b/web/yutian_top/captcha_pic/167.png new file mode 100644 index 0000000..9b6b09e Binary files /dev/null and b/web/yutian_top/captcha_pic/167.png differ diff --git a/web/yutian_top/captcha_pic/168.png b/web/yutian_top/captcha_pic/168.png new file mode 100644 index 0000000..9eb3741 Binary files /dev/null and b/web/yutian_top/captcha_pic/168.png differ diff --git a/web/yutian_top/captcha_pic/169.png b/web/yutian_top/captcha_pic/169.png new file mode 100644 index 0000000..c33f185 Binary files /dev/null and b/web/yutian_top/captcha_pic/169.png differ diff --git a/web/yutian_top/captcha_pic/17.png b/web/yutian_top/captcha_pic/17.png new file mode 100644 index 0000000..36f3734 Binary files /dev/null and b/web/yutian_top/captcha_pic/17.png differ diff --git a/web/yutian_top/captcha_pic/170.png b/web/yutian_top/captcha_pic/170.png new file mode 100644 index 0000000..2fda06f Binary files /dev/null and b/web/yutian_top/captcha_pic/170.png differ diff --git a/web/yutian_top/captcha_pic/171.png b/web/yutian_top/captcha_pic/171.png new file mode 100644 index 0000000..168e142 Binary files /dev/null and b/web/yutian_top/captcha_pic/171.png differ diff --git a/web/yutian_top/captcha_pic/172.png b/web/yutian_top/captcha_pic/172.png new file mode 100644 index 0000000..c459bc1 Binary files /dev/null and b/web/yutian_top/captcha_pic/172.png differ diff --git a/web/yutian_top/captcha_pic/173.png b/web/yutian_top/captcha_pic/173.png new file mode 100644 index 0000000..25f9c12 Binary files /dev/null and b/web/yutian_top/captcha_pic/173.png differ diff --git a/web/yutian_top/captcha_pic/174.png b/web/yutian_top/captcha_pic/174.png new file mode 100644 index 0000000..c9d4585 Binary files /dev/null and b/web/yutian_top/captcha_pic/174.png differ diff --git a/web/yutian_top/captcha_pic/175.png b/web/yutian_top/captcha_pic/175.png new file mode 100644 index 0000000..c42f388 Binary files /dev/null and b/web/yutian_top/captcha_pic/175.png differ diff --git a/web/yutian_top/captcha_pic/176.png b/web/yutian_top/captcha_pic/176.png new file mode 100644 index 0000000..50bf5ab Binary files /dev/null and b/web/yutian_top/captcha_pic/176.png differ diff --git a/web/yutian_top/captcha_pic/177.png b/web/yutian_top/captcha_pic/177.png new file mode 100644 index 0000000..2eee2fa Binary files /dev/null and b/web/yutian_top/captcha_pic/177.png differ diff --git a/web/yutian_top/captcha_pic/178.png b/web/yutian_top/captcha_pic/178.png new file mode 100644 index 0000000..12e8e0f Binary files /dev/null and b/web/yutian_top/captcha_pic/178.png differ diff --git a/web/yutian_top/captcha_pic/179.png b/web/yutian_top/captcha_pic/179.png new file mode 100644 index 0000000..cae0a2b Binary files /dev/null and b/web/yutian_top/captcha_pic/179.png differ diff --git a/web/yutian_top/captcha_pic/18.png b/web/yutian_top/captcha_pic/18.png new file mode 100644 index 0000000..5eea34e Binary files /dev/null and b/web/yutian_top/captcha_pic/18.png differ diff --git a/web/yutian_top/captcha_pic/180.png b/web/yutian_top/captcha_pic/180.png new file mode 100644 index 0000000..a6e53e2 Binary files /dev/null and b/web/yutian_top/captcha_pic/180.png differ diff --git a/web/yutian_top/captcha_pic/181.png b/web/yutian_top/captcha_pic/181.png new file mode 100644 index 0000000..3b481fd Binary files /dev/null and b/web/yutian_top/captcha_pic/181.png differ diff --git a/web/yutian_top/captcha_pic/182.png b/web/yutian_top/captcha_pic/182.png new file mode 100644 index 0000000..5fae271 Binary files /dev/null and b/web/yutian_top/captcha_pic/182.png differ diff --git a/web/yutian_top/captcha_pic/183.png b/web/yutian_top/captcha_pic/183.png new file mode 100644 index 0000000..6575043 Binary files /dev/null and b/web/yutian_top/captcha_pic/183.png differ diff --git a/web/yutian_top/captcha_pic/184.png b/web/yutian_top/captcha_pic/184.png new file mode 100644 index 0000000..0598a3e Binary files /dev/null and b/web/yutian_top/captcha_pic/184.png differ diff --git a/web/yutian_top/captcha_pic/185.png b/web/yutian_top/captcha_pic/185.png new file mode 100644 index 0000000..965770b Binary files /dev/null and b/web/yutian_top/captcha_pic/185.png differ diff --git a/web/yutian_top/captcha_pic/186.png b/web/yutian_top/captcha_pic/186.png new file mode 100644 index 0000000..205476a Binary files /dev/null and b/web/yutian_top/captcha_pic/186.png differ diff --git a/web/yutian_top/captcha_pic/187.png b/web/yutian_top/captcha_pic/187.png new file mode 100644 index 0000000..56ddd7c Binary files /dev/null and b/web/yutian_top/captcha_pic/187.png differ diff --git a/web/yutian_top/captcha_pic/188.png b/web/yutian_top/captcha_pic/188.png new file mode 100644 index 0000000..a8c190a Binary files /dev/null and b/web/yutian_top/captcha_pic/188.png differ diff --git a/web/yutian_top/captcha_pic/189.png b/web/yutian_top/captcha_pic/189.png new file mode 100644 index 0000000..e8c3144 Binary files /dev/null and b/web/yutian_top/captcha_pic/189.png differ diff --git a/web/yutian_top/captcha_pic/19.png b/web/yutian_top/captcha_pic/19.png new file mode 100644 index 0000000..8f4a778 Binary files /dev/null and b/web/yutian_top/captcha_pic/19.png differ diff --git a/web/yutian_top/captcha_pic/190.png b/web/yutian_top/captcha_pic/190.png new file mode 100644 index 0000000..644e45d Binary files /dev/null and b/web/yutian_top/captcha_pic/190.png differ diff --git a/web/yutian_top/captcha_pic/191.png b/web/yutian_top/captcha_pic/191.png new file mode 100644 index 0000000..48a26bb Binary files /dev/null and b/web/yutian_top/captcha_pic/191.png differ diff --git a/web/yutian_top/captcha_pic/192.png b/web/yutian_top/captcha_pic/192.png new file mode 100644 index 0000000..78ce82e Binary files /dev/null and b/web/yutian_top/captcha_pic/192.png differ diff --git a/web/yutian_top/captcha_pic/193.png b/web/yutian_top/captcha_pic/193.png new file mode 100644 index 0000000..0c13e08 Binary files /dev/null and b/web/yutian_top/captcha_pic/193.png differ diff --git a/web/yutian_top/captcha_pic/194.png b/web/yutian_top/captcha_pic/194.png new file mode 100644 index 0000000..b442962 Binary files /dev/null and b/web/yutian_top/captcha_pic/194.png differ diff --git a/web/yutian_top/captcha_pic/195.png b/web/yutian_top/captcha_pic/195.png new file mode 100644 index 0000000..34bbf42 Binary files /dev/null and b/web/yutian_top/captcha_pic/195.png differ diff --git a/web/yutian_top/captcha_pic/196.png b/web/yutian_top/captcha_pic/196.png new file mode 100644 index 0000000..d8b0b39 Binary files /dev/null and b/web/yutian_top/captcha_pic/196.png differ diff --git a/web/yutian_top/captcha_pic/197.png b/web/yutian_top/captcha_pic/197.png new file mode 100644 index 0000000..3d2a2fe Binary files /dev/null and b/web/yutian_top/captcha_pic/197.png differ diff --git a/web/yutian_top/captcha_pic/198.png b/web/yutian_top/captcha_pic/198.png new file mode 100644 index 0000000..a0208f3 Binary files /dev/null and b/web/yutian_top/captcha_pic/198.png differ diff --git a/web/yutian_top/captcha_pic/199.png b/web/yutian_top/captcha_pic/199.png new file mode 100644 index 0000000..a0ce704 Binary files /dev/null and b/web/yutian_top/captcha_pic/199.png differ diff --git a/web/yutian_top/captcha_pic/2.png b/web/yutian_top/captcha_pic/2.png new file mode 100644 index 0000000..794c7c9 Binary files /dev/null and b/web/yutian_top/captcha_pic/2.png differ diff --git a/web/yutian_top/captcha_pic/20.png b/web/yutian_top/captcha_pic/20.png new file mode 100644 index 0000000..621d174 Binary files /dev/null and b/web/yutian_top/captcha_pic/20.png differ diff --git a/web/yutian_top/captcha_pic/200.png b/web/yutian_top/captcha_pic/200.png new file mode 100644 index 0000000..282c90c Binary files /dev/null and b/web/yutian_top/captcha_pic/200.png differ diff --git a/web/yutian_top/captcha_pic/201.png b/web/yutian_top/captcha_pic/201.png new file mode 100644 index 0000000..5bf15dc Binary files /dev/null and b/web/yutian_top/captcha_pic/201.png differ diff --git a/web/yutian_top/captcha_pic/202.png b/web/yutian_top/captcha_pic/202.png new file mode 100644 index 0000000..00cd360 Binary files /dev/null and b/web/yutian_top/captcha_pic/202.png differ diff --git a/web/yutian_top/captcha_pic/203.png b/web/yutian_top/captcha_pic/203.png new file mode 100644 index 0000000..25b7c3e Binary files /dev/null and b/web/yutian_top/captcha_pic/203.png differ diff --git a/web/yutian_top/captcha_pic/204.png b/web/yutian_top/captcha_pic/204.png new file mode 100644 index 0000000..2f6e2a2 Binary files /dev/null and b/web/yutian_top/captcha_pic/204.png differ diff --git a/web/yutian_top/captcha_pic/205.png b/web/yutian_top/captcha_pic/205.png new file mode 100644 index 0000000..50ea718 Binary files /dev/null and b/web/yutian_top/captcha_pic/205.png differ diff --git a/web/yutian_top/captcha_pic/206.png b/web/yutian_top/captcha_pic/206.png new file mode 100644 index 0000000..0facd78 Binary files /dev/null and b/web/yutian_top/captcha_pic/206.png differ diff --git a/web/yutian_top/captcha_pic/207.png b/web/yutian_top/captcha_pic/207.png new file mode 100644 index 0000000..e2eca13 Binary files /dev/null and b/web/yutian_top/captcha_pic/207.png differ diff --git a/web/yutian_top/captcha_pic/208.png b/web/yutian_top/captcha_pic/208.png new file mode 100644 index 0000000..de0bae5 Binary files /dev/null and b/web/yutian_top/captcha_pic/208.png differ diff --git a/web/yutian_top/captcha_pic/209.png b/web/yutian_top/captcha_pic/209.png new file mode 100644 index 0000000..3f26a81 Binary files /dev/null and b/web/yutian_top/captcha_pic/209.png differ diff --git a/web/yutian_top/captcha_pic/21.png b/web/yutian_top/captcha_pic/21.png new file mode 100644 index 0000000..ae68ecd Binary files /dev/null and b/web/yutian_top/captcha_pic/21.png differ diff --git a/web/yutian_top/captcha_pic/210.png b/web/yutian_top/captcha_pic/210.png new file mode 100644 index 0000000..482e688 Binary files /dev/null and b/web/yutian_top/captcha_pic/210.png differ diff --git a/web/yutian_top/captcha_pic/211.png b/web/yutian_top/captcha_pic/211.png new file mode 100644 index 0000000..190f751 Binary files /dev/null and b/web/yutian_top/captcha_pic/211.png differ diff --git a/web/yutian_top/captcha_pic/212.png b/web/yutian_top/captcha_pic/212.png new file mode 100644 index 0000000..aa6f06c Binary files /dev/null and b/web/yutian_top/captcha_pic/212.png differ diff --git a/web/yutian_top/captcha_pic/213.png b/web/yutian_top/captcha_pic/213.png new file mode 100644 index 0000000..7ed37b4 Binary files /dev/null and b/web/yutian_top/captcha_pic/213.png differ diff --git a/web/yutian_top/captcha_pic/214.png b/web/yutian_top/captcha_pic/214.png new file mode 100644 index 0000000..92c8d87 Binary files /dev/null and b/web/yutian_top/captcha_pic/214.png differ diff --git a/web/yutian_top/captcha_pic/215.png b/web/yutian_top/captcha_pic/215.png new file mode 100644 index 0000000..cd6d5ec Binary files /dev/null and b/web/yutian_top/captcha_pic/215.png differ diff --git a/web/yutian_top/captcha_pic/216.png b/web/yutian_top/captcha_pic/216.png new file mode 100644 index 0000000..0d884ba Binary files /dev/null and b/web/yutian_top/captcha_pic/216.png differ diff --git a/web/yutian_top/captcha_pic/217.png b/web/yutian_top/captcha_pic/217.png new file mode 100644 index 0000000..88b0b9e Binary files /dev/null and b/web/yutian_top/captcha_pic/217.png differ diff --git a/web/yutian_top/captcha_pic/218.png b/web/yutian_top/captcha_pic/218.png new file mode 100644 index 0000000..16d504c Binary files /dev/null and b/web/yutian_top/captcha_pic/218.png differ diff --git a/web/yutian_top/captcha_pic/219.png b/web/yutian_top/captcha_pic/219.png new file mode 100644 index 0000000..1c912cf Binary files /dev/null and b/web/yutian_top/captcha_pic/219.png differ diff --git a/web/yutian_top/captcha_pic/22.png b/web/yutian_top/captcha_pic/22.png new file mode 100644 index 0000000..a775cae Binary files /dev/null and b/web/yutian_top/captcha_pic/22.png differ diff --git a/web/yutian_top/captcha_pic/220.png b/web/yutian_top/captcha_pic/220.png new file mode 100644 index 0000000..1934660 Binary files /dev/null and b/web/yutian_top/captcha_pic/220.png differ diff --git a/web/yutian_top/captcha_pic/221.png b/web/yutian_top/captcha_pic/221.png new file mode 100644 index 0000000..883eedc Binary files /dev/null and b/web/yutian_top/captcha_pic/221.png differ diff --git a/web/yutian_top/captcha_pic/222.png b/web/yutian_top/captcha_pic/222.png new file mode 100644 index 0000000..e5afcaa Binary files /dev/null and b/web/yutian_top/captcha_pic/222.png differ diff --git a/web/yutian_top/captcha_pic/223.png b/web/yutian_top/captcha_pic/223.png new file mode 100644 index 0000000..0fe6c7d Binary files /dev/null and b/web/yutian_top/captcha_pic/223.png differ diff --git a/web/yutian_top/captcha_pic/224.png b/web/yutian_top/captcha_pic/224.png new file mode 100644 index 0000000..c3f35dd Binary files /dev/null and b/web/yutian_top/captcha_pic/224.png differ diff --git a/web/yutian_top/captcha_pic/225.png b/web/yutian_top/captcha_pic/225.png new file mode 100644 index 0000000..98f3ea0 Binary files /dev/null and b/web/yutian_top/captcha_pic/225.png differ diff --git a/web/yutian_top/captcha_pic/226.png b/web/yutian_top/captcha_pic/226.png new file mode 100644 index 0000000..63c272d Binary files /dev/null and b/web/yutian_top/captcha_pic/226.png differ diff --git a/web/yutian_top/captcha_pic/227.png b/web/yutian_top/captcha_pic/227.png new file mode 100644 index 0000000..1bf4ece Binary files /dev/null and b/web/yutian_top/captcha_pic/227.png differ diff --git a/web/yutian_top/captcha_pic/228.png b/web/yutian_top/captcha_pic/228.png new file mode 100644 index 0000000..a19a81e Binary files /dev/null and b/web/yutian_top/captcha_pic/228.png differ diff --git a/web/yutian_top/captcha_pic/229.png b/web/yutian_top/captcha_pic/229.png new file mode 100644 index 0000000..34d0d68 Binary files /dev/null and b/web/yutian_top/captcha_pic/229.png differ diff --git a/web/yutian_top/captcha_pic/23.png b/web/yutian_top/captcha_pic/23.png new file mode 100644 index 0000000..3b02f1f Binary files /dev/null and b/web/yutian_top/captcha_pic/23.png differ diff --git a/web/yutian_top/captcha_pic/230.png b/web/yutian_top/captcha_pic/230.png new file mode 100644 index 0000000..cc73577 Binary files /dev/null and b/web/yutian_top/captcha_pic/230.png differ diff --git a/web/yutian_top/captcha_pic/231.png b/web/yutian_top/captcha_pic/231.png new file mode 100644 index 0000000..1ac24f4 Binary files /dev/null and b/web/yutian_top/captcha_pic/231.png differ diff --git a/web/yutian_top/captcha_pic/232.png b/web/yutian_top/captcha_pic/232.png new file mode 100644 index 0000000..d3e933b Binary files /dev/null and b/web/yutian_top/captcha_pic/232.png differ diff --git a/web/yutian_top/captcha_pic/233.png b/web/yutian_top/captcha_pic/233.png new file mode 100644 index 0000000..2283a98 Binary files /dev/null and b/web/yutian_top/captcha_pic/233.png differ diff --git a/web/yutian_top/captcha_pic/234.png b/web/yutian_top/captcha_pic/234.png new file mode 100644 index 0000000..82c9fda Binary files /dev/null and b/web/yutian_top/captcha_pic/234.png differ diff --git a/web/yutian_top/captcha_pic/235.png b/web/yutian_top/captcha_pic/235.png new file mode 100644 index 0000000..a16a849 Binary files /dev/null and b/web/yutian_top/captcha_pic/235.png differ diff --git a/web/yutian_top/captcha_pic/236.png b/web/yutian_top/captcha_pic/236.png new file mode 100644 index 0000000..6b4b73e Binary files /dev/null and b/web/yutian_top/captcha_pic/236.png differ diff --git a/web/yutian_top/captcha_pic/237.png b/web/yutian_top/captcha_pic/237.png new file mode 100644 index 0000000..7228488 Binary files /dev/null and b/web/yutian_top/captcha_pic/237.png differ diff --git a/web/yutian_top/captcha_pic/238.png b/web/yutian_top/captcha_pic/238.png new file mode 100644 index 0000000..31a3a22 Binary files /dev/null and b/web/yutian_top/captcha_pic/238.png differ diff --git a/web/yutian_top/captcha_pic/239.png b/web/yutian_top/captcha_pic/239.png new file mode 100644 index 0000000..76b6457 Binary files /dev/null and b/web/yutian_top/captcha_pic/239.png differ diff --git a/web/yutian_top/captcha_pic/24.png b/web/yutian_top/captcha_pic/24.png new file mode 100644 index 0000000..c1773bb Binary files /dev/null and b/web/yutian_top/captcha_pic/24.png differ diff --git a/web/yutian_top/captcha_pic/240.png b/web/yutian_top/captcha_pic/240.png new file mode 100644 index 0000000..45da3c7 Binary files /dev/null and b/web/yutian_top/captcha_pic/240.png differ diff --git a/web/yutian_top/captcha_pic/241.png b/web/yutian_top/captcha_pic/241.png new file mode 100644 index 0000000..f196489 Binary files /dev/null and b/web/yutian_top/captcha_pic/241.png differ diff --git a/web/yutian_top/captcha_pic/242.png b/web/yutian_top/captcha_pic/242.png new file mode 100644 index 0000000..c21c9bb Binary files /dev/null and b/web/yutian_top/captcha_pic/242.png differ diff --git a/web/yutian_top/captcha_pic/243.png b/web/yutian_top/captcha_pic/243.png new file mode 100644 index 0000000..7dae7f1 Binary files /dev/null and b/web/yutian_top/captcha_pic/243.png differ diff --git a/web/yutian_top/captcha_pic/244.png b/web/yutian_top/captcha_pic/244.png new file mode 100644 index 0000000..fb313bd Binary files /dev/null and b/web/yutian_top/captcha_pic/244.png differ diff --git a/web/yutian_top/captcha_pic/245.png b/web/yutian_top/captcha_pic/245.png new file mode 100644 index 0000000..484ccba Binary files /dev/null and b/web/yutian_top/captcha_pic/245.png differ diff --git a/web/yutian_top/captcha_pic/246.png b/web/yutian_top/captcha_pic/246.png new file mode 100644 index 0000000..02ffa38 Binary files /dev/null and b/web/yutian_top/captcha_pic/246.png differ diff --git a/web/yutian_top/captcha_pic/247.png b/web/yutian_top/captcha_pic/247.png new file mode 100644 index 0000000..33f9f55 Binary files /dev/null and b/web/yutian_top/captcha_pic/247.png differ diff --git a/web/yutian_top/captcha_pic/248.png b/web/yutian_top/captcha_pic/248.png new file mode 100644 index 0000000..1b74b14 Binary files /dev/null and b/web/yutian_top/captcha_pic/248.png differ diff --git a/web/yutian_top/captcha_pic/249.png b/web/yutian_top/captcha_pic/249.png new file mode 100644 index 0000000..90724b6 Binary files /dev/null and b/web/yutian_top/captcha_pic/249.png differ diff --git a/web/yutian_top/captcha_pic/25.png b/web/yutian_top/captcha_pic/25.png new file mode 100644 index 0000000..695833b Binary files /dev/null and b/web/yutian_top/captcha_pic/25.png differ diff --git a/web/yutian_top/captcha_pic/250.png b/web/yutian_top/captcha_pic/250.png new file mode 100644 index 0000000..5727f0f Binary files /dev/null and b/web/yutian_top/captcha_pic/250.png differ diff --git a/web/yutian_top/captcha_pic/251.png b/web/yutian_top/captcha_pic/251.png new file mode 100644 index 0000000..bdc9882 Binary files /dev/null and b/web/yutian_top/captcha_pic/251.png differ diff --git a/web/yutian_top/captcha_pic/252.png b/web/yutian_top/captcha_pic/252.png new file mode 100644 index 0000000..e03fcfc Binary files /dev/null and b/web/yutian_top/captcha_pic/252.png differ diff --git a/web/yutian_top/captcha_pic/253.png b/web/yutian_top/captcha_pic/253.png new file mode 100644 index 0000000..3b0abdb Binary files /dev/null and b/web/yutian_top/captcha_pic/253.png differ diff --git a/web/yutian_top/captcha_pic/254.png b/web/yutian_top/captcha_pic/254.png new file mode 100644 index 0000000..05b8aa6 Binary files /dev/null and b/web/yutian_top/captcha_pic/254.png differ diff --git a/web/yutian_top/captcha_pic/255.png b/web/yutian_top/captcha_pic/255.png new file mode 100644 index 0000000..e3bb2d8 Binary files /dev/null and b/web/yutian_top/captcha_pic/255.png differ diff --git a/web/yutian_top/captcha_pic/256.png b/web/yutian_top/captcha_pic/256.png new file mode 100644 index 0000000..8c82034 Binary files /dev/null and b/web/yutian_top/captcha_pic/256.png differ diff --git a/web/yutian_top/captcha_pic/257.png b/web/yutian_top/captcha_pic/257.png new file mode 100644 index 0000000..cf88adb Binary files /dev/null and b/web/yutian_top/captcha_pic/257.png differ diff --git a/web/yutian_top/captcha_pic/258.png b/web/yutian_top/captcha_pic/258.png new file mode 100644 index 0000000..46ddd2e Binary files /dev/null and b/web/yutian_top/captcha_pic/258.png differ diff --git a/web/yutian_top/captcha_pic/259.png b/web/yutian_top/captcha_pic/259.png new file mode 100644 index 0000000..5b8d2c0 Binary files /dev/null and b/web/yutian_top/captcha_pic/259.png differ diff --git a/web/yutian_top/captcha_pic/26.png b/web/yutian_top/captcha_pic/26.png new file mode 100644 index 0000000..b781c28 Binary files /dev/null and b/web/yutian_top/captcha_pic/26.png differ diff --git a/web/yutian_top/captcha_pic/260.png b/web/yutian_top/captcha_pic/260.png new file mode 100644 index 0000000..24bc115 Binary files /dev/null and b/web/yutian_top/captcha_pic/260.png differ diff --git a/web/yutian_top/captcha_pic/261.png b/web/yutian_top/captcha_pic/261.png new file mode 100644 index 0000000..a9a4d98 Binary files /dev/null and b/web/yutian_top/captcha_pic/261.png differ diff --git a/web/yutian_top/captcha_pic/262.png b/web/yutian_top/captcha_pic/262.png new file mode 100644 index 0000000..bf3f43f Binary files /dev/null and b/web/yutian_top/captcha_pic/262.png differ diff --git a/web/yutian_top/captcha_pic/263.png b/web/yutian_top/captcha_pic/263.png new file mode 100644 index 0000000..2b01ef4 Binary files /dev/null and b/web/yutian_top/captcha_pic/263.png differ diff --git a/web/yutian_top/captcha_pic/264.png b/web/yutian_top/captcha_pic/264.png new file mode 100644 index 0000000..42b1206 Binary files /dev/null and b/web/yutian_top/captcha_pic/264.png differ diff --git a/web/yutian_top/captcha_pic/265.png b/web/yutian_top/captcha_pic/265.png new file mode 100644 index 0000000..16639dd Binary files /dev/null and b/web/yutian_top/captcha_pic/265.png differ diff --git a/web/yutian_top/captcha_pic/266.png b/web/yutian_top/captcha_pic/266.png new file mode 100644 index 0000000..0dae2e8 Binary files /dev/null and b/web/yutian_top/captcha_pic/266.png differ diff --git a/web/yutian_top/captcha_pic/267.png b/web/yutian_top/captcha_pic/267.png new file mode 100644 index 0000000..cb199bf Binary files /dev/null and b/web/yutian_top/captcha_pic/267.png differ diff --git a/web/yutian_top/captcha_pic/268.png b/web/yutian_top/captcha_pic/268.png new file mode 100644 index 0000000..4eb7747 Binary files /dev/null and b/web/yutian_top/captcha_pic/268.png differ diff --git a/web/yutian_top/captcha_pic/269.png b/web/yutian_top/captcha_pic/269.png new file mode 100644 index 0000000..52cb938 Binary files /dev/null and b/web/yutian_top/captcha_pic/269.png differ diff --git a/web/yutian_top/captcha_pic/27.png b/web/yutian_top/captcha_pic/27.png new file mode 100644 index 0000000..e03e0c6 Binary files /dev/null and b/web/yutian_top/captcha_pic/27.png differ diff --git a/web/yutian_top/captcha_pic/270.png b/web/yutian_top/captcha_pic/270.png new file mode 100644 index 0000000..8a1e67d Binary files /dev/null and b/web/yutian_top/captcha_pic/270.png differ diff --git a/web/yutian_top/captcha_pic/271.png b/web/yutian_top/captcha_pic/271.png new file mode 100644 index 0000000..29f77de Binary files /dev/null and b/web/yutian_top/captcha_pic/271.png differ diff --git a/web/yutian_top/captcha_pic/272.png b/web/yutian_top/captcha_pic/272.png new file mode 100644 index 0000000..a7e4724 Binary files /dev/null and b/web/yutian_top/captcha_pic/272.png differ diff --git a/web/yutian_top/captcha_pic/273.png b/web/yutian_top/captcha_pic/273.png new file mode 100644 index 0000000..a785c69 Binary files /dev/null and b/web/yutian_top/captcha_pic/273.png differ diff --git a/web/yutian_top/captcha_pic/274.png b/web/yutian_top/captcha_pic/274.png new file mode 100644 index 0000000..13f34dd Binary files /dev/null and b/web/yutian_top/captcha_pic/274.png differ diff --git a/web/yutian_top/captcha_pic/275.png b/web/yutian_top/captcha_pic/275.png new file mode 100644 index 0000000..f158303 Binary files /dev/null and b/web/yutian_top/captcha_pic/275.png differ diff --git a/web/yutian_top/captcha_pic/276.png b/web/yutian_top/captcha_pic/276.png new file mode 100644 index 0000000..8273466 Binary files /dev/null and b/web/yutian_top/captcha_pic/276.png differ diff --git a/web/yutian_top/captcha_pic/277.png b/web/yutian_top/captcha_pic/277.png new file mode 100644 index 0000000..38956f1 Binary files /dev/null and b/web/yutian_top/captcha_pic/277.png differ diff --git a/web/yutian_top/captcha_pic/278.png b/web/yutian_top/captcha_pic/278.png new file mode 100644 index 0000000..3bf049f Binary files /dev/null and b/web/yutian_top/captcha_pic/278.png differ diff --git a/web/yutian_top/captcha_pic/279.png b/web/yutian_top/captcha_pic/279.png new file mode 100644 index 0000000..338c89a Binary files /dev/null and b/web/yutian_top/captcha_pic/279.png differ diff --git a/web/yutian_top/captcha_pic/28.png b/web/yutian_top/captcha_pic/28.png new file mode 100644 index 0000000..ed2f5bb Binary files /dev/null and b/web/yutian_top/captcha_pic/28.png differ diff --git a/web/yutian_top/captcha_pic/280.png b/web/yutian_top/captcha_pic/280.png new file mode 100644 index 0000000..2f939d6 Binary files /dev/null and b/web/yutian_top/captcha_pic/280.png differ diff --git a/web/yutian_top/captcha_pic/281.png b/web/yutian_top/captcha_pic/281.png new file mode 100644 index 0000000..58b35ef Binary files /dev/null and b/web/yutian_top/captcha_pic/281.png differ diff --git a/web/yutian_top/captcha_pic/282.png b/web/yutian_top/captcha_pic/282.png new file mode 100644 index 0000000..ccebc35 Binary files /dev/null and b/web/yutian_top/captcha_pic/282.png differ diff --git a/web/yutian_top/captcha_pic/283.png b/web/yutian_top/captcha_pic/283.png new file mode 100644 index 0000000..bc938d6 Binary files /dev/null and b/web/yutian_top/captcha_pic/283.png differ diff --git a/web/yutian_top/captcha_pic/284.png b/web/yutian_top/captcha_pic/284.png new file mode 100644 index 0000000..91395b0 Binary files /dev/null and b/web/yutian_top/captcha_pic/284.png differ diff --git a/web/yutian_top/captcha_pic/285.png b/web/yutian_top/captcha_pic/285.png new file mode 100644 index 0000000..f50980b Binary files /dev/null and b/web/yutian_top/captcha_pic/285.png differ diff --git a/web/yutian_top/captcha_pic/286.png b/web/yutian_top/captcha_pic/286.png new file mode 100644 index 0000000..6799399 Binary files /dev/null and b/web/yutian_top/captcha_pic/286.png differ diff --git a/web/yutian_top/captcha_pic/287.png b/web/yutian_top/captcha_pic/287.png new file mode 100644 index 0000000..ef3f313 Binary files /dev/null and b/web/yutian_top/captcha_pic/287.png differ diff --git a/web/yutian_top/captcha_pic/288.png b/web/yutian_top/captcha_pic/288.png new file mode 100644 index 0000000..370bd3d Binary files /dev/null and b/web/yutian_top/captcha_pic/288.png differ diff --git a/web/yutian_top/captcha_pic/289.png b/web/yutian_top/captcha_pic/289.png new file mode 100644 index 0000000..0d4df03 Binary files /dev/null and b/web/yutian_top/captcha_pic/289.png differ diff --git a/web/yutian_top/captcha_pic/29.png b/web/yutian_top/captcha_pic/29.png new file mode 100644 index 0000000..ddf3a71 Binary files /dev/null and b/web/yutian_top/captcha_pic/29.png differ diff --git a/web/yutian_top/captcha_pic/290.png b/web/yutian_top/captcha_pic/290.png new file mode 100644 index 0000000..cb9e0af Binary files /dev/null and b/web/yutian_top/captcha_pic/290.png differ diff --git a/web/yutian_top/captcha_pic/291.png b/web/yutian_top/captcha_pic/291.png new file mode 100644 index 0000000..26afc4d Binary files /dev/null and b/web/yutian_top/captcha_pic/291.png differ diff --git a/web/yutian_top/captcha_pic/292.png b/web/yutian_top/captcha_pic/292.png new file mode 100644 index 0000000..27a471f Binary files /dev/null and b/web/yutian_top/captcha_pic/292.png differ diff --git a/web/yutian_top/captcha_pic/293.png b/web/yutian_top/captcha_pic/293.png new file mode 100644 index 0000000..f33009a Binary files /dev/null and b/web/yutian_top/captcha_pic/293.png differ diff --git a/web/yutian_top/captcha_pic/294.png b/web/yutian_top/captcha_pic/294.png new file mode 100644 index 0000000..a2b20bc Binary files /dev/null and b/web/yutian_top/captcha_pic/294.png differ diff --git a/web/yutian_top/captcha_pic/295.png b/web/yutian_top/captcha_pic/295.png new file mode 100644 index 0000000..d9ffa30 Binary files /dev/null and b/web/yutian_top/captcha_pic/295.png differ diff --git a/web/yutian_top/captcha_pic/296.png b/web/yutian_top/captcha_pic/296.png new file mode 100644 index 0000000..07f0519 Binary files /dev/null and b/web/yutian_top/captcha_pic/296.png differ diff --git a/web/yutian_top/captcha_pic/297.png b/web/yutian_top/captcha_pic/297.png new file mode 100644 index 0000000..f452e22 Binary files /dev/null and b/web/yutian_top/captcha_pic/297.png differ diff --git a/web/yutian_top/captcha_pic/298.png b/web/yutian_top/captcha_pic/298.png new file mode 100644 index 0000000..274d583 Binary files /dev/null and b/web/yutian_top/captcha_pic/298.png differ diff --git a/web/yutian_top/captcha_pic/299.png b/web/yutian_top/captcha_pic/299.png new file mode 100644 index 0000000..29e41cf Binary files /dev/null and b/web/yutian_top/captcha_pic/299.png differ diff --git a/web/yutian_top/captcha_pic/3.png b/web/yutian_top/captcha_pic/3.png new file mode 100644 index 0000000..3c0fa76 Binary files /dev/null and b/web/yutian_top/captcha_pic/3.png differ diff --git a/web/yutian_top/captcha_pic/30.png b/web/yutian_top/captcha_pic/30.png new file mode 100644 index 0000000..fe7b92b Binary files /dev/null and b/web/yutian_top/captcha_pic/30.png differ diff --git a/web/yutian_top/captcha_pic/300.png b/web/yutian_top/captcha_pic/300.png new file mode 100644 index 0000000..352a163 Binary files /dev/null and b/web/yutian_top/captcha_pic/300.png differ diff --git a/web/yutian_top/captcha_pic/301.png b/web/yutian_top/captcha_pic/301.png new file mode 100644 index 0000000..4ee786e Binary files /dev/null and b/web/yutian_top/captcha_pic/301.png differ diff --git a/web/yutian_top/captcha_pic/302.png b/web/yutian_top/captcha_pic/302.png new file mode 100644 index 0000000..0219132 Binary files /dev/null and b/web/yutian_top/captcha_pic/302.png differ diff --git a/web/yutian_top/captcha_pic/303.png b/web/yutian_top/captcha_pic/303.png new file mode 100644 index 0000000..478950a Binary files /dev/null and b/web/yutian_top/captcha_pic/303.png differ diff --git a/web/yutian_top/captcha_pic/304.png b/web/yutian_top/captcha_pic/304.png new file mode 100644 index 0000000..f3b482d Binary files /dev/null and b/web/yutian_top/captcha_pic/304.png differ diff --git a/web/yutian_top/captcha_pic/305.png b/web/yutian_top/captcha_pic/305.png new file mode 100644 index 0000000..794ffe2 Binary files /dev/null and b/web/yutian_top/captcha_pic/305.png differ diff --git a/web/yutian_top/captcha_pic/306.png b/web/yutian_top/captcha_pic/306.png new file mode 100644 index 0000000..1037e1b Binary files /dev/null and b/web/yutian_top/captcha_pic/306.png differ diff --git a/web/yutian_top/captcha_pic/307.png b/web/yutian_top/captcha_pic/307.png new file mode 100644 index 0000000..dbd1842 Binary files /dev/null and b/web/yutian_top/captcha_pic/307.png differ diff --git a/web/yutian_top/captcha_pic/308.png b/web/yutian_top/captcha_pic/308.png new file mode 100644 index 0000000..3ad28e8 Binary files /dev/null and b/web/yutian_top/captcha_pic/308.png differ diff --git a/web/yutian_top/captcha_pic/309.png b/web/yutian_top/captcha_pic/309.png new file mode 100644 index 0000000..3a7647c Binary files /dev/null and b/web/yutian_top/captcha_pic/309.png differ diff --git a/web/yutian_top/captcha_pic/31.png b/web/yutian_top/captcha_pic/31.png new file mode 100644 index 0000000..2c58c3a Binary files /dev/null and b/web/yutian_top/captcha_pic/31.png differ diff --git a/web/yutian_top/captcha_pic/310.png b/web/yutian_top/captcha_pic/310.png new file mode 100644 index 0000000..bdbf5d1 Binary files /dev/null and b/web/yutian_top/captcha_pic/310.png differ diff --git a/web/yutian_top/captcha_pic/311.png b/web/yutian_top/captcha_pic/311.png new file mode 100644 index 0000000..fcfb94e Binary files /dev/null and b/web/yutian_top/captcha_pic/311.png differ diff --git a/web/yutian_top/captcha_pic/312.png b/web/yutian_top/captcha_pic/312.png new file mode 100644 index 0000000..25b93bc Binary files /dev/null and b/web/yutian_top/captcha_pic/312.png differ diff --git a/web/yutian_top/captcha_pic/313.png b/web/yutian_top/captcha_pic/313.png new file mode 100644 index 0000000..204e892 Binary files /dev/null and b/web/yutian_top/captcha_pic/313.png differ diff --git a/web/yutian_top/captcha_pic/314.png b/web/yutian_top/captcha_pic/314.png new file mode 100644 index 0000000..0c102d6 Binary files /dev/null and b/web/yutian_top/captcha_pic/314.png differ diff --git a/web/yutian_top/captcha_pic/315.png b/web/yutian_top/captcha_pic/315.png new file mode 100644 index 0000000..0de288e Binary files /dev/null and b/web/yutian_top/captcha_pic/315.png differ diff --git a/web/yutian_top/captcha_pic/316.png b/web/yutian_top/captcha_pic/316.png new file mode 100644 index 0000000..c28eef9 Binary files /dev/null and b/web/yutian_top/captcha_pic/316.png differ diff --git a/web/yutian_top/captcha_pic/317.png b/web/yutian_top/captcha_pic/317.png new file mode 100644 index 0000000..f74d057 Binary files /dev/null and b/web/yutian_top/captcha_pic/317.png differ diff --git a/web/yutian_top/captcha_pic/318.png b/web/yutian_top/captcha_pic/318.png new file mode 100644 index 0000000..6b590fd Binary files /dev/null and b/web/yutian_top/captcha_pic/318.png differ diff --git a/web/yutian_top/captcha_pic/319.png b/web/yutian_top/captcha_pic/319.png new file mode 100644 index 0000000..07ca329 Binary files /dev/null and b/web/yutian_top/captcha_pic/319.png differ diff --git a/web/yutian_top/captcha_pic/32.png b/web/yutian_top/captcha_pic/32.png new file mode 100644 index 0000000..587535e Binary files /dev/null and b/web/yutian_top/captcha_pic/32.png differ diff --git a/web/yutian_top/captcha_pic/320.png b/web/yutian_top/captcha_pic/320.png new file mode 100644 index 0000000..b9ff454 Binary files /dev/null and b/web/yutian_top/captcha_pic/320.png differ diff --git a/web/yutian_top/captcha_pic/321.png b/web/yutian_top/captcha_pic/321.png new file mode 100644 index 0000000..5f909d8 Binary files /dev/null and b/web/yutian_top/captcha_pic/321.png differ diff --git a/web/yutian_top/captcha_pic/322.png b/web/yutian_top/captcha_pic/322.png new file mode 100644 index 0000000..fa3e1e6 Binary files /dev/null and b/web/yutian_top/captcha_pic/322.png differ diff --git a/web/yutian_top/captcha_pic/323.png b/web/yutian_top/captcha_pic/323.png new file mode 100644 index 0000000..460f3f0 Binary files /dev/null and b/web/yutian_top/captcha_pic/323.png differ diff --git a/web/yutian_top/captcha_pic/324.png b/web/yutian_top/captcha_pic/324.png new file mode 100644 index 0000000..6126008 Binary files /dev/null and b/web/yutian_top/captcha_pic/324.png differ diff --git a/web/yutian_top/captcha_pic/325.png b/web/yutian_top/captcha_pic/325.png new file mode 100644 index 0000000..df1d2ee Binary files /dev/null and b/web/yutian_top/captcha_pic/325.png differ diff --git a/web/yutian_top/captcha_pic/326.png b/web/yutian_top/captcha_pic/326.png new file mode 100644 index 0000000..e62b011 Binary files /dev/null and b/web/yutian_top/captcha_pic/326.png differ diff --git a/web/yutian_top/captcha_pic/327.png b/web/yutian_top/captcha_pic/327.png new file mode 100644 index 0000000..d780270 Binary files /dev/null and b/web/yutian_top/captcha_pic/327.png differ diff --git a/web/yutian_top/captcha_pic/328.png b/web/yutian_top/captcha_pic/328.png new file mode 100644 index 0000000..ad4682d Binary files /dev/null and b/web/yutian_top/captcha_pic/328.png differ diff --git a/web/yutian_top/captcha_pic/329.png b/web/yutian_top/captcha_pic/329.png new file mode 100644 index 0000000..d063146 Binary files /dev/null and b/web/yutian_top/captcha_pic/329.png differ diff --git a/web/yutian_top/captcha_pic/33.png b/web/yutian_top/captcha_pic/33.png new file mode 100644 index 0000000..9b3a57d Binary files /dev/null and b/web/yutian_top/captcha_pic/33.png differ diff --git a/web/yutian_top/captcha_pic/330.png b/web/yutian_top/captcha_pic/330.png new file mode 100644 index 0000000..a064a52 Binary files /dev/null and b/web/yutian_top/captcha_pic/330.png differ diff --git a/web/yutian_top/captcha_pic/331.png b/web/yutian_top/captcha_pic/331.png new file mode 100644 index 0000000..4b0d7e1 Binary files /dev/null and b/web/yutian_top/captcha_pic/331.png differ diff --git a/web/yutian_top/captcha_pic/332.png b/web/yutian_top/captcha_pic/332.png new file mode 100644 index 0000000..e097c41 Binary files /dev/null and b/web/yutian_top/captcha_pic/332.png differ diff --git a/web/yutian_top/captcha_pic/333.png b/web/yutian_top/captcha_pic/333.png new file mode 100644 index 0000000..34671ff Binary files /dev/null and b/web/yutian_top/captcha_pic/333.png differ diff --git a/web/yutian_top/captcha_pic/334.png b/web/yutian_top/captcha_pic/334.png new file mode 100644 index 0000000..34dd634 Binary files /dev/null and b/web/yutian_top/captcha_pic/334.png differ diff --git a/web/yutian_top/captcha_pic/335.png b/web/yutian_top/captcha_pic/335.png new file mode 100644 index 0000000..8d9f353 Binary files /dev/null and b/web/yutian_top/captcha_pic/335.png differ diff --git a/web/yutian_top/captcha_pic/336.png b/web/yutian_top/captcha_pic/336.png new file mode 100644 index 0000000..52cc090 Binary files /dev/null and b/web/yutian_top/captcha_pic/336.png differ diff --git a/web/yutian_top/captcha_pic/337.png b/web/yutian_top/captcha_pic/337.png new file mode 100644 index 0000000..8c0db96 Binary files /dev/null and b/web/yutian_top/captcha_pic/337.png differ diff --git a/web/yutian_top/captcha_pic/338.png b/web/yutian_top/captcha_pic/338.png new file mode 100644 index 0000000..d2e42d3 Binary files /dev/null and b/web/yutian_top/captcha_pic/338.png differ diff --git a/web/yutian_top/captcha_pic/339.png b/web/yutian_top/captcha_pic/339.png new file mode 100644 index 0000000..e429f1f Binary files /dev/null and b/web/yutian_top/captcha_pic/339.png differ diff --git a/web/yutian_top/captcha_pic/34.png b/web/yutian_top/captcha_pic/34.png new file mode 100644 index 0000000..54517ba Binary files /dev/null and b/web/yutian_top/captcha_pic/34.png differ diff --git a/web/yutian_top/captcha_pic/340.png b/web/yutian_top/captcha_pic/340.png new file mode 100644 index 0000000..aeeb593 Binary files /dev/null and b/web/yutian_top/captcha_pic/340.png differ diff --git a/web/yutian_top/captcha_pic/341.png b/web/yutian_top/captcha_pic/341.png new file mode 100644 index 0000000..79f7d62 Binary files /dev/null and b/web/yutian_top/captcha_pic/341.png differ diff --git a/web/yutian_top/captcha_pic/342.png b/web/yutian_top/captcha_pic/342.png new file mode 100644 index 0000000..02ccab8 Binary files /dev/null and b/web/yutian_top/captcha_pic/342.png differ diff --git a/web/yutian_top/captcha_pic/343.png b/web/yutian_top/captcha_pic/343.png new file mode 100644 index 0000000..46ffad5 Binary files /dev/null and b/web/yutian_top/captcha_pic/343.png differ diff --git a/web/yutian_top/captcha_pic/344.png b/web/yutian_top/captcha_pic/344.png new file mode 100644 index 0000000..030de81 Binary files /dev/null and b/web/yutian_top/captcha_pic/344.png differ diff --git a/web/yutian_top/captcha_pic/345.png b/web/yutian_top/captcha_pic/345.png new file mode 100644 index 0000000..9d02d16 Binary files /dev/null and b/web/yutian_top/captcha_pic/345.png differ diff --git a/web/yutian_top/captcha_pic/346.png b/web/yutian_top/captcha_pic/346.png new file mode 100644 index 0000000..d5510a8 Binary files /dev/null and b/web/yutian_top/captcha_pic/346.png differ diff --git a/web/yutian_top/captcha_pic/347.png b/web/yutian_top/captcha_pic/347.png new file mode 100644 index 0000000..fd9ca91 Binary files /dev/null and b/web/yutian_top/captcha_pic/347.png differ diff --git a/web/yutian_top/captcha_pic/348.png b/web/yutian_top/captcha_pic/348.png new file mode 100644 index 0000000..788dff3 Binary files /dev/null and b/web/yutian_top/captcha_pic/348.png differ diff --git a/web/yutian_top/captcha_pic/349.png b/web/yutian_top/captcha_pic/349.png new file mode 100644 index 0000000..b8d8787 Binary files /dev/null and b/web/yutian_top/captcha_pic/349.png differ diff --git a/web/yutian_top/captcha_pic/35.png b/web/yutian_top/captcha_pic/35.png new file mode 100644 index 0000000..6aead67 Binary files /dev/null and b/web/yutian_top/captcha_pic/35.png differ diff --git a/web/yutian_top/captcha_pic/350.png b/web/yutian_top/captcha_pic/350.png new file mode 100644 index 0000000..cd6d51d Binary files /dev/null and b/web/yutian_top/captcha_pic/350.png differ diff --git a/web/yutian_top/captcha_pic/351.png b/web/yutian_top/captcha_pic/351.png new file mode 100644 index 0000000..a965bea Binary files /dev/null and b/web/yutian_top/captcha_pic/351.png differ diff --git a/web/yutian_top/captcha_pic/352.png b/web/yutian_top/captcha_pic/352.png new file mode 100644 index 0000000..7aecb59 Binary files /dev/null and b/web/yutian_top/captcha_pic/352.png differ diff --git a/web/yutian_top/captcha_pic/353.png b/web/yutian_top/captcha_pic/353.png new file mode 100644 index 0000000..6aa002b Binary files /dev/null and b/web/yutian_top/captcha_pic/353.png differ diff --git a/web/yutian_top/captcha_pic/354.png b/web/yutian_top/captcha_pic/354.png new file mode 100644 index 0000000..cc1c3e6 Binary files /dev/null and b/web/yutian_top/captcha_pic/354.png differ diff --git a/web/yutian_top/captcha_pic/355.png b/web/yutian_top/captcha_pic/355.png new file mode 100644 index 0000000..c3b4805 Binary files /dev/null and b/web/yutian_top/captcha_pic/355.png differ diff --git a/web/yutian_top/captcha_pic/356.png b/web/yutian_top/captcha_pic/356.png new file mode 100644 index 0000000..1cf0057 Binary files /dev/null and b/web/yutian_top/captcha_pic/356.png differ diff --git a/web/yutian_top/captcha_pic/357.png b/web/yutian_top/captcha_pic/357.png new file mode 100644 index 0000000..3cb8400 Binary files /dev/null and b/web/yutian_top/captcha_pic/357.png differ diff --git a/web/yutian_top/captcha_pic/358.png b/web/yutian_top/captcha_pic/358.png new file mode 100644 index 0000000..84f8c8a Binary files /dev/null and b/web/yutian_top/captcha_pic/358.png differ diff --git a/web/yutian_top/captcha_pic/359.png b/web/yutian_top/captcha_pic/359.png new file mode 100644 index 0000000..5fe845f Binary files /dev/null and b/web/yutian_top/captcha_pic/359.png differ diff --git a/web/yutian_top/captcha_pic/36.png b/web/yutian_top/captcha_pic/36.png new file mode 100644 index 0000000..f834726 Binary files /dev/null and b/web/yutian_top/captcha_pic/36.png differ diff --git a/web/yutian_top/captcha_pic/360.png b/web/yutian_top/captcha_pic/360.png new file mode 100644 index 0000000..a3f0f38 Binary files /dev/null and b/web/yutian_top/captcha_pic/360.png differ diff --git a/web/yutian_top/captcha_pic/361.png b/web/yutian_top/captcha_pic/361.png new file mode 100644 index 0000000..7a0a460 Binary files /dev/null and b/web/yutian_top/captcha_pic/361.png differ diff --git a/web/yutian_top/captcha_pic/362.png b/web/yutian_top/captcha_pic/362.png new file mode 100644 index 0000000..d711f77 Binary files /dev/null and b/web/yutian_top/captcha_pic/362.png differ diff --git a/web/yutian_top/captcha_pic/363.png b/web/yutian_top/captcha_pic/363.png new file mode 100644 index 0000000..5d67a18 Binary files /dev/null and b/web/yutian_top/captcha_pic/363.png differ diff --git a/web/yutian_top/captcha_pic/364.png b/web/yutian_top/captcha_pic/364.png new file mode 100644 index 0000000..f2cbb6b Binary files /dev/null and b/web/yutian_top/captcha_pic/364.png differ diff --git a/web/yutian_top/captcha_pic/365.png b/web/yutian_top/captcha_pic/365.png new file mode 100644 index 0000000..5fdd94b Binary files /dev/null and b/web/yutian_top/captcha_pic/365.png differ diff --git a/web/yutian_top/captcha_pic/366.png b/web/yutian_top/captcha_pic/366.png new file mode 100644 index 0000000..3dde93c Binary files /dev/null and b/web/yutian_top/captcha_pic/366.png differ diff --git a/web/yutian_top/captcha_pic/367.png b/web/yutian_top/captcha_pic/367.png new file mode 100644 index 0000000..d1545fb Binary files /dev/null and b/web/yutian_top/captcha_pic/367.png differ diff --git a/web/yutian_top/captcha_pic/368.png b/web/yutian_top/captcha_pic/368.png new file mode 100644 index 0000000..0e87102 Binary files /dev/null and b/web/yutian_top/captcha_pic/368.png differ diff --git a/web/yutian_top/captcha_pic/369.png b/web/yutian_top/captcha_pic/369.png new file mode 100644 index 0000000..7b1fa0c Binary files /dev/null and b/web/yutian_top/captcha_pic/369.png differ diff --git a/web/yutian_top/captcha_pic/37.png b/web/yutian_top/captcha_pic/37.png new file mode 100644 index 0000000..5aa8b7f Binary files /dev/null and b/web/yutian_top/captcha_pic/37.png differ diff --git a/web/yutian_top/captcha_pic/370.png b/web/yutian_top/captcha_pic/370.png new file mode 100644 index 0000000..bc8813b Binary files /dev/null and b/web/yutian_top/captcha_pic/370.png differ diff --git a/web/yutian_top/captcha_pic/371.png b/web/yutian_top/captcha_pic/371.png new file mode 100644 index 0000000..b895ac8 Binary files /dev/null and b/web/yutian_top/captcha_pic/371.png differ diff --git a/web/yutian_top/captcha_pic/372.png b/web/yutian_top/captcha_pic/372.png new file mode 100644 index 0000000..d8c7293 Binary files /dev/null and b/web/yutian_top/captcha_pic/372.png differ diff --git a/web/yutian_top/captcha_pic/373.png b/web/yutian_top/captcha_pic/373.png new file mode 100644 index 0000000..cea0ff1 Binary files /dev/null and b/web/yutian_top/captcha_pic/373.png differ diff --git a/web/yutian_top/captcha_pic/374.png b/web/yutian_top/captcha_pic/374.png new file mode 100644 index 0000000..9720493 Binary files /dev/null and b/web/yutian_top/captcha_pic/374.png differ diff --git a/web/yutian_top/captcha_pic/375.png b/web/yutian_top/captcha_pic/375.png new file mode 100644 index 0000000..c926afe Binary files /dev/null and b/web/yutian_top/captcha_pic/375.png differ diff --git a/web/yutian_top/captcha_pic/376.png b/web/yutian_top/captcha_pic/376.png new file mode 100644 index 0000000..f7b80d4 Binary files /dev/null and b/web/yutian_top/captcha_pic/376.png differ diff --git a/web/yutian_top/captcha_pic/377.png b/web/yutian_top/captcha_pic/377.png new file mode 100644 index 0000000..2ccf742 Binary files /dev/null and b/web/yutian_top/captcha_pic/377.png differ diff --git a/web/yutian_top/captcha_pic/378.png b/web/yutian_top/captcha_pic/378.png new file mode 100644 index 0000000..6918607 Binary files /dev/null and b/web/yutian_top/captcha_pic/378.png differ diff --git a/web/yutian_top/captcha_pic/379.png b/web/yutian_top/captcha_pic/379.png new file mode 100644 index 0000000..a7da7eb Binary files /dev/null and b/web/yutian_top/captcha_pic/379.png differ diff --git a/web/yutian_top/captcha_pic/38.png b/web/yutian_top/captcha_pic/38.png new file mode 100644 index 0000000..faa8d9b Binary files /dev/null and b/web/yutian_top/captcha_pic/38.png differ diff --git a/web/yutian_top/captcha_pic/380.png b/web/yutian_top/captcha_pic/380.png new file mode 100644 index 0000000..9f04c6e Binary files /dev/null and b/web/yutian_top/captcha_pic/380.png differ diff --git a/web/yutian_top/captcha_pic/381.png b/web/yutian_top/captcha_pic/381.png new file mode 100644 index 0000000..7fcfa77 Binary files /dev/null and b/web/yutian_top/captcha_pic/381.png differ diff --git a/web/yutian_top/captcha_pic/382.png b/web/yutian_top/captcha_pic/382.png new file mode 100644 index 0000000..aa6b428 Binary files /dev/null and b/web/yutian_top/captcha_pic/382.png differ diff --git a/web/yutian_top/captcha_pic/383.png b/web/yutian_top/captcha_pic/383.png new file mode 100644 index 0000000..7592052 Binary files /dev/null and b/web/yutian_top/captcha_pic/383.png differ diff --git a/web/yutian_top/captcha_pic/384.png b/web/yutian_top/captcha_pic/384.png new file mode 100644 index 0000000..564155b Binary files /dev/null and b/web/yutian_top/captcha_pic/384.png differ diff --git a/web/yutian_top/captcha_pic/385.png b/web/yutian_top/captcha_pic/385.png new file mode 100644 index 0000000..fc168f1 Binary files /dev/null and b/web/yutian_top/captcha_pic/385.png differ diff --git a/web/yutian_top/captcha_pic/386.png b/web/yutian_top/captcha_pic/386.png new file mode 100644 index 0000000..077a487 Binary files /dev/null and b/web/yutian_top/captcha_pic/386.png differ diff --git a/web/yutian_top/captcha_pic/387.png b/web/yutian_top/captcha_pic/387.png new file mode 100644 index 0000000..b76ed53 Binary files /dev/null and b/web/yutian_top/captcha_pic/387.png differ diff --git a/web/yutian_top/captcha_pic/388.png b/web/yutian_top/captcha_pic/388.png new file mode 100644 index 0000000..68d9998 Binary files /dev/null and b/web/yutian_top/captcha_pic/388.png differ diff --git a/web/yutian_top/captcha_pic/389.png b/web/yutian_top/captcha_pic/389.png new file mode 100644 index 0000000..fb5c610 Binary files /dev/null and b/web/yutian_top/captcha_pic/389.png differ diff --git a/web/yutian_top/captcha_pic/39.png b/web/yutian_top/captcha_pic/39.png new file mode 100644 index 0000000..70a6648 Binary files /dev/null and b/web/yutian_top/captcha_pic/39.png differ diff --git a/web/yutian_top/captcha_pic/390.png b/web/yutian_top/captcha_pic/390.png new file mode 100644 index 0000000..3e77d30 Binary files /dev/null and b/web/yutian_top/captcha_pic/390.png differ diff --git a/web/yutian_top/captcha_pic/391.png b/web/yutian_top/captcha_pic/391.png new file mode 100644 index 0000000..fffe747 Binary files /dev/null and b/web/yutian_top/captcha_pic/391.png differ diff --git a/web/yutian_top/captcha_pic/392.png b/web/yutian_top/captcha_pic/392.png new file mode 100644 index 0000000..2fda45c Binary files /dev/null and b/web/yutian_top/captcha_pic/392.png differ diff --git a/web/yutian_top/captcha_pic/393.png b/web/yutian_top/captcha_pic/393.png new file mode 100644 index 0000000..ddaced0 Binary files /dev/null and b/web/yutian_top/captcha_pic/393.png differ diff --git a/web/yutian_top/captcha_pic/394.png b/web/yutian_top/captcha_pic/394.png new file mode 100644 index 0000000..3f76a18 Binary files /dev/null and b/web/yutian_top/captcha_pic/394.png differ diff --git a/web/yutian_top/captcha_pic/395.png b/web/yutian_top/captcha_pic/395.png new file mode 100644 index 0000000..c724ba9 Binary files /dev/null and b/web/yutian_top/captcha_pic/395.png differ diff --git a/web/yutian_top/captcha_pic/396.png b/web/yutian_top/captcha_pic/396.png new file mode 100644 index 0000000..0f5c77b Binary files /dev/null and b/web/yutian_top/captcha_pic/396.png differ diff --git a/web/yutian_top/captcha_pic/397.png b/web/yutian_top/captcha_pic/397.png new file mode 100644 index 0000000..b04f1cc Binary files /dev/null and b/web/yutian_top/captcha_pic/397.png differ diff --git a/web/yutian_top/captcha_pic/398.png b/web/yutian_top/captcha_pic/398.png new file mode 100644 index 0000000..c523550 Binary files /dev/null and b/web/yutian_top/captcha_pic/398.png differ diff --git a/web/yutian_top/captcha_pic/399.png b/web/yutian_top/captcha_pic/399.png new file mode 100644 index 0000000..09f6b8a Binary files /dev/null and b/web/yutian_top/captcha_pic/399.png differ diff --git a/web/yutian_top/captcha_pic/4.png b/web/yutian_top/captcha_pic/4.png new file mode 100644 index 0000000..a40f84b Binary files /dev/null and b/web/yutian_top/captcha_pic/4.png differ diff --git a/web/yutian_top/captcha_pic/40.png b/web/yutian_top/captcha_pic/40.png new file mode 100644 index 0000000..fb1a3b8 Binary files /dev/null and b/web/yutian_top/captcha_pic/40.png differ diff --git a/web/yutian_top/captcha_pic/400.png b/web/yutian_top/captcha_pic/400.png new file mode 100644 index 0000000..bf4bfd3 Binary files /dev/null and b/web/yutian_top/captcha_pic/400.png differ diff --git a/web/yutian_top/captcha_pic/401.png b/web/yutian_top/captcha_pic/401.png new file mode 100644 index 0000000..217661c Binary files /dev/null and b/web/yutian_top/captcha_pic/401.png differ diff --git a/web/yutian_top/captcha_pic/402.png b/web/yutian_top/captcha_pic/402.png new file mode 100644 index 0000000..8892af3 Binary files /dev/null and b/web/yutian_top/captcha_pic/402.png differ diff --git a/web/yutian_top/captcha_pic/403.png b/web/yutian_top/captcha_pic/403.png new file mode 100644 index 0000000..93e9cde Binary files /dev/null and b/web/yutian_top/captcha_pic/403.png differ diff --git a/web/yutian_top/captcha_pic/404.png b/web/yutian_top/captcha_pic/404.png new file mode 100644 index 0000000..7b335de Binary files /dev/null and b/web/yutian_top/captcha_pic/404.png differ diff --git a/web/yutian_top/captcha_pic/405.png b/web/yutian_top/captcha_pic/405.png new file mode 100644 index 0000000..6c1d78b Binary files /dev/null and b/web/yutian_top/captcha_pic/405.png differ diff --git a/web/yutian_top/captcha_pic/406.png b/web/yutian_top/captcha_pic/406.png new file mode 100644 index 0000000..b76ffcc Binary files /dev/null and b/web/yutian_top/captcha_pic/406.png differ diff --git a/web/yutian_top/captcha_pic/407.png b/web/yutian_top/captcha_pic/407.png new file mode 100644 index 0000000..a27c97c Binary files /dev/null and b/web/yutian_top/captcha_pic/407.png differ diff --git a/web/yutian_top/captcha_pic/408.png b/web/yutian_top/captcha_pic/408.png new file mode 100644 index 0000000..e530c86 Binary files /dev/null and b/web/yutian_top/captcha_pic/408.png differ diff --git a/web/yutian_top/captcha_pic/409.png b/web/yutian_top/captcha_pic/409.png new file mode 100644 index 0000000..46949e4 Binary files /dev/null and b/web/yutian_top/captcha_pic/409.png differ diff --git a/web/yutian_top/captcha_pic/41.png b/web/yutian_top/captcha_pic/41.png new file mode 100644 index 0000000..af0888d Binary files /dev/null and b/web/yutian_top/captcha_pic/41.png differ diff --git a/web/yutian_top/captcha_pic/410.png b/web/yutian_top/captcha_pic/410.png new file mode 100644 index 0000000..e0dab3d Binary files /dev/null and b/web/yutian_top/captcha_pic/410.png differ diff --git a/web/yutian_top/captcha_pic/411.png b/web/yutian_top/captcha_pic/411.png new file mode 100644 index 0000000..e10222c Binary files /dev/null and b/web/yutian_top/captcha_pic/411.png differ diff --git a/web/yutian_top/captcha_pic/412.png b/web/yutian_top/captcha_pic/412.png new file mode 100644 index 0000000..a649f3a Binary files /dev/null and b/web/yutian_top/captcha_pic/412.png differ diff --git a/web/yutian_top/captcha_pic/413.png b/web/yutian_top/captcha_pic/413.png new file mode 100644 index 0000000..db1147b Binary files /dev/null and b/web/yutian_top/captcha_pic/413.png differ diff --git a/web/yutian_top/captcha_pic/414.png b/web/yutian_top/captcha_pic/414.png new file mode 100644 index 0000000..01b97b7 Binary files /dev/null and b/web/yutian_top/captcha_pic/414.png differ diff --git a/web/yutian_top/captcha_pic/415.png b/web/yutian_top/captcha_pic/415.png new file mode 100644 index 0000000..802c0c3 Binary files /dev/null and b/web/yutian_top/captcha_pic/415.png differ diff --git a/web/yutian_top/captcha_pic/416.png b/web/yutian_top/captcha_pic/416.png new file mode 100644 index 0000000..9233ded Binary files /dev/null and b/web/yutian_top/captcha_pic/416.png differ diff --git a/web/yutian_top/captcha_pic/417.png b/web/yutian_top/captcha_pic/417.png new file mode 100644 index 0000000..8a23b58 Binary files /dev/null and b/web/yutian_top/captcha_pic/417.png differ diff --git a/web/yutian_top/captcha_pic/418.png b/web/yutian_top/captcha_pic/418.png new file mode 100644 index 0000000..e0730b2 Binary files /dev/null and b/web/yutian_top/captcha_pic/418.png differ diff --git a/web/yutian_top/captcha_pic/419.png b/web/yutian_top/captcha_pic/419.png new file mode 100644 index 0000000..76459bd Binary files /dev/null and b/web/yutian_top/captcha_pic/419.png differ diff --git a/web/yutian_top/captcha_pic/42.png b/web/yutian_top/captcha_pic/42.png new file mode 100644 index 0000000..750ae61 Binary files /dev/null and b/web/yutian_top/captcha_pic/42.png differ diff --git a/web/yutian_top/captcha_pic/420.png b/web/yutian_top/captcha_pic/420.png new file mode 100644 index 0000000..49c9db2 Binary files /dev/null and b/web/yutian_top/captcha_pic/420.png differ diff --git a/web/yutian_top/captcha_pic/421.png b/web/yutian_top/captcha_pic/421.png new file mode 100644 index 0000000..02cdc16 Binary files /dev/null and b/web/yutian_top/captcha_pic/421.png differ diff --git a/web/yutian_top/captcha_pic/422.png b/web/yutian_top/captcha_pic/422.png new file mode 100644 index 0000000..1d1b138 Binary files /dev/null and b/web/yutian_top/captcha_pic/422.png differ diff --git a/web/yutian_top/captcha_pic/423.png b/web/yutian_top/captcha_pic/423.png new file mode 100644 index 0000000..0e4de5f Binary files /dev/null and b/web/yutian_top/captcha_pic/423.png differ diff --git a/web/yutian_top/captcha_pic/424.png b/web/yutian_top/captcha_pic/424.png new file mode 100644 index 0000000..86f102c Binary files /dev/null and b/web/yutian_top/captcha_pic/424.png differ diff --git a/web/yutian_top/captcha_pic/425.png b/web/yutian_top/captcha_pic/425.png new file mode 100644 index 0000000..6ab059d Binary files /dev/null and b/web/yutian_top/captcha_pic/425.png differ diff --git a/web/yutian_top/captcha_pic/426.png b/web/yutian_top/captcha_pic/426.png new file mode 100644 index 0000000..72d4dde Binary files /dev/null and b/web/yutian_top/captcha_pic/426.png differ diff --git a/web/yutian_top/captcha_pic/427.png b/web/yutian_top/captcha_pic/427.png new file mode 100644 index 0000000..a2579a0 Binary files /dev/null and b/web/yutian_top/captcha_pic/427.png differ diff --git a/web/yutian_top/captcha_pic/428.png b/web/yutian_top/captcha_pic/428.png new file mode 100644 index 0000000..44e2aaa Binary files /dev/null and b/web/yutian_top/captcha_pic/428.png differ diff --git a/web/yutian_top/captcha_pic/429.png b/web/yutian_top/captcha_pic/429.png new file mode 100644 index 0000000..a2a3ebd Binary files /dev/null and b/web/yutian_top/captcha_pic/429.png differ diff --git a/web/yutian_top/captcha_pic/43.png b/web/yutian_top/captcha_pic/43.png new file mode 100644 index 0000000..af95c1e Binary files /dev/null and b/web/yutian_top/captcha_pic/43.png differ diff --git a/web/yutian_top/captcha_pic/430.png b/web/yutian_top/captcha_pic/430.png new file mode 100644 index 0000000..4000cfe Binary files /dev/null and b/web/yutian_top/captcha_pic/430.png differ diff --git a/web/yutian_top/captcha_pic/431.png b/web/yutian_top/captcha_pic/431.png new file mode 100644 index 0000000..85dc7ae Binary files /dev/null and b/web/yutian_top/captcha_pic/431.png differ diff --git a/web/yutian_top/captcha_pic/432.png b/web/yutian_top/captcha_pic/432.png new file mode 100644 index 0000000..caed605 Binary files /dev/null and b/web/yutian_top/captcha_pic/432.png differ diff --git a/web/yutian_top/captcha_pic/433.png b/web/yutian_top/captcha_pic/433.png new file mode 100644 index 0000000..3c8c455 Binary files /dev/null and b/web/yutian_top/captcha_pic/433.png differ diff --git a/web/yutian_top/captcha_pic/434.png b/web/yutian_top/captcha_pic/434.png new file mode 100644 index 0000000..3cb06ac Binary files /dev/null and b/web/yutian_top/captcha_pic/434.png differ diff --git a/web/yutian_top/captcha_pic/435.png b/web/yutian_top/captcha_pic/435.png new file mode 100644 index 0000000..ac19743 Binary files /dev/null and b/web/yutian_top/captcha_pic/435.png differ diff --git a/web/yutian_top/captcha_pic/436.png b/web/yutian_top/captcha_pic/436.png new file mode 100644 index 0000000..c8e651a Binary files /dev/null and b/web/yutian_top/captcha_pic/436.png differ diff --git a/web/yutian_top/captcha_pic/437.png b/web/yutian_top/captcha_pic/437.png new file mode 100644 index 0000000..a251289 Binary files /dev/null and b/web/yutian_top/captcha_pic/437.png differ diff --git a/web/yutian_top/captcha_pic/438.png b/web/yutian_top/captcha_pic/438.png new file mode 100644 index 0000000..ddefd86 Binary files /dev/null and b/web/yutian_top/captcha_pic/438.png differ diff --git a/web/yutian_top/captcha_pic/439.png b/web/yutian_top/captcha_pic/439.png new file mode 100644 index 0000000..e5d9fcd Binary files /dev/null and b/web/yutian_top/captcha_pic/439.png differ diff --git a/web/yutian_top/captcha_pic/44.png b/web/yutian_top/captcha_pic/44.png new file mode 100644 index 0000000..87a2292 Binary files /dev/null and b/web/yutian_top/captcha_pic/44.png differ diff --git a/web/yutian_top/captcha_pic/440.png b/web/yutian_top/captcha_pic/440.png new file mode 100644 index 0000000..e9c0fc4 Binary files /dev/null and b/web/yutian_top/captcha_pic/440.png differ diff --git a/web/yutian_top/captcha_pic/441.png b/web/yutian_top/captcha_pic/441.png new file mode 100644 index 0000000..227ab2c Binary files /dev/null and b/web/yutian_top/captcha_pic/441.png differ diff --git a/web/yutian_top/captcha_pic/442.png b/web/yutian_top/captcha_pic/442.png new file mode 100644 index 0000000..184b519 Binary files /dev/null and b/web/yutian_top/captcha_pic/442.png differ diff --git a/web/yutian_top/captcha_pic/443.png b/web/yutian_top/captcha_pic/443.png new file mode 100644 index 0000000..0d1e4e9 Binary files /dev/null and b/web/yutian_top/captcha_pic/443.png differ diff --git a/web/yutian_top/captcha_pic/444.png b/web/yutian_top/captcha_pic/444.png new file mode 100644 index 0000000..871e26f Binary files /dev/null and b/web/yutian_top/captcha_pic/444.png differ diff --git a/web/yutian_top/captcha_pic/445.png b/web/yutian_top/captcha_pic/445.png new file mode 100644 index 0000000..3a35769 Binary files /dev/null and b/web/yutian_top/captcha_pic/445.png differ diff --git a/web/yutian_top/captcha_pic/446.png b/web/yutian_top/captcha_pic/446.png new file mode 100644 index 0000000..21754b5 Binary files /dev/null and b/web/yutian_top/captcha_pic/446.png differ diff --git a/web/yutian_top/captcha_pic/447.png b/web/yutian_top/captcha_pic/447.png new file mode 100644 index 0000000..1f71229 Binary files /dev/null and b/web/yutian_top/captcha_pic/447.png differ diff --git a/web/yutian_top/captcha_pic/448.png b/web/yutian_top/captcha_pic/448.png new file mode 100644 index 0000000..29f949c Binary files /dev/null and b/web/yutian_top/captcha_pic/448.png differ diff --git a/web/yutian_top/captcha_pic/449.png b/web/yutian_top/captcha_pic/449.png new file mode 100644 index 0000000..6188c62 Binary files /dev/null and b/web/yutian_top/captcha_pic/449.png differ diff --git a/web/yutian_top/captcha_pic/45.png b/web/yutian_top/captcha_pic/45.png new file mode 100644 index 0000000..6928333 Binary files /dev/null and b/web/yutian_top/captcha_pic/45.png differ diff --git a/web/yutian_top/captcha_pic/450.png b/web/yutian_top/captcha_pic/450.png new file mode 100644 index 0000000..2e8439e Binary files /dev/null and b/web/yutian_top/captcha_pic/450.png differ diff --git a/web/yutian_top/captcha_pic/451.png b/web/yutian_top/captcha_pic/451.png new file mode 100644 index 0000000..4dc14cb Binary files /dev/null and b/web/yutian_top/captcha_pic/451.png differ diff --git a/web/yutian_top/captcha_pic/452.png b/web/yutian_top/captcha_pic/452.png new file mode 100644 index 0000000..eb60519 Binary files /dev/null and b/web/yutian_top/captcha_pic/452.png differ diff --git a/web/yutian_top/captcha_pic/453.png b/web/yutian_top/captcha_pic/453.png new file mode 100644 index 0000000..5aa3f7d Binary files /dev/null and b/web/yutian_top/captcha_pic/453.png differ diff --git a/web/yutian_top/captcha_pic/454.png b/web/yutian_top/captcha_pic/454.png new file mode 100644 index 0000000..75f0959 Binary files /dev/null and b/web/yutian_top/captcha_pic/454.png differ diff --git a/web/yutian_top/captcha_pic/455.png b/web/yutian_top/captcha_pic/455.png new file mode 100644 index 0000000..4ebb0e0 Binary files /dev/null and b/web/yutian_top/captcha_pic/455.png differ diff --git a/web/yutian_top/captcha_pic/456.png b/web/yutian_top/captcha_pic/456.png new file mode 100644 index 0000000..0ce281f Binary files /dev/null and b/web/yutian_top/captcha_pic/456.png differ diff --git a/web/yutian_top/captcha_pic/457.png b/web/yutian_top/captcha_pic/457.png new file mode 100644 index 0000000..403265f Binary files /dev/null and b/web/yutian_top/captcha_pic/457.png differ diff --git a/web/yutian_top/captcha_pic/458.png b/web/yutian_top/captcha_pic/458.png new file mode 100644 index 0000000..8e73411 Binary files /dev/null and b/web/yutian_top/captcha_pic/458.png differ diff --git a/web/yutian_top/captcha_pic/459.png b/web/yutian_top/captcha_pic/459.png new file mode 100644 index 0000000..f1be628 Binary files /dev/null and b/web/yutian_top/captcha_pic/459.png differ diff --git a/web/yutian_top/captcha_pic/46.png b/web/yutian_top/captcha_pic/46.png new file mode 100644 index 0000000..2ad9a12 Binary files /dev/null and b/web/yutian_top/captcha_pic/46.png differ diff --git a/web/yutian_top/captcha_pic/460.png b/web/yutian_top/captcha_pic/460.png new file mode 100644 index 0000000..96b2aea Binary files /dev/null and b/web/yutian_top/captcha_pic/460.png differ diff --git a/web/yutian_top/captcha_pic/461.png b/web/yutian_top/captcha_pic/461.png new file mode 100644 index 0000000..1a15bf6 Binary files /dev/null and b/web/yutian_top/captcha_pic/461.png differ diff --git a/web/yutian_top/captcha_pic/462.png b/web/yutian_top/captcha_pic/462.png new file mode 100644 index 0000000..735f99d Binary files /dev/null and b/web/yutian_top/captcha_pic/462.png differ diff --git a/web/yutian_top/captcha_pic/463.png b/web/yutian_top/captcha_pic/463.png new file mode 100644 index 0000000..271fc13 Binary files /dev/null and b/web/yutian_top/captcha_pic/463.png differ diff --git a/web/yutian_top/captcha_pic/464.png b/web/yutian_top/captcha_pic/464.png new file mode 100644 index 0000000..31be50e Binary files /dev/null and b/web/yutian_top/captcha_pic/464.png differ diff --git a/web/yutian_top/captcha_pic/465.png b/web/yutian_top/captcha_pic/465.png new file mode 100644 index 0000000..1e35b65 Binary files /dev/null and b/web/yutian_top/captcha_pic/465.png differ diff --git a/web/yutian_top/captcha_pic/466.png b/web/yutian_top/captcha_pic/466.png new file mode 100644 index 0000000..f3f684f Binary files /dev/null and b/web/yutian_top/captcha_pic/466.png differ diff --git a/web/yutian_top/captcha_pic/467.png b/web/yutian_top/captcha_pic/467.png new file mode 100644 index 0000000..a55a327 Binary files /dev/null and b/web/yutian_top/captcha_pic/467.png differ diff --git a/web/yutian_top/captcha_pic/468.png b/web/yutian_top/captcha_pic/468.png new file mode 100644 index 0000000..f54bc46 Binary files /dev/null and b/web/yutian_top/captcha_pic/468.png differ diff --git a/web/yutian_top/captcha_pic/469.png b/web/yutian_top/captcha_pic/469.png new file mode 100644 index 0000000..49e1172 Binary files /dev/null and b/web/yutian_top/captcha_pic/469.png differ diff --git a/web/yutian_top/captcha_pic/47.png b/web/yutian_top/captcha_pic/47.png new file mode 100644 index 0000000..96ca379 Binary files /dev/null and b/web/yutian_top/captcha_pic/47.png differ diff --git a/web/yutian_top/captcha_pic/470.png b/web/yutian_top/captcha_pic/470.png new file mode 100644 index 0000000..a057318 Binary files /dev/null and b/web/yutian_top/captcha_pic/470.png differ diff --git a/web/yutian_top/captcha_pic/471.png b/web/yutian_top/captcha_pic/471.png new file mode 100644 index 0000000..e50fd31 Binary files /dev/null and b/web/yutian_top/captcha_pic/471.png differ diff --git a/web/yutian_top/captcha_pic/472.png b/web/yutian_top/captcha_pic/472.png new file mode 100644 index 0000000..8645f42 Binary files /dev/null and b/web/yutian_top/captcha_pic/472.png differ diff --git a/web/yutian_top/captcha_pic/473.png b/web/yutian_top/captcha_pic/473.png new file mode 100644 index 0000000..e59f1f1 Binary files /dev/null and b/web/yutian_top/captcha_pic/473.png differ diff --git a/web/yutian_top/captcha_pic/474.png b/web/yutian_top/captcha_pic/474.png new file mode 100644 index 0000000..f8099a2 Binary files /dev/null and b/web/yutian_top/captcha_pic/474.png differ diff --git a/web/yutian_top/captcha_pic/475.png b/web/yutian_top/captcha_pic/475.png new file mode 100644 index 0000000..81e5813 Binary files /dev/null and b/web/yutian_top/captcha_pic/475.png differ diff --git a/web/yutian_top/captcha_pic/476.png b/web/yutian_top/captcha_pic/476.png new file mode 100644 index 0000000..328da05 Binary files /dev/null and b/web/yutian_top/captcha_pic/476.png differ diff --git a/web/yutian_top/captcha_pic/477.png b/web/yutian_top/captcha_pic/477.png new file mode 100644 index 0000000..b44b6a4 Binary files /dev/null and b/web/yutian_top/captcha_pic/477.png differ diff --git a/web/yutian_top/captcha_pic/478.png b/web/yutian_top/captcha_pic/478.png new file mode 100644 index 0000000..7326e7e Binary files /dev/null and b/web/yutian_top/captcha_pic/478.png differ diff --git a/web/yutian_top/captcha_pic/479.png b/web/yutian_top/captcha_pic/479.png new file mode 100644 index 0000000..bc19413 Binary files /dev/null and b/web/yutian_top/captcha_pic/479.png differ diff --git a/web/yutian_top/captcha_pic/48.png b/web/yutian_top/captcha_pic/48.png new file mode 100644 index 0000000..cbffc32 Binary files /dev/null and b/web/yutian_top/captcha_pic/48.png differ diff --git a/web/yutian_top/captcha_pic/480.png b/web/yutian_top/captcha_pic/480.png new file mode 100644 index 0000000..72d8981 Binary files /dev/null and b/web/yutian_top/captcha_pic/480.png differ diff --git a/web/yutian_top/captcha_pic/481.png b/web/yutian_top/captcha_pic/481.png new file mode 100644 index 0000000..62a7739 Binary files /dev/null and b/web/yutian_top/captcha_pic/481.png differ diff --git a/web/yutian_top/captcha_pic/482.png b/web/yutian_top/captcha_pic/482.png new file mode 100644 index 0000000..d71df8a Binary files /dev/null and b/web/yutian_top/captcha_pic/482.png differ diff --git a/web/yutian_top/captcha_pic/483.png b/web/yutian_top/captcha_pic/483.png new file mode 100644 index 0000000..2d34d2d Binary files /dev/null and b/web/yutian_top/captcha_pic/483.png differ diff --git a/web/yutian_top/captcha_pic/484.png b/web/yutian_top/captcha_pic/484.png new file mode 100644 index 0000000..fe15095 Binary files /dev/null and b/web/yutian_top/captcha_pic/484.png differ diff --git a/web/yutian_top/captcha_pic/485.png b/web/yutian_top/captcha_pic/485.png new file mode 100644 index 0000000..f13f8a2 Binary files /dev/null and b/web/yutian_top/captcha_pic/485.png differ diff --git a/web/yutian_top/captcha_pic/486.png b/web/yutian_top/captcha_pic/486.png new file mode 100644 index 0000000..c39f9a9 Binary files /dev/null and b/web/yutian_top/captcha_pic/486.png differ diff --git a/web/yutian_top/captcha_pic/487.png b/web/yutian_top/captcha_pic/487.png new file mode 100644 index 0000000..13776d9 Binary files /dev/null and b/web/yutian_top/captcha_pic/487.png differ diff --git a/web/yutian_top/captcha_pic/488.png b/web/yutian_top/captcha_pic/488.png new file mode 100644 index 0000000..96f2dcf Binary files /dev/null and b/web/yutian_top/captcha_pic/488.png differ diff --git a/web/yutian_top/captcha_pic/489.png b/web/yutian_top/captcha_pic/489.png new file mode 100644 index 0000000..0e294ce Binary files /dev/null and b/web/yutian_top/captcha_pic/489.png differ diff --git a/web/yutian_top/captcha_pic/49.png b/web/yutian_top/captcha_pic/49.png new file mode 100644 index 0000000..399bfc4 Binary files /dev/null and b/web/yutian_top/captcha_pic/49.png differ diff --git a/web/yutian_top/captcha_pic/490.png b/web/yutian_top/captcha_pic/490.png new file mode 100644 index 0000000..bc72439 Binary files /dev/null and b/web/yutian_top/captcha_pic/490.png differ diff --git a/web/yutian_top/captcha_pic/491.png b/web/yutian_top/captcha_pic/491.png new file mode 100644 index 0000000..f022455 Binary files /dev/null and b/web/yutian_top/captcha_pic/491.png differ diff --git a/web/yutian_top/captcha_pic/492.png b/web/yutian_top/captcha_pic/492.png new file mode 100644 index 0000000..4914e54 Binary files /dev/null and b/web/yutian_top/captcha_pic/492.png differ diff --git a/web/yutian_top/captcha_pic/493.png b/web/yutian_top/captcha_pic/493.png new file mode 100644 index 0000000..6e14d1f Binary files /dev/null and b/web/yutian_top/captcha_pic/493.png differ diff --git a/web/yutian_top/captcha_pic/494.png b/web/yutian_top/captcha_pic/494.png new file mode 100644 index 0000000..30839c6 Binary files /dev/null and b/web/yutian_top/captcha_pic/494.png differ diff --git a/web/yutian_top/captcha_pic/495.png b/web/yutian_top/captcha_pic/495.png new file mode 100644 index 0000000..db41441 Binary files /dev/null and b/web/yutian_top/captcha_pic/495.png differ diff --git a/web/yutian_top/captcha_pic/496.png b/web/yutian_top/captcha_pic/496.png new file mode 100644 index 0000000..00e71ad Binary files /dev/null and b/web/yutian_top/captcha_pic/496.png differ diff --git a/web/yutian_top/captcha_pic/497.png b/web/yutian_top/captcha_pic/497.png new file mode 100644 index 0000000..ffda0ce Binary files /dev/null and b/web/yutian_top/captcha_pic/497.png differ diff --git a/web/yutian_top/captcha_pic/498.png b/web/yutian_top/captcha_pic/498.png new file mode 100644 index 0000000..5b9eeb0 Binary files /dev/null and b/web/yutian_top/captcha_pic/498.png differ diff --git a/web/yutian_top/captcha_pic/499.png b/web/yutian_top/captcha_pic/499.png new file mode 100644 index 0000000..4a9f87b Binary files /dev/null and b/web/yutian_top/captcha_pic/499.png differ diff --git a/web/yutian_top/captcha_pic/5.png b/web/yutian_top/captcha_pic/5.png new file mode 100644 index 0000000..9c3cabc Binary files /dev/null and b/web/yutian_top/captcha_pic/5.png differ diff --git a/web/yutian_top/captcha_pic/50.png b/web/yutian_top/captcha_pic/50.png new file mode 100644 index 0000000..ff58bba Binary files /dev/null and b/web/yutian_top/captcha_pic/50.png differ diff --git a/web/yutian_top/captcha_pic/500.png b/web/yutian_top/captcha_pic/500.png new file mode 100644 index 0000000..d28419a Binary files /dev/null and b/web/yutian_top/captcha_pic/500.png differ diff --git a/web/yutian_top/captcha_pic/501.png b/web/yutian_top/captcha_pic/501.png new file mode 100644 index 0000000..66ca37c Binary files /dev/null and b/web/yutian_top/captcha_pic/501.png differ diff --git a/web/yutian_top/captcha_pic/502.png b/web/yutian_top/captcha_pic/502.png new file mode 100644 index 0000000..b62dcce Binary files /dev/null and b/web/yutian_top/captcha_pic/502.png differ diff --git a/web/yutian_top/captcha_pic/503.png b/web/yutian_top/captcha_pic/503.png new file mode 100644 index 0000000..370f08f Binary files /dev/null and b/web/yutian_top/captcha_pic/503.png differ diff --git a/web/yutian_top/captcha_pic/504.png b/web/yutian_top/captcha_pic/504.png new file mode 100644 index 0000000..a3aae31 Binary files /dev/null and b/web/yutian_top/captcha_pic/504.png differ diff --git a/web/yutian_top/captcha_pic/505.png b/web/yutian_top/captcha_pic/505.png new file mode 100644 index 0000000..0009ba6 Binary files /dev/null and b/web/yutian_top/captcha_pic/505.png differ diff --git a/web/yutian_top/captcha_pic/506.png b/web/yutian_top/captcha_pic/506.png new file mode 100644 index 0000000..db44d1f Binary files /dev/null and b/web/yutian_top/captcha_pic/506.png differ diff --git a/web/yutian_top/captcha_pic/507.png b/web/yutian_top/captcha_pic/507.png new file mode 100644 index 0000000..4a54ee8 Binary files /dev/null and b/web/yutian_top/captcha_pic/507.png differ diff --git a/web/yutian_top/captcha_pic/508.png b/web/yutian_top/captcha_pic/508.png new file mode 100644 index 0000000..2a7cac4 Binary files /dev/null and b/web/yutian_top/captcha_pic/508.png differ diff --git a/web/yutian_top/captcha_pic/509.png b/web/yutian_top/captcha_pic/509.png new file mode 100644 index 0000000..bdb00c1 Binary files /dev/null and b/web/yutian_top/captcha_pic/509.png differ diff --git a/web/yutian_top/captcha_pic/51.png b/web/yutian_top/captcha_pic/51.png new file mode 100644 index 0000000..bf88d00 Binary files /dev/null and b/web/yutian_top/captcha_pic/51.png differ diff --git a/web/yutian_top/captcha_pic/510.png b/web/yutian_top/captcha_pic/510.png new file mode 100644 index 0000000..7ee11ac Binary files /dev/null and b/web/yutian_top/captcha_pic/510.png differ diff --git a/web/yutian_top/captcha_pic/511.png b/web/yutian_top/captcha_pic/511.png new file mode 100644 index 0000000..b235c18 Binary files /dev/null and b/web/yutian_top/captcha_pic/511.png differ diff --git a/web/yutian_top/captcha_pic/512.png b/web/yutian_top/captcha_pic/512.png new file mode 100644 index 0000000..f11c8b1 Binary files /dev/null and b/web/yutian_top/captcha_pic/512.png differ diff --git a/web/yutian_top/captcha_pic/513.png b/web/yutian_top/captcha_pic/513.png new file mode 100644 index 0000000..2cf42e8 Binary files /dev/null and b/web/yutian_top/captcha_pic/513.png differ diff --git a/web/yutian_top/captcha_pic/514.png b/web/yutian_top/captcha_pic/514.png new file mode 100644 index 0000000..17aef6d Binary files /dev/null and b/web/yutian_top/captcha_pic/514.png differ diff --git a/web/yutian_top/captcha_pic/515.png b/web/yutian_top/captcha_pic/515.png new file mode 100644 index 0000000..d3bf790 Binary files /dev/null and b/web/yutian_top/captcha_pic/515.png differ diff --git a/web/yutian_top/captcha_pic/516.png b/web/yutian_top/captcha_pic/516.png new file mode 100644 index 0000000..16baed4 Binary files /dev/null and b/web/yutian_top/captcha_pic/516.png differ diff --git a/web/yutian_top/captcha_pic/517.png b/web/yutian_top/captcha_pic/517.png new file mode 100644 index 0000000..b3054af Binary files /dev/null and b/web/yutian_top/captcha_pic/517.png differ diff --git a/web/yutian_top/captcha_pic/518.png b/web/yutian_top/captcha_pic/518.png new file mode 100644 index 0000000..ebe5683 Binary files /dev/null and b/web/yutian_top/captcha_pic/518.png differ diff --git a/web/yutian_top/captcha_pic/519.png b/web/yutian_top/captcha_pic/519.png new file mode 100644 index 0000000..e2f9b02 Binary files /dev/null and b/web/yutian_top/captcha_pic/519.png differ diff --git a/web/yutian_top/captcha_pic/52.png b/web/yutian_top/captcha_pic/52.png new file mode 100644 index 0000000..5f0c81a Binary files /dev/null and b/web/yutian_top/captcha_pic/52.png differ diff --git a/web/yutian_top/captcha_pic/520.png b/web/yutian_top/captcha_pic/520.png new file mode 100644 index 0000000..2d3126f Binary files /dev/null and b/web/yutian_top/captcha_pic/520.png differ diff --git a/web/yutian_top/captcha_pic/521.png b/web/yutian_top/captcha_pic/521.png new file mode 100644 index 0000000..4c0e4aa Binary files /dev/null and b/web/yutian_top/captcha_pic/521.png differ diff --git a/web/yutian_top/captcha_pic/522.png b/web/yutian_top/captcha_pic/522.png new file mode 100644 index 0000000..61de406 Binary files /dev/null and b/web/yutian_top/captcha_pic/522.png differ diff --git a/web/yutian_top/captcha_pic/523.png b/web/yutian_top/captcha_pic/523.png new file mode 100644 index 0000000..4af6850 Binary files /dev/null and b/web/yutian_top/captcha_pic/523.png differ diff --git a/web/yutian_top/captcha_pic/524.png b/web/yutian_top/captcha_pic/524.png new file mode 100644 index 0000000..5c94600 Binary files /dev/null and b/web/yutian_top/captcha_pic/524.png differ diff --git a/web/yutian_top/captcha_pic/525.png b/web/yutian_top/captcha_pic/525.png new file mode 100644 index 0000000..4524caa Binary files /dev/null and b/web/yutian_top/captcha_pic/525.png differ diff --git a/web/yutian_top/captcha_pic/526.png b/web/yutian_top/captcha_pic/526.png new file mode 100644 index 0000000..199d6aa Binary files /dev/null and b/web/yutian_top/captcha_pic/526.png differ diff --git a/web/yutian_top/captcha_pic/527.png b/web/yutian_top/captcha_pic/527.png new file mode 100644 index 0000000..96ccc55 Binary files /dev/null and b/web/yutian_top/captcha_pic/527.png differ diff --git a/web/yutian_top/captcha_pic/528.png b/web/yutian_top/captcha_pic/528.png new file mode 100644 index 0000000..5957081 Binary files /dev/null and b/web/yutian_top/captcha_pic/528.png differ diff --git a/web/yutian_top/captcha_pic/529.png b/web/yutian_top/captcha_pic/529.png new file mode 100644 index 0000000..e779a54 Binary files /dev/null and b/web/yutian_top/captcha_pic/529.png differ diff --git a/web/yutian_top/captcha_pic/53.png b/web/yutian_top/captcha_pic/53.png new file mode 100644 index 0000000..0faa71a Binary files /dev/null and b/web/yutian_top/captcha_pic/53.png differ diff --git a/web/yutian_top/captcha_pic/530.png b/web/yutian_top/captcha_pic/530.png new file mode 100644 index 0000000..1ee6ad5 Binary files /dev/null and b/web/yutian_top/captcha_pic/530.png differ diff --git a/web/yutian_top/captcha_pic/531.png b/web/yutian_top/captcha_pic/531.png new file mode 100644 index 0000000..6e81e5b Binary files /dev/null and b/web/yutian_top/captcha_pic/531.png differ diff --git a/web/yutian_top/captcha_pic/532.png b/web/yutian_top/captcha_pic/532.png new file mode 100644 index 0000000..e6304c6 Binary files /dev/null and b/web/yutian_top/captcha_pic/532.png differ diff --git a/web/yutian_top/captcha_pic/533.png b/web/yutian_top/captcha_pic/533.png new file mode 100644 index 0000000..541c06c Binary files /dev/null and b/web/yutian_top/captcha_pic/533.png differ diff --git a/web/yutian_top/captcha_pic/534.png b/web/yutian_top/captcha_pic/534.png new file mode 100644 index 0000000..662e77a Binary files /dev/null and b/web/yutian_top/captcha_pic/534.png differ diff --git a/web/yutian_top/captcha_pic/535.png b/web/yutian_top/captcha_pic/535.png new file mode 100644 index 0000000..17ebabb Binary files /dev/null and b/web/yutian_top/captcha_pic/535.png differ diff --git a/web/yutian_top/captcha_pic/536.png b/web/yutian_top/captcha_pic/536.png new file mode 100644 index 0000000..2d960a8 Binary files /dev/null and b/web/yutian_top/captcha_pic/536.png differ diff --git a/web/yutian_top/captcha_pic/537.png b/web/yutian_top/captcha_pic/537.png new file mode 100644 index 0000000..6862354 Binary files /dev/null and b/web/yutian_top/captcha_pic/537.png differ diff --git a/web/yutian_top/captcha_pic/538.png b/web/yutian_top/captcha_pic/538.png new file mode 100644 index 0000000..d485f48 Binary files /dev/null and b/web/yutian_top/captcha_pic/538.png differ diff --git a/web/yutian_top/captcha_pic/539.png b/web/yutian_top/captcha_pic/539.png new file mode 100644 index 0000000..83c288e Binary files /dev/null and b/web/yutian_top/captcha_pic/539.png differ diff --git a/web/yutian_top/captcha_pic/54.png b/web/yutian_top/captcha_pic/54.png new file mode 100644 index 0000000..94efc0d Binary files /dev/null and b/web/yutian_top/captcha_pic/54.png differ diff --git a/web/yutian_top/captcha_pic/540.png b/web/yutian_top/captcha_pic/540.png new file mode 100644 index 0000000..4f003a0 Binary files /dev/null and b/web/yutian_top/captcha_pic/540.png differ diff --git a/web/yutian_top/captcha_pic/541.png b/web/yutian_top/captcha_pic/541.png new file mode 100644 index 0000000..aa76d36 Binary files /dev/null and b/web/yutian_top/captcha_pic/541.png differ diff --git a/web/yutian_top/captcha_pic/542.png b/web/yutian_top/captcha_pic/542.png new file mode 100644 index 0000000..3099753 Binary files /dev/null and b/web/yutian_top/captcha_pic/542.png differ diff --git a/web/yutian_top/captcha_pic/543.png b/web/yutian_top/captcha_pic/543.png new file mode 100644 index 0000000..5bc80c3 Binary files /dev/null and b/web/yutian_top/captcha_pic/543.png differ diff --git a/web/yutian_top/captcha_pic/544.png b/web/yutian_top/captcha_pic/544.png new file mode 100644 index 0000000..77b4df5 Binary files /dev/null and b/web/yutian_top/captcha_pic/544.png differ diff --git a/web/yutian_top/captcha_pic/545.png b/web/yutian_top/captcha_pic/545.png new file mode 100644 index 0000000..14bfed6 Binary files /dev/null and b/web/yutian_top/captcha_pic/545.png differ diff --git a/web/yutian_top/captcha_pic/546.png b/web/yutian_top/captcha_pic/546.png new file mode 100644 index 0000000..83aa0e2 Binary files /dev/null and b/web/yutian_top/captcha_pic/546.png differ diff --git a/web/yutian_top/captcha_pic/547.png b/web/yutian_top/captcha_pic/547.png new file mode 100644 index 0000000..1adcb4f Binary files /dev/null and b/web/yutian_top/captcha_pic/547.png differ diff --git a/web/yutian_top/captcha_pic/548.png b/web/yutian_top/captcha_pic/548.png new file mode 100644 index 0000000..071cd6e Binary files /dev/null and b/web/yutian_top/captcha_pic/548.png differ diff --git a/web/yutian_top/captcha_pic/549.png b/web/yutian_top/captcha_pic/549.png new file mode 100644 index 0000000..4dec4ec Binary files /dev/null and b/web/yutian_top/captcha_pic/549.png differ diff --git a/web/yutian_top/captcha_pic/55.png b/web/yutian_top/captcha_pic/55.png new file mode 100644 index 0000000..01ffaf1 Binary files /dev/null and b/web/yutian_top/captcha_pic/55.png differ diff --git a/web/yutian_top/captcha_pic/550.png b/web/yutian_top/captcha_pic/550.png new file mode 100644 index 0000000..4f0d9ba Binary files /dev/null and b/web/yutian_top/captcha_pic/550.png differ diff --git a/web/yutian_top/captcha_pic/551.png b/web/yutian_top/captcha_pic/551.png new file mode 100644 index 0000000..a0e0789 Binary files /dev/null and b/web/yutian_top/captcha_pic/551.png differ diff --git a/web/yutian_top/captcha_pic/552.png b/web/yutian_top/captcha_pic/552.png new file mode 100644 index 0000000..f937f12 Binary files /dev/null and b/web/yutian_top/captcha_pic/552.png differ diff --git a/web/yutian_top/captcha_pic/553.png b/web/yutian_top/captcha_pic/553.png new file mode 100644 index 0000000..8c46ab4 Binary files /dev/null and b/web/yutian_top/captcha_pic/553.png differ diff --git a/web/yutian_top/captcha_pic/554.png b/web/yutian_top/captcha_pic/554.png new file mode 100644 index 0000000..da920e7 Binary files /dev/null and b/web/yutian_top/captcha_pic/554.png differ diff --git a/web/yutian_top/captcha_pic/555.png b/web/yutian_top/captcha_pic/555.png new file mode 100644 index 0000000..bb72bd0 Binary files /dev/null and b/web/yutian_top/captcha_pic/555.png differ diff --git a/web/yutian_top/captcha_pic/556.png b/web/yutian_top/captcha_pic/556.png new file mode 100644 index 0000000..5bebaa8 Binary files /dev/null and b/web/yutian_top/captcha_pic/556.png differ diff --git a/web/yutian_top/captcha_pic/557.png b/web/yutian_top/captcha_pic/557.png new file mode 100644 index 0000000..ce889b9 Binary files /dev/null and b/web/yutian_top/captcha_pic/557.png differ diff --git a/web/yutian_top/captcha_pic/558.png b/web/yutian_top/captcha_pic/558.png new file mode 100644 index 0000000..09d053a Binary files /dev/null and b/web/yutian_top/captcha_pic/558.png differ diff --git a/web/yutian_top/captcha_pic/559.png b/web/yutian_top/captcha_pic/559.png new file mode 100644 index 0000000..9d1380e Binary files /dev/null and b/web/yutian_top/captcha_pic/559.png differ diff --git a/web/yutian_top/captcha_pic/56.png b/web/yutian_top/captcha_pic/56.png new file mode 100644 index 0000000..479270c Binary files /dev/null and b/web/yutian_top/captcha_pic/56.png differ diff --git a/web/yutian_top/captcha_pic/560.png b/web/yutian_top/captcha_pic/560.png new file mode 100644 index 0000000..8872a64 Binary files /dev/null and b/web/yutian_top/captcha_pic/560.png differ diff --git a/web/yutian_top/captcha_pic/561.png b/web/yutian_top/captcha_pic/561.png new file mode 100644 index 0000000..be78d86 Binary files /dev/null and b/web/yutian_top/captcha_pic/561.png differ diff --git a/web/yutian_top/captcha_pic/562.png b/web/yutian_top/captcha_pic/562.png new file mode 100644 index 0000000..f72b3af Binary files /dev/null and b/web/yutian_top/captcha_pic/562.png differ diff --git a/web/yutian_top/captcha_pic/563.png b/web/yutian_top/captcha_pic/563.png new file mode 100644 index 0000000..8502c3c Binary files /dev/null and b/web/yutian_top/captcha_pic/563.png differ diff --git a/web/yutian_top/captcha_pic/564.png b/web/yutian_top/captcha_pic/564.png new file mode 100644 index 0000000..6ae9c5d Binary files /dev/null and b/web/yutian_top/captcha_pic/564.png differ diff --git a/web/yutian_top/captcha_pic/565.png b/web/yutian_top/captcha_pic/565.png new file mode 100644 index 0000000..e558d08 Binary files /dev/null and b/web/yutian_top/captcha_pic/565.png differ diff --git a/web/yutian_top/captcha_pic/566.png b/web/yutian_top/captcha_pic/566.png new file mode 100644 index 0000000..cbcf140 Binary files /dev/null and b/web/yutian_top/captcha_pic/566.png differ diff --git a/web/yutian_top/captcha_pic/567.png b/web/yutian_top/captcha_pic/567.png new file mode 100644 index 0000000..2c4dfc4 Binary files /dev/null and b/web/yutian_top/captcha_pic/567.png differ diff --git a/web/yutian_top/captcha_pic/568.png b/web/yutian_top/captcha_pic/568.png new file mode 100644 index 0000000..513dcf4 Binary files /dev/null and b/web/yutian_top/captcha_pic/568.png differ diff --git a/web/yutian_top/captcha_pic/569.png b/web/yutian_top/captcha_pic/569.png new file mode 100644 index 0000000..e3d5e29 Binary files /dev/null and b/web/yutian_top/captcha_pic/569.png differ diff --git a/web/yutian_top/captcha_pic/57.png b/web/yutian_top/captcha_pic/57.png new file mode 100644 index 0000000..8c387b3 Binary files /dev/null and b/web/yutian_top/captcha_pic/57.png differ diff --git a/web/yutian_top/captcha_pic/570.png b/web/yutian_top/captcha_pic/570.png new file mode 100644 index 0000000..475d552 Binary files /dev/null and b/web/yutian_top/captcha_pic/570.png differ diff --git a/web/yutian_top/captcha_pic/571.png b/web/yutian_top/captcha_pic/571.png new file mode 100644 index 0000000..3352ca1 Binary files /dev/null and b/web/yutian_top/captcha_pic/571.png differ diff --git a/web/yutian_top/captcha_pic/572.png b/web/yutian_top/captcha_pic/572.png new file mode 100644 index 0000000..ff63165 Binary files /dev/null and b/web/yutian_top/captcha_pic/572.png differ diff --git a/web/yutian_top/captcha_pic/573.png b/web/yutian_top/captcha_pic/573.png new file mode 100644 index 0000000..214c3bd Binary files /dev/null and b/web/yutian_top/captcha_pic/573.png differ diff --git a/web/yutian_top/captcha_pic/574.png b/web/yutian_top/captcha_pic/574.png new file mode 100644 index 0000000..762ab7d Binary files /dev/null and b/web/yutian_top/captcha_pic/574.png differ diff --git a/web/yutian_top/captcha_pic/575.png b/web/yutian_top/captcha_pic/575.png new file mode 100644 index 0000000..3c9be4b Binary files /dev/null and b/web/yutian_top/captcha_pic/575.png differ diff --git a/web/yutian_top/captcha_pic/576.png b/web/yutian_top/captcha_pic/576.png new file mode 100644 index 0000000..26c62c3 Binary files /dev/null and b/web/yutian_top/captcha_pic/576.png differ diff --git a/web/yutian_top/captcha_pic/577.png b/web/yutian_top/captcha_pic/577.png new file mode 100644 index 0000000..447552a Binary files /dev/null and b/web/yutian_top/captcha_pic/577.png differ diff --git a/web/yutian_top/captcha_pic/578.png b/web/yutian_top/captcha_pic/578.png new file mode 100644 index 0000000..256226d Binary files /dev/null and b/web/yutian_top/captcha_pic/578.png differ diff --git a/web/yutian_top/captcha_pic/579.png b/web/yutian_top/captcha_pic/579.png new file mode 100644 index 0000000..94bbc55 Binary files /dev/null and b/web/yutian_top/captcha_pic/579.png differ diff --git a/web/yutian_top/captcha_pic/58.png b/web/yutian_top/captcha_pic/58.png new file mode 100644 index 0000000..dfd0ac9 Binary files /dev/null and b/web/yutian_top/captcha_pic/58.png differ diff --git a/web/yutian_top/captcha_pic/580.png b/web/yutian_top/captcha_pic/580.png new file mode 100644 index 0000000..b38e83b Binary files /dev/null and b/web/yutian_top/captcha_pic/580.png differ diff --git a/web/yutian_top/captcha_pic/581.png b/web/yutian_top/captcha_pic/581.png new file mode 100644 index 0000000..40563ac Binary files /dev/null and b/web/yutian_top/captcha_pic/581.png differ diff --git a/web/yutian_top/captcha_pic/582.png b/web/yutian_top/captcha_pic/582.png new file mode 100644 index 0000000..da249b9 Binary files /dev/null and b/web/yutian_top/captcha_pic/582.png differ diff --git a/web/yutian_top/captcha_pic/583.png b/web/yutian_top/captcha_pic/583.png new file mode 100644 index 0000000..3307b71 Binary files /dev/null and b/web/yutian_top/captcha_pic/583.png differ diff --git a/web/yutian_top/captcha_pic/584.png b/web/yutian_top/captcha_pic/584.png new file mode 100644 index 0000000..1a78a97 Binary files /dev/null and b/web/yutian_top/captcha_pic/584.png differ diff --git a/web/yutian_top/captcha_pic/585.png b/web/yutian_top/captcha_pic/585.png new file mode 100644 index 0000000..ca7e0da Binary files /dev/null and b/web/yutian_top/captcha_pic/585.png differ diff --git a/web/yutian_top/captcha_pic/586.png b/web/yutian_top/captcha_pic/586.png new file mode 100644 index 0000000..f288883 Binary files /dev/null and b/web/yutian_top/captcha_pic/586.png differ diff --git a/web/yutian_top/captcha_pic/587.png b/web/yutian_top/captcha_pic/587.png new file mode 100644 index 0000000..60fbff7 Binary files /dev/null and b/web/yutian_top/captcha_pic/587.png differ diff --git a/web/yutian_top/captcha_pic/588.png b/web/yutian_top/captcha_pic/588.png new file mode 100644 index 0000000..99052d1 Binary files /dev/null and b/web/yutian_top/captcha_pic/588.png differ diff --git a/web/yutian_top/captcha_pic/589.png b/web/yutian_top/captcha_pic/589.png new file mode 100644 index 0000000..5dd8178 Binary files /dev/null and b/web/yutian_top/captcha_pic/589.png differ diff --git a/web/yutian_top/captcha_pic/59.png b/web/yutian_top/captcha_pic/59.png new file mode 100644 index 0000000..8e4d7fe Binary files /dev/null and b/web/yutian_top/captcha_pic/59.png differ diff --git a/web/yutian_top/captcha_pic/590.png b/web/yutian_top/captcha_pic/590.png new file mode 100644 index 0000000..57fecd5 Binary files /dev/null and b/web/yutian_top/captcha_pic/590.png differ diff --git a/web/yutian_top/captcha_pic/591.png b/web/yutian_top/captcha_pic/591.png new file mode 100644 index 0000000..f4d5160 Binary files /dev/null and b/web/yutian_top/captcha_pic/591.png differ diff --git a/web/yutian_top/captcha_pic/592.png b/web/yutian_top/captcha_pic/592.png new file mode 100644 index 0000000..197230e Binary files /dev/null and b/web/yutian_top/captcha_pic/592.png differ diff --git a/web/yutian_top/captcha_pic/593.png b/web/yutian_top/captcha_pic/593.png new file mode 100644 index 0000000..14cd7c0 Binary files /dev/null and b/web/yutian_top/captcha_pic/593.png differ diff --git a/web/yutian_top/captcha_pic/594.png b/web/yutian_top/captcha_pic/594.png new file mode 100644 index 0000000..f61f744 Binary files /dev/null and b/web/yutian_top/captcha_pic/594.png differ diff --git a/web/yutian_top/captcha_pic/595.png b/web/yutian_top/captcha_pic/595.png new file mode 100644 index 0000000..2dce1a5 Binary files /dev/null and b/web/yutian_top/captcha_pic/595.png differ diff --git a/web/yutian_top/captcha_pic/596.png b/web/yutian_top/captcha_pic/596.png new file mode 100644 index 0000000..ae1fe37 Binary files /dev/null and b/web/yutian_top/captcha_pic/596.png differ diff --git a/web/yutian_top/captcha_pic/597.png b/web/yutian_top/captcha_pic/597.png new file mode 100644 index 0000000..39181e6 Binary files /dev/null and b/web/yutian_top/captcha_pic/597.png differ diff --git a/web/yutian_top/captcha_pic/598.png b/web/yutian_top/captcha_pic/598.png new file mode 100644 index 0000000..3d560da Binary files /dev/null and b/web/yutian_top/captcha_pic/598.png differ diff --git a/web/yutian_top/captcha_pic/599.png b/web/yutian_top/captcha_pic/599.png new file mode 100644 index 0000000..944703f Binary files /dev/null and b/web/yutian_top/captcha_pic/599.png differ diff --git a/web/yutian_top/captcha_pic/6.png b/web/yutian_top/captcha_pic/6.png new file mode 100644 index 0000000..616c413 Binary files /dev/null and b/web/yutian_top/captcha_pic/6.png differ diff --git a/web/yutian_top/captcha_pic/60.png b/web/yutian_top/captcha_pic/60.png new file mode 100644 index 0000000..fa48625 Binary files /dev/null and b/web/yutian_top/captcha_pic/60.png differ diff --git a/web/yutian_top/captcha_pic/61.png b/web/yutian_top/captcha_pic/61.png new file mode 100644 index 0000000..e001a34 Binary files /dev/null and b/web/yutian_top/captcha_pic/61.png differ diff --git a/web/yutian_top/captcha_pic/62.png b/web/yutian_top/captcha_pic/62.png new file mode 100644 index 0000000..4004267 Binary files /dev/null and b/web/yutian_top/captcha_pic/62.png differ diff --git a/web/yutian_top/captcha_pic/63.png b/web/yutian_top/captcha_pic/63.png new file mode 100644 index 0000000..a53e48d Binary files /dev/null and b/web/yutian_top/captcha_pic/63.png differ diff --git a/web/yutian_top/captcha_pic/64.png b/web/yutian_top/captcha_pic/64.png new file mode 100644 index 0000000..b773bd2 Binary files /dev/null and b/web/yutian_top/captcha_pic/64.png differ diff --git a/web/yutian_top/captcha_pic/65.png b/web/yutian_top/captcha_pic/65.png new file mode 100644 index 0000000..16fb73f Binary files /dev/null and b/web/yutian_top/captcha_pic/65.png differ diff --git a/web/yutian_top/captcha_pic/66.png b/web/yutian_top/captcha_pic/66.png new file mode 100644 index 0000000..70bd494 Binary files /dev/null and b/web/yutian_top/captcha_pic/66.png differ diff --git a/web/yutian_top/captcha_pic/67.png b/web/yutian_top/captcha_pic/67.png new file mode 100644 index 0000000..f08aa11 Binary files /dev/null and b/web/yutian_top/captcha_pic/67.png differ diff --git a/web/yutian_top/captcha_pic/68.png b/web/yutian_top/captcha_pic/68.png new file mode 100644 index 0000000..66fddd2 Binary files /dev/null and b/web/yutian_top/captcha_pic/68.png differ diff --git a/web/yutian_top/captcha_pic/69.png b/web/yutian_top/captcha_pic/69.png new file mode 100644 index 0000000..5ec608e Binary files /dev/null and b/web/yutian_top/captcha_pic/69.png differ diff --git a/web/yutian_top/captcha_pic/7.png b/web/yutian_top/captcha_pic/7.png new file mode 100644 index 0000000..e37e1e8 Binary files /dev/null and b/web/yutian_top/captcha_pic/7.png differ diff --git a/web/yutian_top/captcha_pic/70.png b/web/yutian_top/captcha_pic/70.png new file mode 100644 index 0000000..bc1b2e4 Binary files /dev/null and b/web/yutian_top/captcha_pic/70.png differ diff --git a/web/yutian_top/captcha_pic/71.png b/web/yutian_top/captcha_pic/71.png new file mode 100644 index 0000000..f67d38d Binary files /dev/null and b/web/yutian_top/captcha_pic/71.png differ diff --git a/web/yutian_top/captcha_pic/72.png b/web/yutian_top/captcha_pic/72.png new file mode 100644 index 0000000..89d5f1e Binary files /dev/null and b/web/yutian_top/captcha_pic/72.png differ diff --git a/web/yutian_top/captcha_pic/73.png b/web/yutian_top/captcha_pic/73.png new file mode 100644 index 0000000..88fc377 Binary files /dev/null and b/web/yutian_top/captcha_pic/73.png differ diff --git a/web/yutian_top/captcha_pic/74.png b/web/yutian_top/captcha_pic/74.png new file mode 100644 index 0000000..6c4cbc2 Binary files /dev/null and b/web/yutian_top/captcha_pic/74.png differ diff --git a/web/yutian_top/captcha_pic/75.png b/web/yutian_top/captcha_pic/75.png new file mode 100644 index 0000000..653cd87 Binary files /dev/null and b/web/yutian_top/captcha_pic/75.png differ diff --git a/web/yutian_top/captcha_pic/76.png b/web/yutian_top/captcha_pic/76.png new file mode 100644 index 0000000..0b4264b Binary files /dev/null and b/web/yutian_top/captcha_pic/76.png differ diff --git a/web/yutian_top/captcha_pic/77.png b/web/yutian_top/captcha_pic/77.png new file mode 100644 index 0000000..214c6cf Binary files /dev/null and b/web/yutian_top/captcha_pic/77.png differ diff --git a/web/yutian_top/captcha_pic/78.png b/web/yutian_top/captcha_pic/78.png new file mode 100644 index 0000000..42d5f31 Binary files /dev/null and b/web/yutian_top/captcha_pic/78.png differ diff --git a/web/yutian_top/captcha_pic/79.png b/web/yutian_top/captcha_pic/79.png new file mode 100644 index 0000000..61528a9 Binary files /dev/null and b/web/yutian_top/captcha_pic/79.png differ diff --git a/web/yutian_top/captcha_pic/8.png b/web/yutian_top/captcha_pic/8.png new file mode 100644 index 0000000..c0280c0 Binary files /dev/null and b/web/yutian_top/captcha_pic/8.png differ diff --git a/web/yutian_top/captcha_pic/80.png b/web/yutian_top/captcha_pic/80.png new file mode 100644 index 0000000..4776612 Binary files /dev/null and b/web/yutian_top/captcha_pic/80.png differ diff --git a/web/yutian_top/captcha_pic/81.png b/web/yutian_top/captcha_pic/81.png new file mode 100644 index 0000000..5900303 Binary files /dev/null and b/web/yutian_top/captcha_pic/81.png differ diff --git a/web/yutian_top/captcha_pic/82.png b/web/yutian_top/captcha_pic/82.png new file mode 100644 index 0000000..7d8ad16 Binary files /dev/null and b/web/yutian_top/captcha_pic/82.png differ diff --git a/web/yutian_top/captcha_pic/83.png b/web/yutian_top/captcha_pic/83.png new file mode 100644 index 0000000..e57f9d2 Binary files /dev/null and b/web/yutian_top/captcha_pic/83.png differ diff --git a/web/yutian_top/captcha_pic/84.png b/web/yutian_top/captcha_pic/84.png new file mode 100644 index 0000000..a3c8d03 Binary files /dev/null and b/web/yutian_top/captcha_pic/84.png differ diff --git a/web/yutian_top/captcha_pic/85.png b/web/yutian_top/captcha_pic/85.png new file mode 100644 index 0000000..74b3ee8 Binary files /dev/null and b/web/yutian_top/captcha_pic/85.png differ diff --git a/web/yutian_top/captcha_pic/86.png b/web/yutian_top/captcha_pic/86.png new file mode 100644 index 0000000..e96bdfe Binary files /dev/null and b/web/yutian_top/captcha_pic/86.png differ diff --git a/web/yutian_top/captcha_pic/87.png b/web/yutian_top/captcha_pic/87.png new file mode 100644 index 0000000..ee22c73 Binary files /dev/null and b/web/yutian_top/captcha_pic/87.png differ diff --git a/web/yutian_top/captcha_pic/88.png b/web/yutian_top/captcha_pic/88.png new file mode 100644 index 0000000..8c7a36e Binary files /dev/null and b/web/yutian_top/captcha_pic/88.png differ diff --git a/web/yutian_top/captcha_pic/89.png b/web/yutian_top/captcha_pic/89.png new file mode 100644 index 0000000..f9d2d12 Binary files /dev/null and b/web/yutian_top/captcha_pic/89.png differ diff --git a/web/yutian_top/captcha_pic/9.png b/web/yutian_top/captcha_pic/9.png new file mode 100644 index 0000000..e157daf Binary files /dev/null and b/web/yutian_top/captcha_pic/9.png differ diff --git a/web/yutian_top/captcha_pic/90.png b/web/yutian_top/captcha_pic/90.png new file mode 100644 index 0000000..84fa0d5 Binary files /dev/null and b/web/yutian_top/captcha_pic/90.png differ diff --git a/web/yutian_top/captcha_pic/91.png b/web/yutian_top/captcha_pic/91.png new file mode 100644 index 0000000..6ad4b4d Binary files /dev/null and b/web/yutian_top/captcha_pic/91.png differ diff --git a/web/yutian_top/captcha_pic/92.png b/web/yutian_top/captcha_pic/92.png new file mode 100644 index 0000000..9499000 Binary files /dev/null and b/web/yutian_top/captcha_pic/92.png differ diff --git a/web/yutian_top/captcha_pic/93.png b/web/yutian_top/captcha_pic/93.png new file mode 100644 index 0000000..44cfb0f Binary files /dev/null and b/web/yutian_top/captcha_pic/93.png differ diff --git a/web/yutian_top/captcha_pic/94.png b/web/yutian_top/captcha_pic/94.png new file mode 100644 index 0000000..eb816fe Binary files /dev/null and b/web/yutian_top/captcha_pic/94.png differ diff --git a/web/yutian_top/captcha_pic/95.png b/web/yutian_top/captcha_pic/95.png new file mode 100644 index 0000000..b739f4c Binary files /dev/null and b/web/yutian_top/captcha_pic/95.png differ diff --git a/web/yutian_top/captcha_pic/96.png b/web/yutian_top/captcha_pic/96.png new file mode 100644 index 0000000..254b51d Binary files /dev/null and b/web/yutian_top/captcha_pic/96.png differ diff --git a/web/yutian_top/captcha_pic/97.png b/web/yutian_top/captcha_pic/97.png new file mode 100644 index 0000000..3ec5507 Binary files /dev/null and b/web/yutian_top/captcha_pic/97.png differ diff --git a/web/yutian_top/captcha_pic/98.png b/web/yutian_top/captcha_pic/98.png new file mode 100644 index 0000000..30dc674 Binary files /dev/null and b/web/yutian_top/captcha_pic/98.png differ diff --git a/web/yutian_top/captcha_pic/99.png b/web/yutian_top/captcha_pic/99.png new file mode 100644 index 0000000..2d57da9 Binary files /dev/null and b/web/yutian_top/captcha_pic/99.png differ diff --git a/web/yutian_top/company_3273.html b/web/yutian_top/company_3273.html new file mode 100644 index 0000000..2cbf99e --- /dev/null +++ b/web/yutian_top/company_3273.html @@ -0,0 +1,958 @@ + + + + + + + 中国人寿北环_玉田招聘网-免费推荐工作 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + +
        + +
        +
        + + +
        +
        +
        + + + +
        +
        +
        + +
        公众号
        +
        +
        + +
        客服
        +
        +
        +
        置顶
        +
        +
        +
        + +
        +
        +
        + +
        +
        + +
        +

        中国人寿北环

        +
        最近活跃 :昨天17:39
        +
        + + +
        +
        +
        +
        ${callingJobNum}
        +
        在招职位
        +
        +
        +
        106191
        +
        企业浏览数
        +
        +
        +
        100.00%
        +
        简历查看率
        +
        +
        +
        +
        +
        +
        +
        公司类别 :
        +
        金融、信托投资
        +
        +
        +
        公司规模 :
        +
        10人以下
        +
        + +
        +
        + + +
        + +
        +
        +
        企业介绍
        +
        业务范围:一、对营销员开展培训及日常管理;二、收取营销员代收的保险费、投保单等 +单证;三、分发保险公司签发的保险单、保险收据等相关单证:四、接受客户的咨询、投诉;五、经营总公司在保险监督管理机构批准业务范围内授权的其他业务。
        +
        企业地址
        +
        + +
        河北省唐山市玉田县玉田镇北环西路2258号
        +
        点击导航
        +
        +
        +
        +
        + +
        求职过程中请勿缴纳费用,保持谨慎,防止受骗!
        +
        + +
        +
        +
        在招职位
        + +
        +
        + + +
        +
        +
        企业环境
        +
        +
        +
        +
        +
        +
        + 微信扫一扫 +
        + +
        + +
        微信扫一扫,随时随地找工作
        +
        +
        +
        + +
        +
        + + + + + +
        +
        +
        + +
        未知
        + +
        +
        +
        +
        + + + + + + + + + + + + + + +
        + + + + + + + + + + + + +
        + +
        + +
        选择城市
        +
        选择目标城市,将为您提供更准确的信息
        +
        当前选择城市:
        +
        +
        + ${ item.sub_name } +
        +
        +
        +
        +
        + + + diff --git a/web/yutian_top/get_captcha.py b/web/yutian_top/get_captcha.py new file mode 100644 index 0000000..7adff52 --- /dev/null +++ b/web/yutian_top/get_captcha.py @@ -0,0 +1,58 @@ +import time +import requests +import uuid + + +def get_session_id(): + random_str = str(uuid.uuid4().hex) + return random_str + + +def download_captcha(i, random_str): + cookies = { + 'PHPSESSID': random_str, + } + + headers = { + 'accept': 'image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8', + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8', + 'cache-control': 'no-cache', + 'pragma': 'no-cache', + 'priority': 'i', + 'referer': 'https://www.yutian.top/login', + 'sec-ch-ua': '"Google Chrome";v="135", "Not-A.Brand";v="8", "Chromium";v="135"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-platform': '"Windows"', + 'sec-fetch-dest': 'image', + 'sec-fetch-mode': 'no-cors', + 'sec-fetch-site': 'same-origin', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36', + } + + params = { + 'codeSetType': '2', + 'length': '4', + 'time': str(int(time.time() * 1000)), + } + if i % 2 == 0: + url = 'https://www.yutian.top/user_center/captcha/picture' + else: + url = 'https://www.fnrc.vip/user_center/captcha/picture' + + response = requests.get(url, params=params, cookies=cookies, + headers=headers) + if response.status_code == 200: + file_path = f'./captcha_pic/{i}.png' + with open(file_path, 'wb') as f: + f.write(response.content) + print("验证码图片已保存为 {}".format(file_path)) + + +i = 299 +session_id = get_session_id() +while i < 600: + download_captcha(i, session_id) + if i % 20 == 0: + session_id = get_session_id() + time.sleep(0.5) + i += 1 diff --git a/web/yutian_top/get_company.py b/web/yutian_top/get_company.py new file mode 100644 index 0000000..073a237 --- /dev/null +++ b/web/yutian_top/get_company.py @@ -0,0 +1,125 @@ +import sys, os +project_root = os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "..")) +if project_root not in sys.path: + sys.path.insert(0, project_root) + +from web.Requests_Except import MR +base_url = 'zp.yutian.top' +protocol = 'https' +default_headers = { + 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7', + 'Accept-Language': 'zh-CN,zh;q=0.9', + 'Cache-Control': 'no-cache', + 'Connection': 'keep-alive', + 'Pragma': 'no-cache', + 'Sec-Fetch-Dest': 'document', + 'Sec-Fetch-Mode': 'navigate', + 'Sec-Fetch-Site': 'same-origin', + 'Sec-Fetch-User': '?1', + 'Upgrade-Insecure-Requests': '1', + 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', + 'sec-ch-ua': '"Chromium";v="134", "Not:A-Brand";v="24", "Google Chrome";v="134"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-platform': '"Windows"', +} +Requests = MR(base_url, protocol) +Requests.set_default_headers(default_headers) + + +def data_cleaning(xpathobj) -> dict: + # name_xlist = xpathobj.xpath('//h1/a/text()') + # name = name_xlist[0] if name_xlist else "" + # compary_info_xlist = xpathobj.xpath('//div[@class="com_details_info"]/text()') + # if compary_info_xlist: + # compary_info_list = [info.strip() for info in compary_info_xlist if info.strip()] + # category = compary_info_list[1] + # company_type = compary_info_list[2] + # size = compary_info_list[3] + # if len(compary_info_list) > 4: + # founded_date = compary_info_list[4] + # else: + # founded_date = "" + # else: + # category = "" + # company_type = "" + # size = "" + # founded_date = "" + # benefits_xlist = xpathobj.xpath('//div[@class="com_welfare "]/span/text()') + # if benefits_xlist: + # benefits_str = " | ".join(benefits_xlist) + # else: + # benefits_str = "" + # introduction_xlist = xpathobj.xpath('//div[@class="company_img_auto"]/p/text()') + # if not introduction_xlist: + # introduction_xlist = xpathobj.xpath('//div[@class="company_img_auto"]/text()') + # if not introduction_xlist: + # introduction_xlist = xpathobj.xpath('//div[@class="company_img_auto"]/p/span/text()') + # if introduction_xlist: + # introduction = "\r\n".join([info.strip() for info in introduction_xlist if info.strip()]) + # else: + # introduction = "" + # address_xlist = xpathobj.xpath('//div[@class="com_details_tel_me"]/div/text()') + # if address_xlist: + # address = address_xlist[0].strip() + # else: + # address = "" + # if name != "" and introduction != "": + # company_data = { + # "name": name, + # "category": category, + # "size": size, + # "company_type": company_type, + # "founded_date": founded_date, + # "introduction": introduction, + # "address": address, + # "benefits": benefits_str, + # "website": 1, + # } + # else: + # company_data = None + # return company_data + name = xpathobj.xpath('//h1[@class="company-header-top-detail-name hide-txt"]/text()')[0].strip() + category_and_size_key = xpathobj.xpath('//div[@class="company-header-bottom-item-label"]/text()') + category_and_size_value = xpathobj.xpath('//div[@class="company-header-bottom-item-text hide-txt"]/text()') + category_and_size_key_count = len(category_and_size_key) + category_and_size_value_count = len(category_and_size_value) + if category_and_size_key_count == 2 and category_and_size_value_count == 2: + key0 = category_and_size_key[0].strip() + key1 = category_and_size_key[1].strip() + if key0 == "公司类别 :": + category = category_and_size_value[0].strip() + if key1 == "公司规模 :": + size = category_and_size_value[1].strip() + elif category_and_size_key_count == 1 and category_and_size_value_count == 1: + key0 = category_and_size_key[0].strip() + if key0 == "公司类别 :": + category = category_and_size_value[0].strip() + size = "" + elif key0 == "公司规模 :": + size = category_and_size_value[0].strip() + category = "" + else: + # 如果无法解析,返回空字符串 + category = "" + size = "" + introduction = xpathobj.xpath('//div[@class="job-left-content-des"]/text()')[0].strip() + address = xpathobj.xpath('//div[@class="job-left-content-address"]/text()')[0].strip() + print(name) + print(category) + print(size) + print(introduction) + +def get_position_page(page:int): + url = f"/position/{page}.html" + res = Requests.get(url, timeout=10) + print(res.text) + return data_cleaning(res.xpath()) + +def get_company_page(page:int): + url = f"/company/{page}.html" + res = Requests.get(url, timeout=10) + return data_cleaning(res.xpath()) + +if __name__ == '__main__': + # for page in range(1, 1000): + print(get_company_page(3273)) \ No newline at end of file diff --git a/web/yutian_top/get_position.py b/web/yutian_top/get_position.py new file mode 100644 index 0000000..c47f18a --- /dev/null +++ b/web/yutian_top/get_position.py @@ -0,0 +1,58 @@ +import re +import sys, os + +project_root = os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "..")) +if project_root not in sys.path: + sys.path.insert(0, project_root) + +from web.Requests_Except import MR + +base_url = 'www.yutian.top' +protocol = 'https' +default_headers = { + 'accept': 'application/json, text/plain, */*', + 'accept-language': 'zh-CN,zh;q=0.9', + 'cache-control': 'no-cache', + 'content-type': 'application/json;charset=UTF-8', + 'origin': 'https://www.yutian.top', + 'pragma': 'no-cache', + 'priority': 'u=1, i', + 'referer': 'https://www.yutian.top/enterprise/resume_store/list', + 'sec-ch-ua': '"Chromium";v="134", "Not:A-Brand";v="24", "Google Chrome";v="134"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-platform': '"Windows"', + 'sec-fetch-dest': 'empty', + 'sec-fetch-mode': 'cors', + 'sec-fetch-site': 'same-origin', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', +} + +Requests = MR(base_url, protocol) +Requests.set_default_headers(default_headers) + + +def main(): + url = "https://zp.yutian.top/position/9076.html" + response = Requests.get(url) + xpathobj = response.xpath() + # infokey = xpathobj.xpath("//span[@class='job-info-item']/span[@class='label']/text()") + # infovalue = xpathobj.xpath("//span[@class='job-info-item']/span[@class='value hide-text']/text()") + # for index, key in enumerate(infokey): + # if '工作性质' in key: + # nature = infovalue[index].strip() + # if "职位类别" in key: + # category = infovalue[index].strip() + # if "工作区域" in key: + # region = infovalue[index].strip() + # if "招聘人数" in key: + # openings = infovalue[index].strip() + # if "工作年限" in key: + # experience = infovalue[index].strip() + # if "学历要求" in key: + # education = infovalue[index].strip() + a = xpathobj.xpath("//div[@class='job-detail']/@data-io-company-id") + print(a) + + +if __name__ == '__main__': + main() diff --git a/web/yutian_top/main.py b/web/yutian_top/main.py new file mode 100644 index 0000000..9a36249 --- /dev/null +++ b/web/yutian_top/main.py @@ -0,0 +1,148 @@ +import time + +import pandas as pd + +from Requests_Except import MR + +base_url = 'www.yutian.top' +protocol = 'https' +default_headers = { + "accept": "application/json, text/plain, */*", + "accept-language": "zh-CN,zh;q=0.9,en;q=0.8", + "cache-control": "no-cache", + "content-type": "application/json;charset=UTF-8", + "origin": "https://www.yutian.top", + "pragma": "no-cache", + "priority": "u=1, i", + "referer": "https://www.yutian.top/enterprise/resume_store/list", + "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\", \"Google Chrome\";v=\"138\"", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "\"Windows\"", + "sec-fetch-dest": "empty", + "sec-fetch-mode": "cors", + "sec-fetch-site": "same-origin", + "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36" +} + +default_cookies = { + "PHPSESSID": "8622ac2f6caf545585d9b3c4537bc036", + "auth-token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE3NTQ4NzUzOTksImp0aSI6IjMxMzY5YmQ3LTIwOTMtNGI4Ni04ZGY3LWUzZTY1NDhjOTg0OCIsIm5hbWUiOiIxODYxNzg3MjE4NSIsInVzZXJfaWQiOiIwM2M2MmI5ODM4Yjk3Y2UzYmQxZTQwNDllZGVlNmI0OCIsInRlbmFudF90b2tlbiI6IjY1OTAxM2RlNjAxZmJmNjg1MzZmYTU0OTc4ODVkMTA2In0.TYpA94cCO7-HCeeksicrtpBDJB2AsbBvsuGBrJiFVWU", + "company_sign": "", + "company_nonce": "", + "cuid": "" +} +Requests = MR(base_url, protocol, proxy_options=False) +Requests.set_default_headers(default_headers) +Requests.set_default_cookies(default_cookies) +# print(Requests.session.proxies) +pd_data = { + 'resume_id': [], + '姓名': [], # user_name + '求职区域': [], # area_show + '生日': [], # birthday + '学历': [], # education_level_msg + '学校': [], # education.school + '期望职务': [], # expect_job + '最后活跃时间': [], # last_edit_time + '婚姻': [], # marry_status_show + '现居地': [], # residence + '年龄': [], # user_age + '电话': [], # phone_encrypt + '性别': [], # sex_show + '求职类型': [], # work_type_show + '求职状态': [], # work_status_show + '工作1经历': [], + '工作1时间': [], + '工作1内容': [], + '工作2经历': [], + '工作2时间': [], + '工作2内容': [], + '工作3经历': [], + '工作3时间': [], + '工作3内容': [], + '工作4经历': [], + '工作4时间': [], + '工作4内容': [], +} +resume_list = [] + + +def get_page(key_word, step=100): + json_data = { + 'step': step, + 'page': 1, + 'education_level': [], + 'arrival_time': [], + 'work_time': [], + 'area_id': [], + 'keywords': key_word, + 'work_status': '', + 'work_status_show': '求职状态', + 'category_id': '', + 'work_type': '', + 'work_type_show': '是否兼职', + 'sex': '', + 'sex_show': '性别', + 'is_head': '', + 'is_head_show': '有无照片', + 'job_id': '', + 'age': [], + 'age_show': '年龄', + 'refresh_time': 0, + 'site_id': '', + 'site_id2': '', + 'province': '', + 'city': '', + 'county': '', + 'provinceArr': [], + 'cityArr': [], + 'countyArr': [], + 'only_job_category': 0, +} + url = '/job/company/v1/resume/page' + resp = Requests.post(url, json=json_data) + return resp.to_Dict() + + +def organize_information_into_to_pandas(keyword): + resp_obj = get_page(keyword, 100) + for i in resp_obj.data: + # resume_info = get_resume_info(i.resume_id) + pd_data['resume_id'].append(i.resume_id) + pd_data['姓名'].append(i.user_name) + pd_data['求职区域'].append(i.area_show) + pd_data['生日'].append(i.birthday) + pd_data['学历'].append(i.education_level_msg) + pd_data['学校'].append(';'.join([edu.school for edu in i.education])) + pd_data['期望职务'].append(i.expect_job) + pd_data['最后活跃时间'].append(i.last_edit_time) + pd_data['婚姻'].append(i.marry_status_show) + pd_data['现居地'].append(i.residence) + pd_data['年龄'].append(i.user_age) + pd_data['电话'].append(i.phone_encrypt) + pd_data['性别'].append(i.sex_show) + pd_data['求职类型'].append(i.work_type_show) + pd_data['求职状态'].append(i.work_status_show) + experience = i.experience + for j in range(4): + if j < len(experience) and experience[j].company: + company = experience[j].company + time_line = experience[j].time_line + content = experience[j].content + else: + company = '' + time_line = '' + content = '' + pd_data[f'工作{j + 1}经历'].append(company) + pd_data[f'工作{j + 1}时间'].append(time_line) + pd_data[f'工作{j + 1}内容'].append(content) + + +def main(keyword): + organize_information_into_to_pandas(keyword) + df = pd.DataFrame(pd_data) + df.to_excel(keyword+"_"+str(int(time.time())) + '.xlsx', index=False) + + +if __name__ == '__main__': + main("看护") diff --git a/web/yutian_top/pic_code_demo.py b/web/yutian_top/pic_code_demo.py new file mode 100644 index 0000000..7806548 --- /dev/null +++ b/web/yutian_top/pic_code_demo.py @@ -0,0 +1,20 @@ +from PIL import Image, ImageFilter, ImageOps +import ddddocr +import io + +def preprocess_image(image_path, threshold=160): + img = Image.open(image_path).convert('L') # 灰度 + img = img.point(lambda x: 0 if x < threshold else 255, '1') # 二值化 + img = img.filter(ImageFilter.MedianFilter(size=3)) # 去噪 + img = ImageOps.invert(img.convert('L')).convert('1') # 反色处理 + buf = io.BytesIO() + img.save(buf, format='PNG') + return buf.getvalue() + +def recognize_image(image_path): + ocr = ddddocr.DdddOcr() + clean_image = preprocess_image(image_path) + return ocr.classification(clean_image) + +if __name__ == '__main__': + print('识别结果:', recognize_image('picture.png')) diff --git a/web/yutian_top/picture.png b/web/yutian_top/picture.png new file mode 100644 index 0000000..44118db Binary files /dev/null and b/web/yutian_top/picture.png differ diff --git a/web/yutian_top/test.py b/web/yutian_top/test.py new file mode 100644 index 0000000..f185e36 --- /dev/null +++ b/web/yutian_top/test.py @@ -0,0 +1,5 @@ +import os + +print("环境变量 HTTP_PROXY:", os.environ.get("HTTP_PROXY")) +print("环境变量 HTTPS_PROXY:", os.environ.get("HTTPS_PROXY")) +print("环境变量 ALL_PROXY:", os.environ.get("ALL_PROXY")) diff --git a/web/yutian_top/yutian_top.zip b/web/yutian_top/yutian_top.zip new file mode 100644 index 0000000..62e8a98 Binary files /dev/null and b/web/yutian_top/yutian_top.zip differ diff --git a/web/zhrczp_com/Download.py b/web/zhrczp_com/Download.py new file mode 100644 index 0000000..c890b17 --- /dev/null +++ b/web/zhrczp_com/Download.py @@ -0,0 +1,156 @@ +import datetime + +import pandas as pd +from lxml import etree +from pathlib import Path +from Requests_Except import * + +base_url = 'www.zhrczp.com' +protocol = 'https' +default_headers = { + 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7', + 'Accept-Language': 'zh-CN,zh;q=0.9', + 'Cache-Control': 'no-cache', + 'Connection': 'keep-alive', + 'Pragma': 'no-cache', + 'Referer': 'https://www.zhrczp.com/member/index.php?c=resume&jobin=76&jobclass_search=76&cityin=&cityclass_search=&keyword=&minsalary=&maxsalary=&minage=&maxage=&exp=&edu=&uptime=&sex=&type=', + 'Sec-Fetch-Dest': 'document', + 'Sec-Fetch-Mode': 'navigate', + 'Sec-Fetch-Site': 'same-origin', + 'Sec-Fetch-User': '?1', + 'Upgrade-Insecure-Requests': '1', + 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', + 'sec-ch-ua': '"Chromium";v="134", "Not:A-Brand";v="24", "Google Chrome";v="134"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-platform': '"Windows"', +} +Requests = MR(base_url, protocol) +Requests.set_default_headers(default_headers) + +excelfilepath = r"C:\Users\Franklin_Kali\Documents\WeChat Files\w19960619\FileStorage\File\2025-06\遵化电话.xlsx" +xlsx_name = str(Path(excelfilepath).stem) + +def get_search_page(keyword_id, page): + params = { + 'c': 'resume', + 'jobin': str(keyword_id), + 'jobclass_search': str(keyword_id), + 'cityin': '', + 'cityclass_search': '', + 'keyword': '', + 'minsalary': '', + 'maxsalary': '', + 'minage': '', + 'maxage': '', + 'exp': '', + 'edu': '', + 'uptime': '', + 'sex': '', + 'type': '', + 'page': str(page), + } + url = '/member/index.php' + resp = Requests.get(url, params=params) + res = re.findall(r"com_lookresume_check\('(.+?)','1'\)", resp.text) + return res + + +def read_excel2df(file_path): + df = pd.read_excel(file_path) + return df + + +def get_resume_list(df): + resume_id_list = [] + for index, row in df.iterrows(): + resume_id_list.append(row['resume_id']) + return resume_id_list + + +def get_cookies(): + url = '/login/c_loginsave.html' + data = { + 'act_login': '0', + 'num': '2', + 'referurl': 'https://www.zhrczp.com/', + 'username': '18713831026', + 'password': '18713831026', + 'loginname': '0', + 'authcode': '', + 'verify_token': '', + 'verify_str': '', + } + resp = Requests.post(url, data=data) + return resp.cookies_dict() + + +def get_resumeInfo(resume_id): + url = '/member/index.php' + params = { + 'c': 'hr', + 'act': 'resumeInfo', + 'eid': str(resume_id), + 'state': '', + 'from': 'rck', + } + resp = Requests.get(url, params=params) + return resp.xpath(), resp.text + + +def get_phone(xpath): + phone = xpath.xpath('//div[contains(text(), "手机")]/span/text()') + return phone[0].strip() if phone else '' + + +def get_email(xpath): + email = xpath.xpath('//div[contains(text(), "邮箱")]/text()') + if not email: + return '' + email = re.search(r'[\w\.-]+@[\w\.-]+', ''.join(email[0])).group() + return email if email else '' + + +def post_phone(resume_id): + url = '/index.php' + params = { + 'm': 'ajax', + 'c': 'for_link', + } + + data = { + 'eid': str(resume_id), + } + resp = Requests.post(url, params=params, data=data) + return resp.json() + +def data_integration(): + df = read_excel2df(excelfilepath) + resume_list = get_resume_list(df) + phones = [] + emails = [] + for resume_id in resume_list: + phone = '' + email = '' + xobj, html = get_resumeInfo(resume_id) + + phone = get_phone(xobj) + email = get_email(xobj) + + if phone == '' and email == '': + data = post_phone(resume_id) + if data.get('msg') == '请先登录!': + Requests.set_default_cookies(get_cookies()) + if data.get('html'): + xobj = etree.HTML(data.get('html')) + phone = get_phone(xobj) + email = get_email(xobj) + + phones.append(phone) + emails.append(email) + + df['phone'] = phones + df['email'] = emails + df.to_excel(f'遵化_{datetime.datetime.now():%Y%m%d%H%M%S}_{xlsx_name}_p.xlsx', index=False) + +if __name__ == '__main__': + data_integration() diff --git a/web/zhrczp_com/Requests_Except.py b/web/zhrczp_com/Requests_Except.py new file mode 100644 index 0000000..c79d991 --- /dev/null +++ b/web/zhrczp_com/Requests_Except.py @@ -0,0 +1,201 @@ +import json +import re +import requests +import logging +import time +from lxml import etree +from types import SimpleNamespace + +logging.basicConfig(level=logging.DEBUG, format='%(asctime)s - %(levelname)s - %(message)s') + + +class ExtendedResponse(requests.Response): + def xpath(self): + try: + tree = etree.HTML(self.text) + return tree + except Exception as e: + raise ValueError("XPath解析错误: " + str(e)) + + def to_Dict(self): + try: + data = self.json() + return self.dict_to_obj(data) + except Exception as e: + raise ValueError("JSON转换错误: " + str(e)) + + def to_Re_findall(self, regex): + try: + data = self.text + return re.findall(regex, data) + except Exception as e: + raise ValueError("Re搜索错误: " + str(e)) + + def cookies_dict(self): + try: + # 获取原有的 cookies 字典 + cookie_dict = self.cookies.get_dict() + # 如果响应头中有 Set-Cookie,则解析并补充 cookies + if 'Set-Cookie' in self.headers: + from http.cookies import SimpleCookie + sc = SimpleCookie() + sc.load(self.headers['Set-Cookie']) + for key, morsel in sc.items(): + cookie_dict[key] = morsel.value + return cookie_dict + except Exception as e: + raise ValueError("Cookies转换错误: " + str(e)) + + def save_cookies(self, filepath, format='json'): + """ + 将当前响应中的cookie信息保存到指定文件中。 + + 参数: + filepath (str): 保存文件的路径 + format (str): 保存格式,支持 'json'、'pickle' 和 'txt' 三种格式,默认为 'json' + """ + try: + cookie_dict = self.cookies_dict() + if format.lower() == 'json': + with open(filepath, 'w', encoding='utf-8') as f: + json.dump(cookie_dict, f, ensure_ascii=False, indent=4) + elif format.lower() == 'pickle': + import pickle + with open(filepath, 'wb') as f: + pickle.dump(cookie_dict, f) + elif format.lower() == 'txt': + with open(filepath, 'w', encoding='utf-8') as f: + for key, value in cookie_dict.items(): + f.write(f"{key}: {value}\n") + else: + raise ValueError("不支持的格式,请选择 'json'、'pickle' 或 'txt'") + except Exception as e: + raise ValueError("保存cookies出错: " + str(e)) + + @staticmethod + def dict_to_obj(d): + if isinstance(d, dict): + return SimpleNamespace(**{k: ExtendedResponse.dict_to_obj(v) for k, v in d.items()}) + elif isinstance(d, list): + return [ExtendedResponse.dict_to_obj(item) for item in d] + else: + return d + + +class MyRequests: + def __init__(self, base_url, protocol='http', retries=3, proxy_options=True, default_timeout=10, + default_cookies=None): + """ + 初始化 MyRequests 对象,自动加载本地 cookies 文件(根据 base_url 生成文件名,如 "www_zhrczp_com_cookies.json")中的 cookies, + 如果文件存在,则将其加载到 session 中;否则使用 default_cookies(如果提供)更新 session。 + + 参数: + base_url (str): 基础 URL + protocol (str): 协议(默认为 'http') + retries (int): 请求重试次数 + proxy_options (bool): 是否使用代理 + default_timeout (int): 默认超时时间 + default_cookies (dict): 默认的 cookies 字典 + """ + self.base_url = base_url.rstrip('/') + self.protocol = protocol + self.retries = retries + self.default_timeout = default_timeout + self.session = requests.Session() + + if proxy_options: + self.session.proxies = {"http": "http://127.0.0.1:7890", "https": "http://127.0.0.1:7890"} + + # 优先使用传入的 default_cookies 更新 session + if default_cookies: + self.session.cookies.update(default_cookies) + + # 根据 base_url 生成 cookies 文件名,将 '.' 替换为 '_' + self.cookie_file = f"{self.base_url.replace('.', '_')}_cookies.json" + # 尝试加载本地已保存的 cookies 文件 + try: + with open(self.cookie_file, 'r', encoding='utf-8') as f: + loaded_cookies = json.load(f) + self.session.cookies.update(loaded_cookies) + logging.info("成功加载本地 cookies") + except FileNotFoundError: + logging.info("本地 cookies 文件不存在,将在请求后自动保存") + except Exception as e: + logging.error("加载本地 cookies 失败:" + str(e)) + + def _save_cookies(self): + """ + 将当前 session 中的 cookies 保存到本地文件(基于 base_url 的文件名),以 JSON 格式存储。 + """ + try: + with open(self.cookie_file, 'w', encoding='utf-8') as f: + json.dump(self.session.cookies.get_dict(), f, ensure_ascii=False, indent=4) + logging.info("cookies 已保存到本地文件:" + self.cookie_file) + except Exception as e: + logging.error("保存 cookies 文件失败:" + str(e)) + + def _build_url(self, url): + if url.startswith("http://") or url.startswith("https://"): + return url + return f"{self.protocol}://{self.base_url}/{url.lstrip('/')}" + + def set_default_headers(self, headers): + self.session.headers.update(headers) + + def set_default_cookies(self, cookies): + self.session.cookies.update(cookies) + self._save_cookies() + + def get(self, url, params=None, headers=None, cookies=None, **kwargs): + full_url = self._build_url(url) + return self._request("GET", full_url, params=params, headers=headers, cookies=cookies, **kwargs) + + def post(self, url, data=None, json=None, headers=None, cookies=None, **kwargs): + full_url = self._build_url(url) + return self._request("POST", full_url, data=data, json=json, headers=headers, cookies=cookies, **kwargs) + + def update(self, url, data=None, json=None, headers=None, cookies=None, **kwargs): + full_url = self._build_url(url) + return self._request("PUT", full_url, data=data, json=json, headers=headers, cookies=cookies, **kwargs) + + def delete(self, url, params=None, headers=None, cookies=None, **kwargs): + full_url = self._build_url(url) + return self._request("DELETE", full_url, params=params, headers=headers, cookies=cookies, **kwargs) + + def _request(self, method, url, retries=None, **kwargs): + if retries is None: + retries = self.retries + if 'timeout' not in kwargs: + kwargs['timeout'] = self.default_timeout + if 'headers' in kwargs and kwargs['headers']: + headers = kwargs['headers'] + if 'referer' in headers: + headers['referer'] = self._build_url(headers['referer']) + try: + response = self.session.request(method, url, **kwargs) + response.raise_for_status() + # 更新 session 中的 cookies + self.session.cookies.update(response.cookies) + # 保存更新后的 cookies 到本地文件 + self._save_cookies() + # 将 response 转换为扩展后的响应类 + response.__class__ = ExtendedResponse + return response + except Exception as e: + if retries > 0: + logging.warning(f"请求 {method} {url} 失败,剩余重试次数 {retries},错误: {e}") + time.sleep(2 ** (self.retries - retries)) + return self._request(method, url, retries=retries - 1, **kwargs) + else: + logging.error(f"请求 {method} {url} 重试次数用尽") + raise e + + def get_cookies(self): + try: + return self.session.cookies.get_dict() + except Exception as e: + raise ValueError("获取 cookies 失败:" + str(e)) + + +class MR(MyRequests): + pass \ No newline at end of file diff --git a/web/zhrczp_com/get_company.py b/web/zhrczp_com/get_company.py new file mode 100644 index 0000000..0e7c683 --- /dev/null +++ b/web/zhrczp_com/get_company.py @@ -0,0 +1,113 @@ +import sys, os + +project_root = os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "..")) +if project_root not in sys.path: + sys.path.insert(0, project_root) + +from web.Requests_Except import MR + +base_url = 'www.zhrczp.com' +protocol = 'https' +default_headers = { + 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7', + 'Accept-Language': 'zh-CN,zh;q=0.9', + 'Cache-Control': 'no-cache', + 'Connection': 'keep-alive', + 'Pragma': 'no-cache', + 'Referer': 'https://www.zhrczp.com/member/index.php?c=resume&jobin=76&jobclass_search=76&cityin=&cityclass_search=&keyword=&minsalary=&maxsalary=&minage=&maxage=&exp=&edu=&uptime=&sex=&type=', + 'Sec-Fetch-Dest': 'document', + 'Sec-Fetch-Mode': 'navigate', + 'Sec-Fetch-Site': 'same-origin', + 'Sec-Fetch-User': '?1', + 'Upgrade-Insecure-Requests': '1', + 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', + 'sec-ch-ua': '"Chromium";v="134", "Not:A-Brand";v="24", "Google Chrome";v="134"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-platform': '"Windows"', +} +Requests = MR(base_url, protocol) +Requests.set_default_headers(default_headers) + + +def data_cleaning(xpathobj) -> dict: + # name_xlist = xpathobj.xpath('//h1/a/text()') + # name = name_xlist[0] if name_xlist else "" + # compary_info_xlist = xpathobj.xpath('//div[@class="com_details_info"]/text()') + # if compary_info_xlist: + # compary_info_list = [info.strip() for info in compary_info_xlist if info.strip()] + # category = compary_info_list[1] + # company_type = compary_info_list[2] + # size = compary_info_list[3] + # if len(compary_info_list) > 4: + # founded_date = compary_info_list[4] + # else: + # founded_date = "" + # else: + # category = "" + # company_type = "" + # size = "" + # founded_date = "" + # benefits_xlist = xpathobj.xpath('//div[@class="com_welfare "]/span/text()') + # if benefits_xlist: + # benefits_str = " | ".join(benefits_xlist) + # else: + # benefits_str = "" + # introduction_xlist = xpathobj.xpath('//div[@class="company_img_auto"]/p/text()') + # if not introduction_xlist: + # introduction_xlist = xpathobj.xpath('//div[@class="company_img_auto"]/text()') + # if not introduction_xlist: + # introduction_xlist = xpathobj.xpath('//div[@class="company_img_auto"]/p/span/text()') + # if introduction_xlist: + # introduction = "\r\n".join([info.strip() for info in introduction_xlist if info.strip()]) + # else: + # introduction = "" + # address_xlist = xpathobj.xpath('//div[@class="com_details_tel_me"]/div/text()') + # if address_xlist: + # address = address_xlist[0].strip() + # else: + # address = "" + # if name != "" and introduction != "": + # company_data = { + # "name": name, + # "category": category, + # "size": size, + # "company_type": company_type, + # "founded_date": founded_date, + # "introduction": introduction, + # "address": address, + # "benefits": benefits_str, + # "website": 1, + # } + # else: + # company_data = None + # return company_data + name = xpathobj.xpath('//h1[@class="company-header-top-detail-name hide-txt"]/text()')[0].strip() + category = xpathobj.xpath('//div[@class="company-header-bottom-item-text hide-txt"]/text()')[0].strip() + size = xpathobj.xpath('//div[@class="company-header-bottom-item-text hide-txt"]/text()')[0].strip() + # data = { + # "name": name, # 公司名称,例如 "字节跳动" + # "category": category, # 行业类别,例如 "互联网/软件/信息技术" + # "size": size, # 公司规模,例如 "1000人以上" + # "company_type": company_type, # 公司性质,例如 "民营", "外企", "国企" + # "founded_date": founded_date, # 成立时间,推荐格式 "YYYY-MM-DD" 或 "2010年" + # "introduction": introduction, # 公司简介/介绍,字符串类型 + # "address": address, # 公司地址,完整的办公地点描述 + # "benefits": benefits_str, # 员工福利,例如 "五险一金, 带薪年假, 免费下午茶" + # "website": 1, # 是否有官网,1 表示有,0 表示无(注意:这里可能是布尔值标志,不是真正的网址) + # } + + print(name) + print(category) + print(size) + +def get_company_page(page: int): + url = f"/company/{page}.html" + res = Requests.get(url, timeout=10) + with open("zhrczp_com_company.html", "w", encoding="utf-8") as f: + f.write(res.text) + return data_cleaning(res.xpath()) + + +if __name__ == '__main__': + # for page in range(1, 1000): + print(get_company_page(3273)) diff --git a/web/zhrczp_com/get_position.py b/web/zhrczp_com/get_position.py new file mode 100644 index 0000000..fb4e3d0 --- /dev/null +++ b/web/zhrczp_com/get_position.py @@ -0,0 +1,129 @@ +import re +import sys, os + +from lxml.html.diff import href_token + +project_root = os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "..")) +if project_root not in sys.path: + sys.path.insert(0, project_root) + +from web.Requests_Except import MR + +base_url = 'www.zhrczp.com' +protocol = 'https' +default_headers = { + 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7', + 'Accept-Language': 'zh-CN,zh;q=0.9', + 'Cache-Control': 'no-cache', + 'Connection': 'keep-alive', + 'Pragma': 'no-cache', + 'Sec-Fetch-Dest': 'document', + 'Sec-Fetch-Mode': 'navigate', + 'Sec-Fetch-Site': 'same-origin', + 'Sec-Fetch-User': '?1', + 'Upgrade-Insecure-Requests': '1', + 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', + 'sec-ch-ua': '"Chromium";v="134", "Not:A-Brand";v="24", "Google Chrome";v="134"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-platform': '"Windows"', +} +Requests = MR(base_url, protocol) +Requests.set_default_headers(default_headers) + + +def get_position_page(page: int): + url = f"https://www.zhrczp.com/job/list/0-0-0-0_0_0_0_0_0_0_0-0-0-0-{page}.html" + res = Requests.get(url, timeout=10) + return res.xpath() + + +def get_position(xpathobj) -> dict: + href_list = xpathobj.xpath("//div[@class='yunjoblist_newname']/a/@href") + if href_list: + for href in href_list: + href = href.strip() + if href: + position_res = Requests.get(href, timeout=10) + xpathobj = position_res.xpath() + title_xlist = xpathobj.xpath('//h1[@clss="job_details_name"]/text()') + title = "" + if title_xlist: + title = title_xlist[0].strip() + nature = "全职" + category = "" + region_xlist = xpathobj.xpath('//div[@class="job_details_info"]/text()') + if region_xlist: + region_info = [region.strip() for region in region_xlist] + region = "" + experience = "" + education = "" + if len(region_info) == 3: + region = region_info[0] + experience = region_info[1] + education = region_info[2] + elif len(region_info) == 4 and "应届" in region_info[3]: + region = region_info[0] + experience = region_info[1] + education = region_info[2] + " " + region_info[3] + else: + print(region_info) + + salary_xlist = xpathobj.xpath('//span[@class="job_details_salary_n"]/text()') + salary = "" + if salary_xlist: + salary = salary_xlist[0].strip() + position_status = 1 + description_xlist = xpathobj.xpath('//div[@class="job_details_describe"]/text()') + + description = "" + if description_xlist: + description = "\r\n".join([desc.strip() for desc in description_xlist if desc.strip()]) + + contact_name_xlist = xpathobj.xpath('//span[@class="job_details_touch_username"]/text()') + contact_name = "" + if contact_name_xlist: + contact_name = contact_name_xlist[0].strip() + + contact_info_xlist = xpathobj.xpath('//span[@class="job_details_touch_tel_n"]/text()') + contact_info = "" + if contact_info_xlist: + contact_info = contact_info_xlist[0].strip() + + benefits_xlist = xpathobj.xpath('//div[@class="job_details_welfare "]/span/text()') + benefits = "" + if benefits_xlist: + benefits = " | ".join([benefit.strip() for benefit in benefits_xlist if benefit.strip()]) + company_name_xlist = xpathobj.xpath('//div[@class="Compply_right_name"]/a/text()') + company_name = "" + if company_name_xlist: + company_name = company_name_xlist[0].strip() + openings_xlist = xpathobj.xpath('//span[@class="job_details_describe_yq"]/text()') + openings = 1 # 默认招聘人数为1 + if openings_xlist: + try: + openings_str = openings_xlist[0].strip() + openings_content = re.findall(r"(\d+)", openings_str)[0] + openings = int(openings_content) + except ValueError: + openings = 1 + data = { + "title": title, + "nature": nature, + "category": category, + "region": region, + "experience": experience, + "education": education, + "salary": salary, + "position_status": position_status, + "description": description, + "contact_name": contact_name, + "contact_info": contact_info, + "benefits": benefits, + "openings": openings, # 默认招聘人数为1 + "website_id": 1, + "company_name": company_name, + } + + +if __name__ == '__main__': + get_position(get_position_page(1)) diff --git a/web/zhrczp_com/main.py b/web/zhrczp_com/main.py new file mode 100644 index 0000000..a99177d --- /dev/null +++ b/web/zhrczp_com/main.py @@ -0,0 +1,249 @@ +from datetime import datetime +import re + +import pandas as pd + +from Requests_Except import * + +base_url = 'www.zhrczp.com' +protocol = 'https' +default_headers = { + 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7', + 'Accept-Language': 'zh-CN,zh;q=0.9', + 'Cache-Control': 'no-cache', + 'Connection': 'keep-alive', + 'Pragma': 'no-cache', + 'Referer': 'https://www.zhrczp.com/member/index.php?c=resume&jobin=76&jobclass_search=76&cityin=&cityclass_search=&keyword=&minsalary=&maxsalary=&minage=&maxage=&exp=&edu=&uptime=&sex=&type=', + 'Sec-Fetch-Dest': 'document', + 'Sec-Fetch-Mode': 'navigate', + 'Sec-Fetch-Site': 'same-origin', + 'Sec-Fetch-User': '?1', + 'Upgrade-Insecure-Requests': '1', + 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36', + 'sec-ch-ua': '"Chromium";v="134", "Not:A-Brand";v="24", "Google Chrome";v="134"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-platform': '"Windows"', +} +jobclass_search_list = [53] # 76护工 46 医院护理类,只有搜索 类型 405 会计;;43 财务;19:司机;出租车司机;249 电工 + +Requests = MR(base_url, protocol) +Requests.set_default_headers(default_headers) + +pd_data = { + 'resume_id': [], + '姓名': [], + '年龄': [], + '身高': [], + '体重': [], + '工作经验': [], + '最高学历': [], + '婚姻状态': [], + '民族': [], + '现居住地': [], + '更新时间': [], + '工作职能': [], + '意向岗位': [], + '从事行业': [], + '期望薪资': [], + '到岗时间': [], + '工作性质': [], + '求职状态': [], + '工作地点': [], +} + + +def get_search_page(keyword_id, page): + params = { + 'c': 'resume', + 'jobin': str(keyword_id), + 'jobclass_search': str(keyword_id), + 'cityin': '', + 'cityclass_search': '', + 'keyword': '', + 'minsalary': '', + 'maxsalary': '', + 'minage': '', + 'maxage': '', + 'exp': '', + 'edu': '', + 'uptime': '', + 'sex': '', + 'type': '', + 'page': str(page), + } + url = '/member/index.php' + resp = Requests.get(url, params=params) + return resp.text, resp.status_code + + +def get_resume_list(): + resume_id_list = [] + previous_page_html = '' + for keyword_id in jobclass_search_list: + for page in range(1, 6): + html, rest_code = get_search_page(keyword_id, page) + if rest_code != 200: + print(rest_code, type(rest_code)) + if html == previous_page_html: + print('切换下一类型') + break + else: + previous_page_html = html + + res = re.findall(r"com_lookresume_check\('(.+?)','1'\)", html) + resume_id_list += list(set(res)) + return resume_id_list + + +def get_resumeInfo(resume_id): + url = '/member/index.php' + params = { + 'c': 'hr', + 'act': 'resumeInfo', + 'eid': str(resume_id), + 'state': '', + 'from': 'rck', + } + resp = Requests.get(url, params=params) + return resp.xpath() + + +def extract_info(item): + text = " ".join(item) + + # 年龄 + age_match = re.search(r'(\d{2})岁', text) + age = age_match.group(1) if age_match else '' + + # 身高 + height_match = re.search(r'(\d{2,3})\s*cm', text, re.IGNORECASE) + height = height_match.group(1) if height_match else '' + + # 体重 + weight_match = re.search(r'(\d{2,3})\s*(kg|公斤)', text, re.IGNORECASE) + weight = weight_match.group(1) if weight_match else '' + + # 工作经验 + exp_match = re.search( + r'(无经验|1年以下|\d{1,2}-\d{1,2}年|(?:\d{1,2})年以上|(?:\d{1,2})年经验)', + text + ) + experience = exp_match.group(1) if exp_match else '' + + # 学历 + edu_match = re.search(r'(初中|高中|中专|大专|本科|硕士|博士)', text) + education = edu_match.group(1) if edu_match else '' + + # 婚姻状态 + marital_match = re.search(r'(已婚|未婚)', text) + marital = marital_match.group(1) if marital_match else '' + + # 民族 + ethnic_match = re.search(r'(汉|满|回|壮|蒙古)', text) + ethnic = ethnic_match.group(1) if ethnic_match else '' + + return { + 'age': age, + 'height': height, + 'weight': weight, + 'experience': experience, + 'education': education, + 'marital': marital, + 'ethnic': ethnic + } + +def info_to_dict(info): + name = info.xpath('//span[@class="hr_resume_username"]/text()') + + # 基本信息(年龄、身高、体重、经验、学历、婚姻、民族、现居地) + parts_raw = info.xpath('//div[@class="hr_resume_info"]/text()') + extra_span = info.xpath('//div[@class="hr_resume_info"]/span/text()') # 民族如“汉”可能在 + parts = parts_raw[0] if parts_raw else '' + if parts: + cleaned = re.sub(r'\s+', ' ', parts).strip() + parts = [p.strip() for p in cleaned.split('·') if p.strip()] + if extra_span: + parts.append(extra_span[0].strip()) # 把民族添加进去 + + # 处理现居住地(通常在最后) + current_location = '' + if parts and '现居' in parts[-1]: + current_location = parts[-1] + parts = parts[:-1] + + # 更新时间 + update_time = info.xpath('//span[@class="hr_resume_time_l "]/text()') + parts_dict = extract_info(parts) + # 求职意向部分 XPath 提取 + job_funcs = info.xpath('//span[@class="yun_newedition_yx_job"]/text()') + job_titles = info.xpath('//li[span[contains(text(),"意向岗位")]]/text()') + industry = info.xpath('//li[span[contains(text(),"从事行业")]]/text()') + salary = info.xpath('//li[span[contains(text(),"期望薪资")]]/text()') + report_time = info.xpath('//li[span[contains(text(),"到岗时间")]]/text()') + job_type = info.xpath('//li[span[contains(text(),"工作性质")]]/text()') + job_status = info.xpath('//li[span[contains(text(),"求职状态")]]/text()') # 新增 + location = info.xpath('//li[span[contains(text(),"工作地点")]]/text()') + + # 数据整合 + data = { + '姓名': name[0].strip() if name else '', + '年龄': parts_dict.get('age', ''), + '身高': parts_dict.get('height', ''), + '体重': parts_dict.get('weight', ''), + '工作经验': parts_dict.get('experience', ''), + '最高学历': parts_dict.get('education', ''), + '婚姻状态': parts_dict.get('marital', ''), + '民族': parts_dict.get('ethnic', ''), + '现居住地': current_location.replace('现居', '').strip(), + '更新时间': update_time[0][3:].strip() if update_time else '', + # 求职意向 + '工作职能': ', '.join([j.strip() for j in job_funcs]), + '意向岗位': job_titles[0].strip() if job_titles else '', + '从事行业': industry[0].strip() if industry else '', + '期望薪资': salary[0].strip() if salary else '', + '到岗时间': report_time[0].strip() if report_time else '', + '工作性质': job_type[0].strip() if job_type else '', + '求职状态': job_status[0].strip() if job_status else '', + '工作地点': location[0].strip() if location else '', + } + + return data + + +def get_cookies(): + url = '/login/c_loginsave.html' + data = { + 'act_login': '0', + 'num': '2', + 'referurl': 'https://www.zhrczp.com/', + 'username': '18713831026', + 'password': '18713831026', + 'loginname': '0', + 'authcode': '', + 'verify_token': '', + 'verify_str': '', + } + resp = Requests.post(url, data=data) + return resp.cookies_dict() + + +def data_integration(): + resume_list = get_resume_list() + if len(resume_list) < 1: + cookies = get_cookies() + Requests.set_default_cookies(cookies) + resume_list = get_resume_list() + for i in resume_list: + data = info_to_dict(get_resumeInfo(i)) + for key, value in data.items(): + print(key, value) + pd_data[key].append(value) + pd_data['resume_id'].append(i) + df = pd.DataFrame(pd_data) + df.to_excel(f'遵化_{datetime.now():%Y%m%d%H%M%S}_服务员.xlsx', index=False) + + +if __name__ == '__main__': + data_integration() + # print(get_resumeInfo('34735')) + # get_cookies() diff --git a/web/zhrczp_com/www_zhrczp_com_cookies.json b/web/zhrczp_com/www_zhrczp_com_cookies.json new file mode 100644 index 0000000..1935917 --- /dev/null +++ b/web/zhrczp_com/www_zhrczp_com_cookies.json @@ -0,0 +1,14 @@ +{ + "PHPSESSID": "oof1e1ic2gk7814h7kdehhbjsi", + "acw_tc": "1a312e5f17444425485815480e008adcaebccc801d085745472b3ae9c44c8d", + "amtype": "0", + "exprefresh": "deleted", + "jobrefresh": "deleted", + "shell": "9246a8c91784a3981081a37dd4bdcef9", + "support": "deleted", + "uid": "60531", + "userdid": "0", + "usertype": "2", + "wxbd": "deleted", + "wxloginid": "deleted" +} \ No newline at end of file diff --git a/web/zhrczp_com/zhrczp_com.zip b/web/zhrczp_com/zhrczp_com.zip new file mode 100644 index 0000000..702a9af Binary files /dev/null and b/web/zhrczp_com/zhrczp_com.zip differ diff --git a/web/zhrczp_com/zhrczp_com_company.html b/web/zhrczp_com/zhrczp_com_company.html new file mode 100644 index 0000000..3a3adbb --- /dev/null +++ b/web/zhrczp_com/zhrczp_com_company.html @@ -0,0 +1,1650 @@ + + + + + +提示信息 - 遵化人才网 - Powered by PHPYun. + + + + + + + + + + + +企业用户后台管理系统 - 遵化人才网 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        +
        +
        + +
        + 返回首页 + +
        + +
        +
        开通超级会员
        + +
        + +
        + +
        签到
        +
        +
        2025年06月
        +
        +
        1234567
        891011121314
        15161718192021
        22232425262728
        2930
        +
        + 招聘咨询电话:18632520985 +
        +
        +
        +
        +
        +
        + + +
        +
        + +
        +
        +
        +
        + + 群发消息BOOM +
        +
        + 根据发布的职位匹配人才,向人才群发信息 + 主动询问意向节约沟通时间 +
        +
        +
        +
        + +
        +
        +
        + 匹配人才 +
        +
        + 正在为您匹配符合条件的人才... +
        +
        + 已为您匹配 0 人 +
        + + +
        +
        +
        +
        +
        +
        +
        +
        + 选择职位 +
        +
        +
        + +
        +
        +
        +
        +
        + 目标人群 +
        +
        +
          +
        • +
          + 期望职位 +
          +
          +
          +
          + +
          + +
          +
          +
          +
        • +
        • +
          + 关键字 +
          +
          +
          +
          + +
          +
          +
          +
        • +
        • +
          + 性别要求 +
          +
          +
          + + + +
          +
          +
        • +
        • +
          + 年龄区间 +
          +
          +
          +
          + + +
          +
          -
          +
          + + +
          +
          +
          +
        • +
        • +
          + 经验要求 +
          +
          +
          +
          + +
          +
          +
          +
        • +
        • +
          + 学历要求 +
          +
          +
          +
          + +
          +
          +
          +
        • +
        • +
          + 活跃度 +
          +
          +
          +
          + +
          +
          +
          +
        • +
        +
        +
        +
        +
        + +
        +
        +
        + 确定打招呼 +
        +
        +
        + +
        +
        +
        +
        +
        +
        + + 群发消息BOOM +
        +
        + 根据发布的职位匹配人才,向人才群发信息 + 主动询问意向节约沟通时间 +
        +
        +
        + +
        +
        +
        + 购买次数 +
        +
        +
        +
        + 支付方式 +
        +
        +
          +
        • +
          + + 支付宝快捷支付 +
          +
        • +
        • +
          + + 微信快捷支付 +
          +
        • +
        • +
          + + 银联快捷支付 +
          +
        • +
        +
        +
        + 群发说明: + 主要是根据您发布职位的职位类型和职位详情来进行匹配的人才,使用群发消息BOOM功能批量帮您沟通,节约沟通时间。 +
        +
        +
        +
        + -- + +
        +
        + + + + + + 购买 +
        +
        +
        + +
        +
        +
        +
        +
        + + + + +
        + +
        +
        + +
        + +
        +
        +
        企业正在审核中!
        +
        9 后自动跳转,如果浏览器没有跳转,请点击立即跳转
        + +
        +
        +
        +
        +
        +
        + + + +
        + +
        +
        直聊
        +
        +
        +
        有新消息
        +
        +
        【          】
        + + + + + + +
        + + + +
        + + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + 购买 +
        +
        + 您当前拥有积分 , 本次购买需扣除积分 +
        + +
        套餐购买更优惠,升级会员享受专属特权
        +
        + + +
        +
        + 购买 +
        + +
        + 产品价格: +
        + 积分 + 原价: +
        +
        + +
        + 积分充值: + + 您当前拥有积分 + +
        +
        最低充值 30 积分,兑换比为1元=1个积分
        +
        + 需支付: + 0 +
        + +
        +
        + 选择支付方式: + + 微信扫码支付 + + 支付宝快捷支付 + + + 其他支付方式 +
        + + + + + +
        +
        + + +
        + +
        + 购买 +
        + +
        + 产品价格: +
        + 元 + 原价: +
        +
        + + +
        + 使用优惠券: + +
        + 请选择 + +
        +
        + + + +
        + 抵扣: + + 您当前拥有积分 +
        + + + + + +
        +
        + 需支付: + 0 +
        + +
        +
        + 选择支付方式: + 微信扫码支付 + 支付宝快捷支付 + + 其他支付方式 +
        + + + + + +
        +
        +
        + + + + + + + + + + + + + + + + + + + +
        + +
        当前身份:招聘企业
        + +
        + + + + + + +
        + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/web/zillow_com/about.txt b/web/zillow_com/about.txt new file mode 100644 index 0000000..f885b6f --- /dev/null +++ b/web/zillow_com/about.txt @@ -0,0 +1,7 @@ +首先,再次感谢您昨天的面试机会,以及您对我的信任和安排的编程题目。 + +在完成编程题的过程中,我注意到某些需求的细节可能需要进一步的澄清和确认。由于时间有限,我在理解需求的同时,也尽力在有限的时间内完成任务,但可能在某些细节处理上还存在改进空间。考虑到题目本身的复杂性,特别是在逆向处理和逻辑优化方面,时间的紧迫让我无法充分展现出更优化的解决方案。 + +我相信,若有更多的时间和更详细的需求说明,我将能够提供一个更完善和高质量的解决方案。未来,我将继续努力提升自己的编程能力,以更好地应对类似的挑战。 + +再次感谢您的理解和支持,期待能有机会与您进一步交流。如果有任何反馈或需要我补充说明的地方,请随时与我联系。 \ No newline at end of file diff --git a/web/zillow_com/data.csv b/web/zillow_com/data.csv new file mode 100644 index 0000000..3249d45 --- /dev/null +++ b/web/zillow_com/data.csv @@ -0,0 +1,1106 @@ +zpid,price,yearBuilt,streetAddress,bedrooms,bathrooms,responsivePhotos,timeOnZillow,pageViewCount,favoriteCount,phrases,description +2053005716,149000,1962,3531 Bronxwood Avenue #3F,1,1,https://photos.zillowstatic.com/fp/b4d67edcda4a3dec4f240e811c028b0f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/75dcee1e0558f2621da2672a09d88049-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/64e3e18fb93395ddfeb69005efa60d93-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/838d7716bc71652f5bb65a5f8f25266e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2c11bcdc176756cfdf5659f6e76f9c89-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ea6f82ce9b258ed2f67e36e0a67b5c3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/864ae3f908f13850eb84b909b8da5762-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ff4316d1978c6f343d2c48da8377ed40-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/032f983841141b7f8ffb862e8f559944-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b15ef3dd7438bb673b7c426f43252e6f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/28756d106db42a8f474a2b41ab4551d7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9b92d5a0cd6bfada03ed02886b59c3c5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/96560ef9aadec6cb6f6dff1cfec8b7ed-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/db9a7e8628481109669d3ced76e04b58-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/51b4e25ad51c5d9b5124960fcae45b2b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/00ecc145fdecae032b43fc2117c143fd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/37a07abca26376d170713645a1acf530-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d463a06100f0395550f37462705d5d7e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e2939081af19e9ada8c308a775eb947f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dca5ca764db5c540d84331f7a0465fbd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/03b2918e37dd9cd0442e80fed600d9c3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c7804bf144a2c12892e4913903653684-cc_ft_1536.jpg,289 days,1423,99,Spacious bedroom|Common laundry|Spacious unit|Natural hardwood floors|Great closet space|Great size kitchen,"Welcome to 3531 Bronxwood Ave Unit 3F in the Williamsbridge section of The Bronx. Immaculate 1Bedroom 1Bathroom unit with a beautifully distributed layout that gives you the best use of the great space thats offered. This spacious unit offers a foyer, great closet space throughout, spacious living room, formal dinning room, great size kitchen, spacious bedroom and full bath. Natural hardwood floors throughout. Common laundry with new washer & drying machines. Conveniently located steps away from the #2 & #5 Subway station, multiple bus lines, shopping hubs, schools, hospitals, major parkways and restaurants." +29829052,749000,1950,3482 Mickle Ave,4,3,https://photos.zillowstatic.com/fp/d7a6430dec70f2ddfc0c33a5633f862e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cc347d004ba071797df938ff23d3d52c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c5d69566a5a40e5a64520d76a95e5b9a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/12cb434d5e00aff8d98d6022e1b7d980-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/999bff82049a57b113059040e06675a2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/575bfdd9248edd89357f8e2e5ce62276-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e15e6cd3f489d58444f94d9303edb918-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1a45238cb7e3537184d9d2d051e4d0d3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/610878a6cc26afa0db573879cc4be871-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/abfee0f010273bcb2c64eefe9d610150-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dd8ed7cccc21eaf3f0f8532e9a28a7d7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f1f0f51b25000daaa778a161d551758d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/177e4b74f88a02c2c87f0d5878376c92-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/20b40246703c0cf4529d6a22e1bbaeab-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6589dbef861e8cfae9f9721fde847e7c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fca3eb27d3449be0576173210d4dec9b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0f79d8d2147d980707b4b19f516a4602-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/46588f31559a2b8c1f1b32917901442b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cbeb078b5a3d7c0d9f87d0d3d8eccf9d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7bcb6942cd876155e0d657b281ba589e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a35e063d3aa144edab923c9a14089dcc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4425189b4013cdd98c3a7797963adffe-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/adfd71bccd7d3dee4053620577e31de9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e63ac357e35f8c09a8b56a1c969a4444-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/820ccbbc65e929f85bf22e7d9f314c36-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d29101fd9b52740182364b8cf9170c21-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ca46775f6aaa9100e85124a81f7e94e9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d714aab8ac273a46859955aea4776d20-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/20efd5dde953b400c42c789a10116fd5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ff99553def519640cd61b618861d7801-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2333acfac77c68fd5191dc67817d719b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b66f42ce26543098d791c36b9c42df6e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0d23f429e67642690582c0509dd65c61-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6ec8b8e85223172092f6045b761e50ef-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ac697d54d4ee624b6a474644e22b584a-cc_ft_1536.jpg,2 days,285,14,,"Immaculate Newly Renovated Brick semi attached 1 Family Home with high end finishes and a very spacious walkout basement unit with separate front & rear access. Private driveway with parking for up 2-3 cars. The main unit features a spacious 3 Bedroom 1.5 Bath duplex, large beautiful balcony off the kitchen with great space for BBQ & to entertain, newly renovated kitchen with custom cabinets, stainless appliances, Quartz counter tops, recessed lighting throughout, beautiful hardwood floors throughout, newly renovated bathrooms, beautiful wainscoting panel on the main level that offers a touch of elegance, 3 huge bedrooms, Walkout basement unit offers a spacious living room, dining room full bath, large bedroom, separate laundry room, central heat. Spacious back yard. Great opportunity to own this one of a kind unique home. Conveniently located steps away from Subway stations #5 & #2 lines, multiple bus lines BX8 & BX31, major highways, shopping hubs, schools, restaurants and public parks." +83178236,2899900,2008,640 W 237th St #20B,4,5,https://photos.zillowstatic.com/fp/b48f0810c9fd5ea92129f1a730315410-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8e63732b6ce38dd9f759c472281db411-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4c366d6fe3b31d030e5228428f31223c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c3175f53587e03118a009792bce7f842-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/68da521ccc8628612c10c8d5b929f47c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/95b0eb045e08005259a22bcba4cd3708-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/84dae65ea81de063925dac98d49b84ee-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/57992b28c3018f8adc599486cbef0542-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/38f19aabe4fae9f8c5a89b9375a2da72-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8cec1de425562e980b1e77a4f34722ca-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6f205ad2205c9657eb971a6a44756c0c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/31a9ac6cf2a49bb6d0f8e0af5d2d5a7e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/72778300cfdaa05bab723dd6ec9d865e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7592763228b872c6420c300e94a63e08-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e656c36e9e1e67e9fa05c281305294bf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ff194a53ff966febcee3485d4242da3e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ef7426f3739c57c251873d17d20c11b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bf08a1b8ec806e5e8eade49910954dba-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/16dd8edd2fd58db75c46797072104cba-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ffdb1095252afdece3c05aa22bf893ca-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fa0d9b8b16aa3ef8765b2d1070079498-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/45543643ab8befd2ec30e5084951a5fc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f03f4ad109474bd7cdc58ff804a144d2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/36cb51c2ca969c1f8cd23e9b66bb1798-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fdf9689a143d02a204010163fb8bd24a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b1e596c90915e2e7bdad2c56970f199a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fb5e751ce98aec1a45d6417630e9542d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/acde1a60a3bd2501aaa113fc93ee4370-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bd13a9bcc0a63a85e535a6f63174397b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b17dc91451fdf9eb2ce00026b7bfdf02-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/25be66c60e8167222e6d4aca6571f675-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c5f1bc399b92bb7cef58ec38393c3872-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cac3be8d337e73102e0c68db6621e56e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6d74b83c39a718f028ee2f690cfec424-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bffa471702080a8eaeaff5b54a7b7ab0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/64d7f3bdb25ef8423b179d8f71e5bd2c-cc_ft_1536.jpg,234 days,839,33,Floor to ceiling windows|European shaker-style cabinetry|Private rooftop terrace|Luxury living|Landscaped roof deck|Deep soaking tub|Radiant heated floors,"AMAZING NEW PRICE! Imagine that you are on top of the World at The Solaria Condominium PENTHOUSE. Everything at your fingertips with top of the line appliances and warm wood finishes on the European Shaker-style cabinetry in this windowed Chef’s kitchen. This large 4 bedroom, 4 and a half bathroom Condo has over 2700 sf of luxury living with beautiful appointments throughout the home with 10 foot ceilings and floor to ceiling windows. Closets are California closet designed. Enjoy spectacular views of the city and non-stop vistas of the Hudson River and the Palisades from a PRIVATE ROOFTOP TERRACE WITH A PRIVATE GALLERY. You will love the Primary Bedroom with an ensuite bathroom with radiant heated floors and deep soaking tub and separate glass shower, to just relax and enjoy. There is a washer/dryer in the apartment. The Solaria has a 24 hour Concierge, state of the art fitness center, lounge & entertainment center, landscaped roof deck with extensive views, and a children's playroom. Local and express buses a half clock away with access to #1, #4 and A trains, express buses to Midtown East and West Sides, a Wall Street Express bus and Metro North Station Rail Link to the Spuyten Duyvil Metro . Central Riverdale shops just 4 blocks away. OWNER FINANCING AVAILABLE WITH CONDITIONS. +There is an Elevator Repairs Assessment in place." +29833329,825000,1955,1019 E 222nd Street,4,3,https://photos.zillowstatic.com/fp/4d53d1997d8a77b4fc05c6f02f3f736e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/383928d43d516638456996ee9cade529-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4e84f81176b1037b048a2f562d5a9ebc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1176b4a3ffc261171dc9d8ab8a8645c1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/595dd1e7488f7b45a899969b58dbd3cf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/841fef5e9e6d53729595ac9bcb09858b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9139f704744b4547d580d1cf5f30d4c3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bbcee9123443f62df5f31eee931f80ff-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9e5bd2c4f5ca048fced3d84c7c1fbb4d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9d1381ed55636185866fb713cc9b2564-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/61bc0acd3e350aa251cadfa7fb8b2db3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7ba85a5fb64eef25890ee18aedc4366c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3e0163c511f2525ee7f691a119262acf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0be734a3d96d66348cf9c73b03167ca4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3dc600ee36973d6cb0b9b48b7b12deef-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ddf71260b0818218d718028a7824b891-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e0bbacbf7be84c7adae58aa94b37b62f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0b25feccff70df3d8761e569df8f45c0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c101080060893413cdea6c1de87c497c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7326b56554003d6a8d4ae1dd88e82e1b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/67cd73c452bac40bb7b747adc6333e2f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8e53297cfb38fac094595ced6ac9df48-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5ce388a1f57d267dc58575b107aa0ed5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/19902511568fedc480e910c8b89f1c39-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/642e8437b67c4d76aa3bef4356ef7bbe-cc_ft_1536.jpg,32 days,843,36,,"Step into this exceptional two-family home, a standout gem offering over 2,000 square feet of thoughtfully designed living space. Nestled in one of the Bronx's most desirable neighborhoods, this property is a rare blend of comfort, convenience, and potential—perfect for families, investors, or budding entrepreneurs. + +The main unit is a beautifully laid-out 3-bedroom duplex, boasting expansive living areas filled with natural light. Its spacious design provides ample room for relaxing, entertaining, or creating the perfect work-from-home setup. Downstairs, you'll find a cozy one-bedroom apartment with a private entrance, ideal for generating rental income, hosting extended family, or crafting a serene guest retreat. + +Practicality meets convenience with an attached garage and private driveway, making parking a breeze. Beyond its residential appeal, this property is licensed as a daycare center with the capacity to care for up to 16 children. Whether you’re ready to launch a rewarding business venture or enjoy the extra income potential, this home stands out as a truly unique opportunity. + +The location is unbeatable—just minutes away from vibrant shopping centers, a variety of dining options, lush parks, top-tier medical facilities, and major highways. Whether you're commuting, running errands, or exploring the neighborhood, everything you need is within easy reach. + +This remarkable property offers endless possibilities, blending versatility, style, and location. Don’t let this rare chance slip away—make it your next home, investment, or business opportunity today!" +79507461,1399000,1921,50 Morningside Dr #32,3,2,https://photos.zillowstatic.com/fp/d206d8db70879f306e2b0306a64f2619-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1538e740ad5326772b40e4620752b224-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/58152086d4456ddd508b3f8a98cb096a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4dea8a044dc71496fad2af0b1a062e86-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/167c8f94d4d30f4087ab95f1f0b871d2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dc2d64285d6bf5d5e251f1a6ecca2755-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/eb428d7f636ac7085fad2e15d2a63678-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8f8a63485887eb0c90c819484a23e8e1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/24cf80bceb53361db0a378c9c108b084-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/50714ccb4078ccab017de2997d61d970-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/35e8e19c9255b1bf5aa808615584c0f0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ed02b9267235b9f37f1b982449d8c30b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a634b6e25ecb25d97db6b2a40f5d5be1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/15cf59b09845415da7f2f8dae0ed477e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/07b1745e10133766fd442cbfb6c30ccb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/18548cae69b9e7602351fd5ff6c17ea4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4ac77616f64b0bbb7e5efd79ed891be4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/770687ac4fd6ec07a177e5492d89b91c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/96980eea0a6904e6d78b76f928533997-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e37e8f73a68f90368c3c2d122c5fb095-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/43884fc8ffb67bbcf3af0e534c87aac0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/88b46cedcdd6d8bc2dc4a8947e8b3605-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c997767d91aecd06a7fd262f3293e190-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1f613228f4a05e7259349da48eaadca1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e5d44a3236a9629e4baf2c3b47680e2d-cc_ft_1536.jpg,19 days,1803,148,,"Welcome to Residence #32 at 50 Morningside Drive, an exquisite 3-bedroom, 2-bath home in the heart of Morningside Heights. Located in La Touraine, a distinguished 24-unit pre-war co-op built in 1904 by renowned architects Schwartz and Gross, this residence offers the perfect blend of historic charm and modern updates. + +This gracious home features lush, unobstructed eastern views overlooking the 30-acre Morningside Park. Upon entering, a long picture gallery with closet storage leads to an expansive open living and dining rooms adorned with beautiful herringbone wood floors. Off the dining room, a charming balcony provides a perfect perch to enjoy your morning coffee while taking in the scenery and sunrise. + +The updated windowed kitchen is a chef's dream, complete with a Wolf gas oven/range, marble countertops, and abundant custom cabinetry. Each of the three bedrooms features wood flooring with the added comfort of ambient floor heating in the primary bathroom, and the primary and second bedrooms boasting impressive built-in storage. The third bedroom offers flexibility as a home office or cozy den. The primary suite includes a lovely ensuite bath with honeycomb tiling, while the second full bath has been tastefully updated. + +La Touraine is a pet-friendly building with an elevator, free common storage, free bike storage, and a shared laundry facility in the basement. Residents can relax or dine al fresco in the courtyard. The building's striking marble and paneled interior, wrought iron balustrades, and stained glass windows exude old-world charm. + +Ideally located just one block from Columbia University and near the B, C, and 1 trains, this home offers the best of city living with easy access to academics, culture, and green space. Morningside Park features a picturesque pond and waterfall, multiple athletic fields, playgrounds, an arboretum, a dog run, and jogging trails. + +Experience timeless elegance and urban convenience at Residence #32, La Touraine. + +1.5% flip tax paid by purchaser. Monthly maintenance of $1652 plus assessment of $558 for facade repair (repairs estimated to begin in 2026)." +29821817,839000,0,1427 Waring Ave,4,3,https://photos.zillowstatic.com/fp/6ca545b62bc0ab83f6d86bcf22094b30-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2ee069cdefdff529ed43b5a604f96d05-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b79051de3873a99e417bc2a58cdc5bf8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/db8395533f46c26795b41ab587b310ed-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/15af2a177b17e6102da11fa7645567ce-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1aafabbd02c31faf501ebd085319ba84-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/36edeca2382f11421dd8f0c04adbcebc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/43d91ca66a431c46410d71bf29d1c54f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ec5baf61087aaf96520eab83a7e61246-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/366a8364273a6d901d6f321315b729ea-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a50380e9aa481b14e7614643b87baa3c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/51773c034f179e04631789efd8a516b1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/67a4a38a75a733989997785e829cf61b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fadb46f9096f6970de9f41a83d2947e2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ac579a7541ae1a124d6a27bd287acea-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/50e09e5b5aca802e9b3e4d45dc02062a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5595438e8b555f85c8c2800c75aad240-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c94736f35886c292156ff69807ce0c08-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bd0de9bdb63e12cebafb12ff369e15f3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/abc77ce935ad2c413258f493107b2775-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/862b5981b3b45d53851bb91466e6d987-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0f9e655093af0b114952066d8159d3c5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e1b4a67ce409d1444d70124a9e7e09b2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/968625de32113b0e14249bb65198bf2c-cc_ft_1536.jpg,245 days,1617,40,,"The perfect blend of charm and income potential, this detached legal multi-family home is located in the much sought-after Pelham Gardens neighborhood. Featuring a picturesque gable roof, as well as four bedrooms, three bathrooms, front & back yard, and a private driveway & garage. You can also capitalize on the financial benefits with monthly income from the rental unit. Positioned ideally, the home is just a short drive from the Bronx Zoo, the New York Botanical Garden, with Albert Einstein and Jacobi Hospitals within walking distance. Very near trains and the Bronx/Manhattan express bus line. This home is a gem awaiting your personal touch. With some TLC, it can transform into a warm, inviting residence for a family or a profitable asset for an investor. Don't miss out-this must-see property offers both a prime location and significant income potential." +442154295,5250000,2015,5175 Goodridge Ave,7,7,https://photos.zillowstatic.com/fp/c9e348f7f74b19cedd7490215996d49e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d38ff2475e8aa3bc438274fb4c957e54-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a4da981b1d784b3c09664fb179f5a8a8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/15fbd24b7a9175585ac1f93c9a437177-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bdd3ab82857a30db0a24f22dfe5b6fbf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/76e5d04c47918d1a26e81600b39ddac6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5cf2e3da439ca7debb285a2533395ab9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cdffad65c9c33fca24d8f2d2cdfef330-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8d725825f5e0ed49ab96e0311891b503-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/33b61b1cac1dbf9c02e6b0f41dea66f8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3948c22277537333b1b26ea149b135f5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4d63c9f1299a60cf504b60c8b79452e0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c1e3ebefd27377a1c8ff5a40125ec74e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bbd7cba240d98357ad05640efdd06a67-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cbacd35f26f28d7de3b40b17547f00cb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/056256256218cf1f1e19baab66a892dc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a0b71d0dbf90fb4f8bc0a588ec601608-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/799373bf1159de2af5abf703d0b92a82-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f056926e2f3cc9a771a9274eb384cd62-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e9574eb2d53c2282df2faf9e57cf5d04-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5fa0f4b09116b1d6449bf4a09e7e1afe-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8af13b75dc0e74f6f08850fad460b01b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7616bf79679aa1336fcaaf6313992b2c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6ff7ab4828facb1d5dbbd7384cb3c0e0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fcea5372a3c4431e1e93225a6e0e62e9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0cf0fd19b344407ec11df8746a65a9fa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3c4889e796392cc61317e77739f5e580-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/869b43a3876df666bf211fec5fa7b0cc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/89358fcc50fb4ed83d49d44c1a22dfc7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/299fed9a5e45b1acb338cc723258eab4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/149bd1613e14a1f20ed6952d21052bbb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a415e313f4543694843266fe4580bb07-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8bd91164b4a5b92f4a4d04ff0ee701ff-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d09a64e63a85799ce68ce3ad30343b3d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c7f7989d7faed887e758c56937a03f46-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2b2251b2ed0c900cd44d226c2152b821-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/098f66da12146ae9c63f51a47e056b0c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4b61102b3113f2f09c6b7643e2229e57-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/57f0b9e032969d528e8f2c46c3e78ed5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d02758bd5d48048338d4780cb4f3f505-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6c707f01a507f557037a39d7fa5119b6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/469f6c2e731c90dc02c6705b29ec756a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2881cb412cf090f39ed68644fdaadd19-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5ac0b09144d316f0d231cf9cb973acf5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f28ecbbee9c4e1d05ee97b3ac8b0f87e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7c5ef2045acf46ab044d8959b7addc80-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ad9c37f61d16d8e3e7c7bc8d398aac79-cc_ft_1536.jpg,289 days,1360,55,Angled corner fireplace|Finished basement|Exercise room|Inground swimming pool|Private cobbled driveway|Private porch|Distinctive exterior,"NEW LISTING VILLANOVA HEIGHTS +Grand 7-Bd. Shingle-Style Mansion with Pool & Huge, Level, Grassy Grounds + +This picturesque 7-bedroom, 6.5-bath, 9,000-sq.-ft., American Shingle-style mansion was built in 2015. It enjoys exquisite details and luxurious amenities, including an inground swimming pool and a huge, level, grassy backyard. + +Set on close to an acre of land, the home sits along a leafy street in the exclusive, private community of Villanova Heights, adjacent to Riverdale’s Fieldston Historic District. + +Designed by architect Hans Roegele, its distinctive exterior is based on a prominent Gilded Age mansion by the venerable firm of McKim, Mead & White – the 1884 Robert Goelet House, Ochre Point, in Newport, Rhode Island. + +The house features a welcoming center hall connecting to wide and inviting front and back porches; living room with and angled corner fireplace; formal dining room; large center-island kitchen with breakfast bar and stainless-steel appliances; semi-circular breakfast room; family room with fireplace; and library/guest room. + +The second floor has 4 en-suite bedrooms, including a master suite with a cathedral ceiling, its own sitting room, 2 walk-in closets, and a glass door to a private porch. + +The third floor has 3 additional bedrooms, a full bathroom and a large storage room. The finished basement includes a recreation room, exercise room, mudroom, and a maid’s room with a full bathroom. Central HVAC. Elevator with access to all floors. + +There is a private cobbled driveway and an attached 3-car garage. The property totals approximately 0.88 acres. + +Conveniently located for well-known private schools (Horace Mann, Fieldston and Riverdale Country School), the vast greenery of Van Cortlandt Park, and transportation to Manhattan (including express buses and the No. 1 subway train)." +29822587,699000,1965,2434 Tiemann Avenue,3,2,https://photos.zillowstatic.com/fp/e2d0774d4d7f6991d84fd1bc313e1c04-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5682ca631f6a7d1ab28cf31e2bb310c7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0cff4ba393cf327af888902ee1fa184f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c320a556470cc8aaaf5e845b81c19686-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/96d236b73a06aa9642d965cea9b930d0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f70ca102be8e64789efd90d1c109857c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/01a343e83896c5b82567bf8690ea0abd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4be1181af2f257648e1f6a4129d8cba8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0c5c23df34973b76f0dc0549e9d7fa9f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ecf8448bde48025262fe69cc4ba73004-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6a4a387a8b9338e2c3271e9455bb9ed4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/161c4e355125ea3aa2c70a18f17b24bf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8dae6fa58f791a429afb44249dbe1217-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f6e8e095c2504699d782097c9fafe082-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6ff4249b26ac28e6cfbb76a52dfc3823-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/efb8a2a6904ceae94ed98b386920d020-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dea90722a9092bcd6633e5869e271451-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cff85e9ffcd818b8291461239fb2cedf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a2fbbb5f6e74fda83e60063144b890a4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b836bfa61619a3ced0705b2461f73659-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ba0d61b2019bdb7d122e9cbbb66b124-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/710c838b11cff4be122c2ac349750e7f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e79039a6642a15dfb5518b977ee74127-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9cbf73de3db0638cf0adf8a3f509ce25-cc_ft_1536.jpg,55 days,1509,55,,"Location, location, location, Welcome to the best The Bronx has to offer. This delightful residence features 3 spacious bedrooms and 1.5 modern bathrooms, making it perfect for families or those seeking extra room to grow. Located in the vibrant neighborhood of Pelham Gardens. You’ll enjoy easy access to local parks, schools, shopping, and public transportation; Some of the many highlights of this property are; a full finished basement, the private backyard and a porch. There is also a driveway that has 1 car parking space. This stunning property has it all. make it yours today! Easy to show! A/O" +442154188,686800,,1 Windward Ln UNIT 5,2,3,https://photos.zillowstatic.com/fp/23ec294e55a784bfe5b34f22d9273d33-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/83538aeef2f63178ce984c86d21262e5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/134bcaee1fdd93cf7fa82b09eeb5164c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2e651c6beba5e00b35108e1dc1fbd8dd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a03c8145181b3b06c9470a1b5609dfa4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d711c64ba8a3888b1722d76893f9d6b8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a2a5b02f39c350e3806ff3d565e6a76f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/093d8433d9f54fc12110bda8c2cdbb80-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4252202f59dddacd592fe323db873308-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b9fed8351f8f49cbc654904e01d3ee19-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/14bd6639c425f987cb3fba4605d32107-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d14d302f9e4036a1d004c3faaa213dc5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/de4cf493c58efc14d139528f4f95c408-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/33b82f4442f7dbac042efde58e1bc7d2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9f6a029c2034f8c9fe161d188b5f7cb0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7ef39b003b28f2210000164075085de4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7ca9b5b4cb450b8775e7111557e06bd0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d625d0d0e674334d34c59766737c913f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/399143a663f60134c24034ca1fee24d9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f1c263789fc9b0de96f9629b76e6ec2c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3484d30ecae25c387666da0b84de8c55-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6908690fe639e5c34511a41dc4961725-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/451016e75677701807d6cecde3a8ab0f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/19da910d8bd2aca9ed290aad32f1bda9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/32650ea0a49470c17fcbbeae5097b827-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b06e1c42eeb6e5e08bba788be0f100b6-cc_ft_1536.jpg,225 days,991,50,Gas fireplace|Built-in office space|Central ac|Architectural details|Large attached storage space|Open water-views|Water views,"OPEN HOUSE IS BY APPOINTMENT ONLY - The condo association does not allow unattended entries at the gate so unless you have an appointment you will not be given access - PLEASE MAKE SURE YOU CALL ME TO MAKE AN APPOINTMENT. + +STUNNING WATER VIEWS 2 bed / 2.5 bath CONDO + +This exceptional waterfront condo offers one of the most artistic and high-end renovations I have ever seen! +- Curved walls, stainless-steel and plexi-glass architectural details, curved built-in closets, custom lighting, and a stunning floating staircase - a pure piece of art! +This quarter century renovation was designed with absolute innovative brilliance, and at a value that would be near impossible to recreate today. In addition, this condo has full open water-views from the well-appointed balcony, the master bedroom, and from the open concept living, kitchen, and dining space. This spacious 2-bedroom, 2.5-bathroom condo is brimming with architectural details and conveniences such as curved windows, a custom-built ensuite-master-bedroom, central AC, skylights, hardwood floors, a gas fireplace, and a built-in office space. The spacious second bedroom is complete with an artistically built-in loft. The serious chef's kitchen is fully equipped with double ovens, Sub-Zero fridge freezer, two sinks, a stainless-steel pull-out pantry, endless counter space, including a breakfast bar and an abundance of kitchen cabinets. Additional conveniences such as a second-floor laundry area, direct garage access, a large, attached storage space, and a Koi-Pond entrance complete this remarkable home. +Note that this condo has straight interior stairs from its private entrance to the second floor - which can be fitted with a stair-lift for convenience. These views are only attainable from the Boatyard's top floor condos, and this is one of the best! + +The Boatyard Condominium is the only 24/7 manned, gated complex on City Island. Truly unique with its meandering walkways, a large pool overlooking The Sound, and a stunning private pier and Captain’s house, exclusively available to its residents. +An easy MTA commute or short drive to Manhattan affords you this relaxed and friendly beach-lifestyle every day! City Island enjoys over 30 restaurants, multiple beaches & boat clubs, convenience stores, cafes, galleries, PS 175 City Island local school, public library, post office, Chase Bank, even a new Yoga and Pilates studio! Pelham Park at the entrance to City Island is New York City’s largest park – 2,772 square feet of golf courses, a horse stable, walking, biking, and running trails. Not to mention the infamous Orchard Beach, established in 1937! +Life doesn't get better!" +2057087117,199000,1957,730 E 232nd Street #1F,2,1,https://photos.zillowstatic.com/fp/ed619370afaf8cbe92dca1d4640c701b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4b792e815e82b9daf634572a5eb56d75-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bfca8b263cc0534fa5053c0b917d26aa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/74acff7fc582695c0ab0e2801e9c524a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b0606b4e82db1b78b0567fb34b1e6a21-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3f9c987d41c046319f28da843264eb40-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a8bc2cd4a0fd93610b66f1a262cff2d5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8ab79cbabad8e23328776814f46b5c7f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/272566233d10991d101c62848e241a81-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5109302bfeb52575a3ac8bef6be8094f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3b628bfde8fc4142a573a4f58a549d51-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fff76514b6507e0cf1584dd53d5b7957-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/47f54002a2d3a82f9414d0c00b65bad8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b1f4d31277441674a56cc9c948341567-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cbda3b5914b9742cba36ca2403758f70-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/41202484a2c72e6edea3ef5e9e190321-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9f2aead52c227a58599bb9e333f5baec-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e630d35e3234a95384461d030fa3622e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/468443f7952f1b0e9d3d77e9adee70a3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b998802e95eb61c0d8c22077e9d7ed29-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/69d3420d52ebed5a931b1680e3524955-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ffbc9f8d7996f72399ba2e1e080c8367-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5d9ec927d937a32bf3fe6fe08ed2db0f-cc_ft_1536.jpg,23 days,2107,174,Flexible furniture placement|Tons of closets|Hardwood floors|Ample cabinets|Beautifully updated bathroom|Updated eat-in kitchen,"Vacant. Ready for your touch. Large, Well-maintained, clean, affordable two bedrooms with one beautifully updated bathroom co-op located in the Wakefield Cooperative complex. Unit is conveniently located on the first floor with on-site laundry conveniently located a few steps below. Large, updated eat-in kitchen with ample cabinets for your storage needs. Tons of closets. Open Living and dining areas afford you flexible furniture placement and staging possibilities. Additional amenities include: hardwood floors; one-block walking distance to shops, schools, bus, train; 3 blocks to hospital; close proximity to parkways. Electric, Gas, Heat and Hotwater included. Additional $30 per month for each AC unit. Waitlist for parking. Parking fee is $150 per month. Bring your decorative skills and highlight your personal color scheme. Your family will love living in this home. VIDEO OF PROPERTY ATTACHED. +https://drive.google.com/file/d/1BYsXJKzli5W1UV4j6-Rj4fb4ma5dLN0f/view?usp=drive_web" +244468166,235500,1950,9 Fordham Hill Oval #3C,2,1,https://photos.zillowstatic.com/fp/90f1573fcd93ffd11244d70b21d69c2f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/34cdbe3b350795272c7daf093b3686cd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7c44e0bbc68716e0403dfcdbc6346a14-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dd9781665b1871dc69c160fc3d2b955f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/99dc1d31968d158df3bf220aff295a95-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/283227f26ca549d27d6542366f21d6f9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3ab3d70fc7f0257145ddfdd3e5315cd0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/633dcc94bed753e3462d9e3ae6b2fc41-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/37fcde349f73842b43770c789cf2c22f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c707c8b3cf0fdeb1b26eefd878bded96-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ebfe6b03257f9054127c19198c60d47d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b652257176bb1a20629d93ced50791a1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/05f020c2f723c77e930fe4e7f4a04eaa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4a2c2ec38fddd9eca5207278ae6a455d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e094bffdefe34529a75cca0af0873815-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/08e0a4eebe9e653bd9f06c18bc472267-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/095d96621ec3d1e706d0362f6d458e20-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e54026e7468224fad9389deb1d9c9b04-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/de875170c2d5f5a72b86498745c2702f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c4068ce3f01a09b6dce57ea0b3a71b97-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/feb663bc249fc79f40c74be152d5dabd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6a45cc2492a1c503eb94af372ebe856d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f168b7ace85c125a1f3b84f338dc4230-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/25c43edb9abedac649b42d283d0625ff-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/517d5b63796ff0260fc5922e20ae6e18-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5282650a89b154bfcfa2f3d381dff5fe-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/961d6b1ec0436916eb4eabf5e28a3f24-cc_ft_1536.jpg,49 days,290,19,Garden with seating area|Lots of closets|Parquet floors|Additional storage|Nice layout|Spacious apartment,"Completely renovated 3rd floor 2Bedroom co-op in the Fordham Hill oval gated community. Sun filled and very spacious apartment with a nice layout. Parquet floors thoughout, lots of closets and additional storage if needed. the monthly Maintenance includes ALL the utilities Gas, Electric, AC, basic cable, Heat, Hot water, Sewer, Upkeep of grounds, Snow and garbage removal, Building insurance. Onsite laundry, Super and management. 24-hour security, Playground, Garden with seating area. Subletting is allowed. Fordham hill parking $225 a month/free shuttle provided." +2087203269,215000,2009,150 Featherbed Lane #4B,1,1,https://photos.zillowstatic.com/fp/8da78542e1798541ed144d326b479c81-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c4bdbe617116ce1aee374f00b333d685-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9c80719a7e48ca9d45a473470c270700-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/774a9d08402af6e010ecab1680895d97-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/53fa9049ec618e0438b5604fdf141a9a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/eb5fed1e4ddbb506c9ba5c23c8a2e66b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9665cfad1daac16a03e86d3ad5ede28e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1484348034ff30463b3e897b9ff5aba3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8510d4141782a8abec0b1efe315d1a89-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8fcd615e916eec3fdedefdeb8b23c2ab-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1a56071fa3271a940865fc63cf9b8802-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/746db63cce7ded8aed9adb88b088a08b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d5819a950a18f44d75cc91a48e95f171-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/91b3d5b17b2775c9e82d1bdef0211526-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8d730ea5929186ef4534e39804d24ba5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/547e837131955465de37544451cb4d8f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/07f7873ecbaa038b43712937516d23e4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e993285e854cfc8a61b70a70fe0dc9e5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/36e330730496656c3bdc106a907feb67-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cc13ef8a8273a58709c3115e8c593007-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0865c147d2d24cacbfcb9e7adb7c6796-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4ccd709129a46af17189f38df166aee7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fd3c0d38cfc369ed23ca6f189001efa3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/465f28f81d6ef14f3fb9f967c3359835-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/149d7db7b8f3dfb2766885fade82bea2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2fcfc7f3e4257a17697f5f2134d55ff2-cc_ft_1536.jpg,49 days,537,43,,"Unique opportunity to own your very own apartment in the Bronx! Filled with all the modern conveniences you can ask for. It even has nice views from the large windows allowing for a ton of natural light. The apartment features hardwood floors throughout, an open kitchen with granite counters and ample cooking space. Location is a commuters dream for this unit. Close to major highways, George Washington Bridge and public transportation. The building was built in 2009 and it is extremely well maintained. Features a rooftop terrace, recreation room, part-time doorman, and state of the art entry system with security cameras. Don't miss out on this amazing 1 bedroom / 1 bath co-op. It will not last!" +244446711,225000,1961,4705 Henry Hudson Pkwy APT 6B,1,1,https://photos.zillowstatic.com/fp/cb4c4b808b54d2502e8abe44d7f22c45-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8b31362ce72c7f1e605c730505c47bc2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/42d6c380e7d1571cc6c390d35374ed2e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3566de25bd9c128dfbfde0a221894729-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c654e1955d859bff6918f7b88770a519-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/12bf3e4cefadd3761cd067856f24b81d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ddd94cd894152abb4e4a9ee95e404192-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ead3f1f2abf4c68fcac84523d7d456c1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b3f0300f1b335149a4580b51297ff127-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f8855419db5aad51f7098dabdf6960fb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/92e392f4f28e032e2ce2332ec82b98cf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a543acdbecf65c86421fd2f0024b0676-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/db150816d845336332eb42b2ed539448-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2fd6019c12f7284634998f46f797d26e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/44667679e0a3fd6ceebd87122e4dd341-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c02ebd62d3548597bd5751d7083cbe94-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5b67a4d792e693327d7e35d7e864b7d5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1f0a1dd82e0ffbad077eaa71f5c7af66-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/48361935b1c8add336c08ac40c8bb3cf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9cd0609b15577ed84aa1e04b26daa044-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3dfc5cf08cb3a3279a3d053367e4f864-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/55f4ccfd18543cbcf57deac33a974066-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5f622fe575c31d8d23d169b47444f9b6-cc_ft_1536.jpg,54 days,935,31,Bedroom with double closet|Large western balcony|Entry vestibule and foyer|Central air-conditioning|Picture window|Windowed kitchen,"Exclusive New Listing +Bright 1-Bd. Co-op with Sunset Balcony, Swimming Pool, Doormen & Parking Availability + +This bright 1-bedroom, 1-bath apartment is at Windsor South (4705 Henry Hudson Parkway), a postwar luxury co-op building with 24-hour doormen. It enjoys a large western balcony with a sunset view of the great cliffs of the Palisades, plus seasonal glimpses of the Hudson River. + +Standout features include: an entry vestibule and foyer; open living and dining room with a picture window and glass door to the 21-ft. balcony; windowed kitchen; bedroom with double closet; new wood floors throughout; central air-conditioning; west and east exposures; 6th floor; fitness room and outdoor pool in complex. + +The building has parking for rent subject to availability ($60 per month outdoor and $125 per month indoor). + +Monthly Maintenance $1,050 (includes gas, electricity and heat). + +Easy access to transportation. Close to Wave Hill public gardens and culture center." +94715775,539000,2008,87 Heron Lane #436,3,2,https://photos.zillowstatic.com/fp/f5c01ec565c0486238f7a38152a5791f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ded6443ac87640533e7f090c9e4469d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fd8050addd43f58000027cb49c1dc544-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/af59f50023fc699ca8dfe5cc9a2e31bf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/37bd9cb4cba6e8177e8739271960f451-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2d71e25eeae7f0aeb6eabb9e55f792b5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4baac3865913496b851e5b857059fd65-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7c19cfd0ecc9e0d2ed87ea28c6be4487-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0e2b0eaad9e05ff8dc8cfc92d1da5805-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6cd3666c3fc5faf75833de0cebff239c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/92cd9441d21db6aeb933b3336db3f27b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/822554c976f115406053b852c392360e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1cb403fc45d48bd492c50e167f7df6bc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/661b8fc3c734e1b4652739077c5be979-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5743777b70b7637c293c25e31e9dcc13-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d09d0f2e504e08724a89a65948106bda-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/83292fb0582b5b7c5a08f489eb625531-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fad372358b2330cc68019664dbf74b52-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e99c07a30f53c4ee29263ea97f33257b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/22b731802211180dfdc17d35d3c12f0d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1425cd2afe0e01967439bff1f2707b9a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/27a022705d22ca55816f13b36180004d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1687d6486435061f765df1b81ffb7c92-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d22d47b16d8cfa0ddb97d60152133f4e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5b970f33a0fbc62922c224fee2b9dcb3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b12e5656456fffc3cafca3f6ffab2770-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dd9511dc697431e9697e5a3a8b3d0e31-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0ad9fe21c799db8656411a415099e42a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2842813c5b0e2cbcd45d45b42a7406a6-cc_ft_1536.jpg,24 days,1680,85,New dishwasher|Bridge views|Water views|New recessed lighting|In-unit laundry room|New banisters|Master bathroom,"Located at Shorehaven/Harbour Pointe a gated community in Clason Point/Soundview is the New Home to the NYC Ferry! This Second Floor Walk Up has hardwood floors throughout New Banisters installed on both floors. Upgraded New High Energy Efficient Stainless-Steel appliances, New Dishwasher just Installed, Kitchen has a back splash finish. As you leave the kitchen/dining area you are leading into the beautifully designed living room. New Recessed lighting throughout the condominiums on both floors gives the place a beautiful ambiance. In-unit laundry room, central heat, and air, plenty of storage throughout the home. Huge Master bedroom with Master bathroom and your very own jacuzzi bathtub. Water views from the front of back of the townhouse with beautiful Bridge views and Manhattan Skylines. Shorehaven Clubhouse offers a Gym and Playroom for kids to enjoy, an Olympic-sized Pool. Additionally, there is a children's pool, playground, basketball courts, and a tennis court, not forgetting the Spectacular Vies of the Manhattan Skyline. Enjoy a morning walk off the Esplanade with your family or pet. This lovely 24-hour gated community overlooking the Hudson River is conveniently located close to public transportation Bx.27 and 39, Bruckner Plaza Shopping Center, supermarkets, restaurants, and all the Clason Point has to offer with easy accessibility to the Soundview/Clason point Station Ferry that takes you into Manhattan... Additional Information: ParkingFeatures:1 Car Detached," +2056147830,455000,,143D Edgewater Park #D,3,1,https://photos.zillowstatic.com/fp/f61598ac097acbcd72e782464e4b7adc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/af91f4cb261d03f6ae16539325281d4f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/136b690d97474909a8801d6ec9283396-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/204b34cc21522d43669670d6e19fcccc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/76884087f1643e035a77e827e0bfaa8e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8fb86af9bee83394d6f517c6b29da9ba-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ae94e6ffe1620c472f867f770e967ac5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/32e8e7e52237ff5db2161d8b219c612d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/917cc3ce1b029fbf4b06f0b58cb33758-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/33a9598dcb8f496b090362b6c40e1ed6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/89728c12011d42b23d35b3eb33ecc943-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fe9f8baf2d3f63e3a76d2a0259a04605-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4e8adb3988a1c1d4459d2df6f24cd829-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6f265f5148ed627855e0d8a7fc55dfb0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/20e003007775cb15d366cadcd86ab028-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e739103d35d41314455bcf59b272b0b7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3c2816c673e01797fe0711824d2ef2a1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/01b5bf45f0fdae4891fa105b9c2d6f28-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e265bca28ec6d5d82478af3ea50d6e82-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3db0dd07914ba62d9d79cc1be0ed1beb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d4389302a748a5f4e3bcef3590f857fb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fc784e0eb5a5dcf8054bb64c2f240265-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0728ecad39625c622a510a80e237f076-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3213c2020726b2aa282f6020ca344612-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9fb2ce18f679df551ed6ed96b7acd349-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/51482515d7692db8a26cea25154e6cd7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2de2d77c0fc0fe67304a9ee613fa4e38-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/19bf1554df6a36ef6495969d63111613-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fbf57bb5fd8bd615d33cf24aaa802f67-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/16f9c2e05cee4465dfe8efd0b188f83d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/721058f43778eb533c95a514f697091d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b3b76c5be7f6aeec7c2dd95cdb624f31-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/17345cda98bd6759648df62d9bf64168-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e1523140149baa9c5fb6138994107b03-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ffd1013c30ddc7dcb23de6f0f972b74a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ca17a5d86152f96e6501e7d99e7e7be9-cc_ft_1536.jpg,575 days,729,25,Lovely vegetable garden|Walk in closet|Stainless steel appliances|Cathedral ceilings|Corner oasis|Back splash,"This detached move in condition corner oasis is nestled in the Edgewater Park Community & right across from parking lot. Layout: Front yard & side yard for entertaining & BBQ cooking plus lovely vegetable garden. Entrance foyer, Living rm, EIK with stainless steel appliances & back splash plus fits two chairs for dining, Dining rm with built in cabinets for plenty of storage, 2 BR'S (Jack/Jill style) & full Bathroom. 2nd floor: Primary bedroom with cathedral ceilings & skylight (can put 2nd bathroom) plus walk in closet & two add'l closets. Basement - additional storage, workshop area, heating system & laundry -with access door to yard. New hot water tank, 2-zone heating, new roof, electric, Anderson windows, Sun Setter Awning with screens & lights & outside storage closet. Enjoy the many amenities this community offers: Beach, Security & Cameras, Playground, Track, Basketball Court, Fire House, Deli, Corp on Premises & Express Bus pick up & drop off in the community & local buses." +443237090,1100000,1965,458 Swinton Ave #1,7,4,https://photos.zillowstatic.com/fp/ac5bbbc3117c74d6827208967fe6d768-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fc1a728b6d670b19baa761ab855fb911-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/72926ddb44cad433fcd5013b739ea995-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1513c8527629dab612a28cb6ce8139e8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dbab4a097069e434f98d6e97f0daecc9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9f70e655c050e748f7b7a235ae62ac14-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/eb14122266d2043e53b58d73a542115c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ab531c465c09879f9279c1e6f5c9644f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/526c8a41c5c03ab7b2b150ac1cb580f7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e14de111927a254faf1f35c722024a69-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/61e55bca8de037a7de1e7443dca506fd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/222c73d5891bfa136b700dfa7da3813a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2ff01777b5c18cbfa4b916e96c51a350-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c158e1a7e9e707dee8e8ae65700aa1e9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ee9d4678a45a3b340083fe5eff1701d3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c396a97446524d0a41dfc6a36984d943-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/222604a1831bc663941ab748e00de9f2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3c8bb9224bf3a7addb5fcb07dc1f53c8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4d5f83ff7507880d71403fde94852458-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6e9fa5b175b27b3a7147f961d1595921-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f2124b1ec26a5de3d4b4ad16ed22d0a3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fb51bf0bf10f5087add29cb2264994d8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d45127397bb4fa85e45bade634c2075d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5cd1ed769e10bda5312de109a0856948-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/22f107182e16f9955bc89f9b98af607e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d9250e8bb3d2863fc4e0ebd05b079a7b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b16c8f997d87972476a3bdc9a1685805-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/49cacb4b7b5c0fb05fdc45bc48e89abe-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5ce116af9ed261e276ebe0d7b54ef0fb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/14b7668218f5d2013d36c2af1526d819-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cf2ed58d36170fd78dbfdef606d3225f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d15186605c9f7fe558c27b7a52520c6e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/07aded421357ef5f65e28bff6cc2d20f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/22c24b560254aa943b0bef4881912376-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0b35992f7b7d891910a2361b14bd9c63-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a64238fe107307dfb92146ab6f157e73-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0cccb2c4dcd00e6cbf99443456006846-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4e75520f42d01a274f33654089675d19-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dea91aee5e3bc7fe504bd958d44678dd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/adbe8a074688b36d158be7e075a5066f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/997346deb48f7b027756d7dff1ad52ad-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e07ef674113c3fab9d38edd4e3c550fa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/994c7008453c51f76db42739ef98cff8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5d859d866a105218531155cad88a2cb3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f3e34651b8f3e2ecb7f30106d050f42e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/65e8710a1e6ad4a31d7e45eb0fe61925-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0b3388763f543221d6f1bc6a414e28a8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/82f9397e08ae46b682f7b8a1a3cee0df-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e7b6c6320b7e761ffe55dd1c9996288e-cc_ft_1536.jpg,81 days,779,37,Tree-lined block|Full finished walk-out basement|Open floor layout|Private garage,"Make 458 Swinton Ave a cornerstone of your real estate legacy! This well-designed legal two-family is comprised of three independent units. Two identical 3 BR/1BA units feature a classic floorplan with two of the there bedrooms facing a quiet area in the back while an open floor layout in the kitchen, dining room, and living room presents a great flow of space. Ground floor 1BR apartment features a walk-in entrance, still right in - no stairs are involved. A spacious sun-drenched living room in this unit makes it very appealing to a potential renter. The full, finished, walk-out basement is accessible through a common foyer thus making it easy to use. Very convenient parking is located in a private garage on the premises as well as in the driver. Located on a quiet tree-lined block, this rare find is only steps away from Throggs Neck commercial corridor, featuring famous NYC eateries and all types of shopping. Quick access to Manhattan via Bruckner Blvd and NYC Ferry stop at Ferry Point Park. The property will be delivered fully vacant, start building your cash flow on day one. Call us for a showing today!" +418964161,699000,1948,1189 Morris Park Ave #1,3,2,https://photos.zillowstatic.com/fp/60f2552f33705fc895d0c8af56da33c2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c5cbe89234d8f63ccd4ea1d29b226c58-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3d8e7ddda82f86996d3e37a9d2f290c2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a0896693c5afca142d4ca8abfe13e1c1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4de59b693e5a9982b66151b15152e6fa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d07a10ee0f1bb480220b9579cdd1bbd8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/33fdd8820ef08ee68de28d89ed9fc85c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0da2b1dd72723d0f7c8edf6b8de9f6d0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fe3d8f2c5777824cb958c986ddae7a78-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e75f692b75e168e9aec8010e599b2a83-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7021b1af31d92c142dfc9ec507e0e0ff-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b916def81751904bfb3d240b81601afe-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/46d020c5f946d0b593acb71683976f6e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/69d56e17c0f6adc550d69fca26324ed7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c54ee68e28e947e7ff1944fa98c505a5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/893ccacfc29cd68e9db7e4ad30fdb1a0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0aab8e733575efcb3bb41a0e8d87e2a6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1011ee0197ba835e5eaed98ecdd1c5cc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d94c9bbe2b5f32cf63accfd8f67f4406-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ba793a3fc7777e1e53696d33f363bb02-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8c20c45f75037de911abcfb63d9f857a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7cd84397a83d2e93aa36ab43833228c5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/532859318bc0a664d447c8cbf4666ca4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bbfd74d0f7d9e4d84533462f57fab0cc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f6e4e5d3e52ce08fe4b30e86363867e0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/96fd4d03be6938d62535576afbd8cc5b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2999864166e6122ebeda8c2f31806250-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6275f15192d8fdef93f49ce1797d22a6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/51ef0050d45fde94d579a50a961d125d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f13f69f597b1bbf1c31e49e9b9373ef7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/001e61b4618a5d3777ecd13f8cf7b505-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/006ddc97c4f77d722ebbc807bbe584e5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/563103b4f218192473a5977443f5cd18-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3ecfbe0a98712e973743437e11eb02d6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f578a01a0c6f867ad50b805271d27397-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f00828035a3504caa162fc801b89a2e4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/485aeda8c149648e87ddd1b1dabfe96c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dbfe38b0a5d7f6bb9401bef606ed5e21-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d62cf904fef3da6840987d4c137a0a4c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e6f27fcde066911e92e8bf32b9fbce66-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/96652e184413b8859f249233bd0eaa48-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a45573e8b2168e82e13e79f3acdb999c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ae921f445176393c1f8e161ab5c93ca6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ab5be7c93f1f900c683afd8d8f1e31a0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cffbdb086d278317b382f7eef104b79c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fb8c2a914e55c609c2838cbd8845ed15-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/daef20c2d2c69bb239a6fc070d4a6ff6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/44abdc96681ca662a61563fcfa7aa8d7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2b3b0aa716478b345f07f9f08fa55241-cc_ft_1536.jpg,206 days,1529,44,,"Check out this well maintained single family house in the sought after Morris park / Indian village section of the Bronx. Walking distance to Albert Einstein hospital and Montefiore. The property is in walking distance to all transportation and shops. This brick semi attached home offers 3 bedrooms, 1 full bath, hardwood floors, great size bedrooms with plenty of closet space. First floor offers a big living, dining room and kitchen. Second floor offers 3 bedrooms, and 1 full bath. Fill unfinished basement. Boiler was changed a few years ago, and the roof is only a couple years old. Give us a call for more info." +29854467,3795000,1853,5247 Independence Ave,9,8,https://photos.zillowstatic.com/fp/d2f36cf2dd01bace288ef583dd05782b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/35b6ecbeecab3357211a66c3f2767162-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1bf017053935b64a61c92b7a6ecc5b67-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f9431122835c6aa5d80ce40d2f6919f7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a25f3cb0a69b3690b331369af2cc6d99-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7067c41f39df926f971719ee213c666d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f612f1161691139b81e9c03392fd7583-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a35cf6caf93e5d9278e90352eac17fb6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0fffc4f6cbd420695d4cfea109f7aa89-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/abbc958835767b739ed37f85083bf87d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0245080eae823421a387bc08e76f7c7f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/01ef81ad21021f00e7459aeea4a0c501-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5aa81249099a368649030d94018fc1e1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0b244d3968cd820236e1e5942506f84c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/34e6cf07bfb0622cc86f279f6a018528-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4490372fcf5d9fb83e3980e761cfa6ac-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2b182ce44a0b6b7031bc6a0389730900-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fd926d12f0ac769ea251ff653bff9baa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9c5d55f0fb2eb86998d2b16c837e95b6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/df312f4732289312ebcc408abcc6dd75-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4572adb498eace6518e7dd85c0de6892-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/31c0356ee1cc6ed1e447846d21c891fa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8cc6d03cbb7f800dec181c78eb963f28-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/46f0fe01ba0817aa9084f3e3b46d824b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fb1534bb5eda7628c8f90c79891ed246-cc_ft_1536.jpg,99 days,1486,79,Wood-burning fireplaces|River-view terrace|Colonial revival enhancements|Spacious deck|Beautifully landscaped parks|Oversized balcony|Luxurious master suite,"Discover a rare and exquisite “Gold Coast” estate, nestled in the prestigious Riverdale Historic District—one of the few remaining neighborhoods in NYC where grand homes are surrounded by lush grounds. This property, the Henry L. Atherton Villa at 5247 Independence Avenue, is among just 34 distinguished residences in this historic enclave, where even a young JFK once resided nearby in 1928. Conceived in the mid-19th century as an exclusive “suburban summer community” by affluent businessmen, this magnificent estate showcases a stunning blend of Gothic Revival architecture with refined Colonial Revival enhancements, completed in 1910 and 1914. + +Spanning a stately 10,000 square feet, this impressive home offers 9 bedrooms and 8 bathrooms on a serene 0.61-acre lot. The exterior preserves its rich historical character with striking features such as two chimneys, gabled slate roofs, elegant Doric columns, and a porte-cochere. Inside, the exquisite original millwork, gleaming hardwood floors, and generous windows exude timeless charm. + +Enter through a grand open parlor with a fireplace, once used to greet guests in sophisticated style. The first floor includes a formal dining room, a well-appointed kitchen, and two refined libraries with bay windows and fireplaces. The expansive living room opens through glass doors onto a stunning veranda, offering uninterrupted views of the Hudson River year-round. + +The home’s split-level staircase leads to 9 well-proportioned bedrooms, thoughtfully arranged for privacy. The second floor features 5 bedrooms, including a luxurious master suite with a river-view terrace. The third floor houses 3 additional bedrooms, perfect for family or guests. Several bedrooms boast wood-burning fireplaces, adding to the home’s grandeur. Enjoy breathtaking views of the river and Palisades from the spacious deck and oversized balcony. + +The Riverdale Historic District, designated as NYC’s 54th historic district by the Landmarks Preservation in 1990, is home to notable attractions such as the Perkins Estate at Wave Hill. This area offers beautifully landscaped parks, winding tree-lined streets, and an array of cafes, restaurants, and top-rated private and public schools. Located just 15 minutes from Manhattan by car, subway, or Metro-North, this exceptional estate provides a seamless blend of historic elegance and modern convenience." +2053005716,149000,1962,3531 Bronxwood Avenue #3F,1,1,https://photos.zillowstatic.com/fp/b4d67edcda4a3dec4f240e811c028b0f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/75dcee1e0558f2621da2672a09d88049-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/64e3e18fb93395ddfeb69005efa60d93-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/838d7716bc71652f5bb65a5f8f25266e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2c11bcdc176756cfdf5659f6e76f9c89-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ea6f82ce9b258ed2f67e36e0a67b5c3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/864ae3f908f13850eb84b909b8da5762-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ff4316d1978c6f343d2c48da8377ed40-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/032f983841141b7f8ffb862e8f559944-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b15ef3dd7438bb673b7c426f43252e6f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/28756d106db42a8f474a2b41ab4551d7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9b92d5a0cd6bfada03ed02886b59c3c5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/96560ef9aadec6cb6f6dff1cfec8b7ed-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/db9a7e8628481109669d3ced76e04b58-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/51b4e25ad51c5d9b5124960fcae45b2b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/00ecc145fdecae032b43fc2117c143fd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/37a07abca26376d170713645a1acf530-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d463a06100f0395550f37462705d5d7e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e2939081af19e9ada8c308a775eb947f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dca5ca764db5c540d84331f7a0465fbd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/03b2918e37dd9cd0442e80fed600d9c3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c7804bf144a2c12892e4913903653684-cc_ft_1536.jpg,289 days,1425,99,Spacious bedroom|Common laundry|Spacious unit|Natural hardwood floors|Great closet space|Great size kitchen,"Welcome to 3531 Bronxwood Ave Unit 3F in the Williamsbridge section of The Bronx. Immaculate 1Bedroom 1Bathroom unit with a beautifully distributed layout that gives you the best use of the great space thats offered. This spacious unit offers a foyer, great closet space throughout, spacious living room, formal dinning room, great size kitchen, spacious bedroom and full bath. Natural hardwood floors throughout. Common laundry with new washer & drying machines. Conveniently located steps away from the #2 & #5 Subway station, multiple bus lines, shopping hubs, schools, hospitals, major parkways and restaurants." +29829052,749000,1950,3482 Mickle Ave,4,3,https://photos.zillowstatic.com/fp/d7a6430dec70f2ddfc0c33a5633f862e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cc347d004ba071797df938ff23d3d52c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c5d69566a5a40e5a64520d76a95e5b9a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/12cb434d5e00aff8d98d6022e1b7d980-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/999bff82049a57b113059040e06675a2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/575bfdd9248edd89357f8e2e5ce62276-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e15e6cd3f489d58444f94d9303edb918-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1a45238cb7e3537184d9d2d051e4d0d3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/610878a6cc26afa0db573879cc4be871-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/abfee0f010273bcb2c64eefe9d610150-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dd8ed7cccc21eaf3f0f8532e9a28a7d7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f1f0f51b25000daaa778a161d551758d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/177e4b74f88a02c2c87f0d5878376c92-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/20b40246703c0cf4529d6a22e1bbaeab-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6589dbef861e8cfae9f9721fde847e7c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fca3eb27d3449be0576173210d4dec9b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0f79d8d2147d980707b4b19f516a4602-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/46588f31559a2b8c1f1b32917901442b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cbeb078b5a3d7c0d9f87d0d3d8eccf9d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7bcb6942cd876155e0d657b281ba589e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a35e063d3aa144edab923c9a14089dcc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4425189b4013cdd98c3a7797963adffe-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/adfd71bccd7d3dee4053620577e31de9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e63ac357e35f8c09a8b56a1c969a4444-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/820ccbbc65e929f85bf22e7d9f314c36-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d29101fd9b52740182364b8cf9170c21-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ca46775f6aaa9100e85124a81f7e94e9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d714aab8ac273a46859955aea4776d20-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/20efd5dde953b400c42c789a10116fd5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ff99553def519640cd61b618861d7801-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2333acfac77c68fd5191dc67817d719b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b66f42ce26543098d791c36b9c42df6e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0d23f429e67642690582c0509dd65c61-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6ec8b8e85223172092f6045b761e50ef-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ac697d54d4ee624b6a474644e22b584a-cc_ft_1536.jpg,2 days,285,14,,"Immaculate Newly Renovated Brick semi attached 1 Family Home with high end finishes and a very spacious walkout basement unit with separate front & rear access. Private driveway with parking for up 2-3 cars. The main unit features a spacious 3 Bedroom 1.5 Bath duplex, large beautiful balcony off the kitchen with great space for BBQ & to entertain, newly renovated kitchen with custom cabinets, stainless appliances, Quartz counter tops, recessed lighting throughout, beautiful hardwood floors throughout, newly renovated bathrooms, beautiful wainscoting panel on the main level that offers a touch of elegance, 3 huge bedrooms, Walkout basement unit offers a spacious living room, dining room full bath, large bedroom, separate laundry room, central heat. Spacious back yard. Great opportunity to own this one of a kind unique home. Conveniently located steps away from Subway stations #5 & #2 lines, multiple bus lines BX8 & BX31, major highways, shopping hubs, schools, restaurants and public parks." +83178236,2899900,2008,640 W 237th St #20B,4,5,https://photos.zillowstatic.com/fp/b48f0810c9fd5ea92129f1a730315410-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8e63732b6ce38dd9f759c472281db411-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4c366d6fe3b31d030e5228428f31223c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c3175f53587e03118a009792bce7f842-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/68da521ccc8628612c10c8d5b929f47c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/95b0eb045e08005259a22bcba4cd3708-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/84dae65ea81de063925dac98d49b84ee-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/57992b28c3018f8adc599486cbef0542-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/38f19aabe4fae9f8c5a89b9375a2da72-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8cec1de425562e980b1e77a4f34722ca-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6f205ad2205c9657eb971a6a44756c0c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/31a9ac6cf2a49bb6d0f8e0af5d2d5a7e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/72778300cfdaa05bab723dd6ec9d865e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7592763228b872c6420c300e94a63e08-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e656c36e9e1e67e9fa05c281305294bf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ff194a53ff966febcee3485d4242da3e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ef7426f3739c57c251873d17d20c11b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bf08a1b8ec806e5e8eade49910954dba-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/16dd8edd2fd58db75c46797072104cba-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ffdb1095252afdece3c05aa22bf893ca-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fa0d9b8b16aa3ef8765b2d1070079498-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/45543643ab8befd2ec30e5084951a5fc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f03f4ad109474bd7cdc58ff804a144d2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/36cb51c2ca969c1f8cd23e9b66bb1798-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fdf9689a143d02a204010163fb8bd24a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b1e596c90915e2e7bdad2c56970f199a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fb5e751ce98aec1a45d6417630e9542d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/acde1a60a3bd2501aaa113fc93ee4370-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bd13a9bcc0a63a85e535a6f63174397b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b17dc91451fdf9eb2ce00026b7bfdf02-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/25be66c60e8167222e6d4aca6571f675-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c5f1bc399b92bb7cef58ec38393c3872-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cac3be8d337e73102e0c68db6621e56e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6d74b83c39a718f028ee2f690cfec424-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bffa471702080a8eaeaff5b54a7b7ab0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/64d7f3bdb25ef8423b179d8f71e5bd2c-cc_ft_1536.jpg,234 days,842,33,Floor to ceiling windows|European shaker-style cabinetry|Private rooftop terrace|Luxury living|Landscaped roof deck|Deep soaking tub|Radiant heated floors,"AMAZING NEW PRICE! Imagine that you are on top of the World at The Solaria Condominium PENTHOUSE. Everything at your fingertips with top of the line appliances and warm wood finishes on the European Shaker-style cabinetry in this windowed Chef’s kitchen. This large 4 bedroom, 4 and a half bathroom Condo has over 2700 sf of luxury living with beautiful appointments throughout the home with 10 foot ceilings and floor to ceiling windows. Closets are California closet designed. Enjoy spectacular views of the city and non-stop vistas of the Hudson River and the Palisades from a PRIVATE ROOFTOP TERRACE WITH A PRIVATE GALLERY. You will love the Primary Bedroom with an ensuite bathroom with radiant heated floors and deep soaking tub and separate glass shower, to just relax and enjoy. There is a washer/dryer in the apartment. The Solaria has a 24 hour Concierge, state of the art fitness center, lounge & entertainment center, landscaped roof deck with extensive views, and a children's playroom. Local and express buses a half clock away with access to #1, #4 and A trains, express buses to Midtown East and West Sides, a Wall Street Express bus and Metro North Station Rail Link to the Spuyten Duyvil Metro . Central Riverdale shops just 4 blocks away. OWNER FINANCING AVAILABLE WITH CONDITIONS. +There is an Elevator Repairs Assessment in place." +2053005716,149000,1962,3531 Bronxwood Avenue #3F,1,1,https://photos.zillowstatic.com/fp/b4d67edcda4a3dec4f240e811c028b0f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/75dcee1e0558f2621da2672a09d88049-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/64e3e18fb93395ddfeb69005efa60d93-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/838d7716bc71652f5bb65a5f8f25266e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2c11bcdc176756cfdf5659f6e76f9c89-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ea6f82ce9b258ed2f67e36e0a67b5c3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/864ae3f908f13850eb84b909b8da5762-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ff4316d1978c6f343d2c48da8377ed40-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/032f983841141b7f8ffb862e8f559944-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b15ef3dd7438bb673b7c426f43252e6f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/28756d106db42a8f474a2b41ab4551d7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9b92d5a0cd6bfada03ed02886b59c3c5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/96560ef9aadec6cb6f6dff1cfec8b7ed-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/db9a7e8628481109669d3ced76e04b58-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/51b4e25ad51c5d9b5124960fcae45b2b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/00ecc145fdecae032b43fc2117c143fd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/37a07abca26376d170713645a1acf530-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d463a06100f0395550f37462705d5d7e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e2939081af19e9ada8c308a775eb947f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dca5ca764db5c540d84331f7a0465fbd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/03b2918e37dd9cd0442e80fed600d9c3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c7804bf144a2c12892e4913903653684-cc_ft_1536.jpg,289 days,1426,99,Spacious bedroom|Common laundry|Spacious unit|Natural hardwood floors|Great closet space|Great size kitchen,"Welcome to 3531 Bronxwood Ave Unit 3F in the Williamsbridge section of The Bronx. Immaculate 1Bedroom 1Bathroom unit with a beautifully distributed layout that gives you the best use of the great space thats offered. This spacious unit offers a foyer, great closet space throughout, spacious living room, formal dinning room, great size kitchen, spacious bedroom and full bath. Natural hardwood floors throughout. Common laundry with new washer & drying machines. Conveniently located steps away from the #2 & #5 Subway station, multiple bus lines, shopping hubs, schools, hospitals, major parkways and restaurants." +29829052,749000,1950,3482 Mickle Ave,4,3,https://photos.zillowstatic.com/fp/d7a6430dec70f2ddfc0c33a5633f862e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cc347d004ba071797df938ff23d3d52c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c5d69566a5a40e5a64520d76a95e5b9a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/12cb434d5e00aff8d98d6022e1b7d980-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/999bff82049a57b113059040e06675a2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/575bfdd9248edd89357f8e2e5ce62276-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e15e6cd3f489d58444f94d9303edb918-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1a45238cb7e3537184d9d2d051e4d0d3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/610878a6cc26afa0db573879cc4be871-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/abfee0f010273bcb2c64eefe9d610150-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dd8ed7cccc21eaf3f0f8532e9a28a7d7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f1f0f51b25000daaa778a161d551758d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/177e4b74f88a02c2c87f0d5878376c92-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/20b40246703c0cf4529d6a22e1bbaeab-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6589dbef861e8cfae9f9721fde847e7c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fca3eb27d3449be0576173210d4dec9b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0f79d8d2147d980707b4b19f516a4602-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/46588f31559a2b8c1f1b32917901442b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cbeb078b5a3d7c0d9f87d0d3d8eccf9d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7bcb6942cd876155e0d657b281ba589e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a35e063d3aa144edab923c9a14089dcc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4425189b4013cdd98c3a7797963adffe-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/adfd71bccd7d3dee4053620577e31de9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e63ac357e35f8c09a8b56a1c969a4444-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/820ccbbc65e929f85bf22e7d9f314c36-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d29101fd9b52740182364b8cf9170c21-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ca46775f6aaa9100e85124a81f7e94e9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d714aab8ac273a46859955aea4776d20-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/20efd5dde953b400c42c789a10116fd5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ff99553def519640cd61b618861d7801-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2333acfac77c68fd5191dc67817d719b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b66f42ce26543098d791c36b9c42df6e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0d23f429e67642690582c0509dd65c61-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6ec8b8e85223172092f6045b761e50ef-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ac697d54d4ee624b6a474644e22b584a-cc_ft_1536.jpg,2 days,285,14,,"Immaculate Newly Renovated Brick semi attached 1 Family Home with high end finishes and a very spacious walkout basement unit with separate front & rear access. Private driveway with parking for up 2-3 cars. The main unit features a spacious 3 Bedroom 1.5 Bath duplex, large beautiful balcony off the kitchen with great space for BBQ & to entertain, newly renovated kitchen with custom cabinets, stainless appliances, Quartz counter tops, recessed lighting throughout, beautiful hardwood floors throughout, newly renovated bathrooms, beautiful wainscoting panel on the main level that offers a touch of elegance, 3 huge bedrooms, Walkout basement unit offers a spacious living room, dining room full bath, large bedroom, separate laundry room, central heat. Spacious back yard. Great opportunity to own this one of a kind unique home. Conveniently located steps away from Subway stations #5 & #2 lines, multiple bus lines BX8 & BX31, major highways, shopping hubs, schools, restaurants and public parks." +83178236,2899900,2008,640 W 237th St #20B,4,5,https://photos.zillowstatic.com/fp/b48f0810c9fd5ea92129f1a730315410-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8e63732b6ce38dd9f759c472281db411-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4c366d6fe3b31d030e5228428f31223c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c3175f53587e03118a009792bce7f842-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/68da521ccc8628612c10c8d5b929f47c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/95b0eb045e08005259a22bcba4cd3708-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/84dae65ea81de063925dac98d49b84ee-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/57992b28c3018f8adc599486cbef0542-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/38f19aabe4fae9f8c5a89b9375a2da72-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8cec1de425562e980b1e77a4f34722ca-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6f205ad2205c9657eb971a6a44756c0c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/31a9ac6cf2a49bb6d0f8e0af5d2d5a7e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/72778300cfdaa05bab723dd6ec9d865e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7592763228b872c6420c300e94a63e08-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e656c36e9e1e67e9fa05c281305294bf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ff194a53ff966febcee3485d4242da3e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ef7426f3739c57c251873d17d20c11b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bf08a1b8ec806e5e8eade49910954dba-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/16dd8edd2fd58db75c46797072104cba-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ffdb1095252afdece3c05aa22bf893ca-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fa0d9b8b16aa3ef8765b2d1070079498-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/45543643ab8befd2ec30e5084951a5fc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f03f4ad109474bd7cdc58ff804a144d2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/36cb51c2ca969c1f8cd23e9b66bb1798-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fdf9689a143d02a204010163fb8bd24a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b1e596c90915e2e7bdad2c56970f199a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fb5e751ce98aec1a45d6417630e9542d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/acde1a60a3bd2501aaa113fc93ee4370-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bd13a9bcc0a63a85e535a6f63174397b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b17dc91451fdf9eb2ce00026b7bfdf02-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/25be66c60e8167222e6d4aca6571f675-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c5f1bc399b92bb7cef58ec38393c3872-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cac3be8d337e73102e0c68db6621e56e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6d74b83c39a718f028ee2f690cfec424-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bffa471702080a8eaeaff5b54a7b7ab0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/64d7f3bdb25ef8423b179d8f71e5bd2c-cc_ft_1536.jpg,234 days,842,33,Floor to ceiling windows|European shaker-style cabinetry|Private rooftop terrace|Luxury living|Landscaped roof deck|Deep soaking tub|Radiant heated floors,"AMAZING NEW PRICE! Imagine that you are on top of the World at The Solaria Condominium PENTHOUSE. Everything at your fingertips with top of the line appliances and warm wood finishes on the European Shaker-style cabinetry in this windowed Chef’s kitchen. This large 4 bedroom, 4 and a half bathroom Condo has over 2700 sf of luxury living with beautiful appointments throughout the home with 10 foot ceilings and floor to ceiling windows. Closets are California closet designed. Enjoy spectacular views of the city and non-stop vistas of the Hudson River and the Palisades from a PRIVATE ROOFTOP TERRACE WITH A PRIVATE GALLERY. You will love the Primary Bedroom with an ensuite bathroom with radiant heated floors and deep soaking tub and separate glass shower, to just relax and enjoy. There is a washer/dryer in the apartment. The Solaria has a 24 hour Concierge, state of the art fitness center, lounge & entertainment center, landscaped roof deck with extensive views, and a children's playroom. Local and express buses a half clock away with access to #1, #4 and A trains, express buses to Midtown East and West Sides, a Wall Street Express bus and Metro North Station Rail Link to the Spuyten Duyvil Metro . Central Riverdale shops just 4 blocks away. OWNER FINANCING AVAILABLE WITH CONDITIONS. +There is an Elevator Repairs Assessment in place." +29833329,825000,1955,1019 E 222nd Street,4,3,https://photos.zillowstatic.com/fp/4d53d1997d8a77b4fc05c6f02f3f736e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/383928d43d516638456996ee9cade529-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4e84f81176b1037b048a2f562d5a9ebc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1176b4a3ffc261171dc9d8ab8a8645c1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/595dd1e7488f7b45a899969b58dbd3cf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/841fef5e9e6d53729595ac9bcb09858b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9139f704744b4547d580d1cf5f30d4c3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bbcee9123443f62df5f31eee931f80ff-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9e5bd2c4f5ca048fced3d84c7c1fbb4d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9d1381ed55636185866fb713cc9b2564-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/61bc0acd3e350aa251cadfa7fb8b2db3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7ba85a5fb64eef25890ee18aedc4366c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3e0163c511f2525ee7f691a119262acf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0be734a3d96d66348cf9c73b03167ca4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3dc600ee36973d6cb0b9b48b7b12deef-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ddf71260b0818218d718028a7824b891-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e0bbacbf7be84c7adae58aa94b37b62f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0b25feccff70df3d8761e569df8f45c0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c101080060893413cdea6c1de87c497c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7326b56554003d6a8d4ae1dd88e82e1b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/67cd73c452bac40bb7b747adc6333e2f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8e53297cfb38fac094595ced6ac9df48-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5ce388a1f57d267dc58575b107aa0ed5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/19902511568fedc480e910c8b89f1c39-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/642e8437b67c4d76aa3bef4356ef7bbe-cc_ft_1536.jpg,32 days,843,36,,"Step into this exceptional two-family home, a standout gem offering over 2,000 square feet of thoughtfully designed living space. Nestled in one of the Bronx's most desirable neighborhoods, this property is a rare blend of comfort, convenience, and potential—perfect for families, investors, or budding entrepreneurs. + +The main unit is a beautifully laid-out 3-bedroom duplex, boasting expansive living areas filled with natural light. Its spacious design provides ample room for relaxing, entertaining, or creating the perfect work-from-home setup. Downstairs, you'll find a cozy one-bedroom apartment with a private entrance, ideal for generating rental income, hosting extended family, or crafting a serene guest retreat. + +Practicality meets convenience with an attached garage and private driveway, making parking a breeze. Beyond its residential appeal, this property is licensed as a daycare center with the capacity to care for up to 16 children. Whether you’re ready to launch a rewarding business venture or enjoy the extra income potential, this home stands out as a truly unique opportunity. + +The location is unbeatable—just minutes away from vibrant shopping centers, a variety of dining options, lush parks, top-tier medical facilities, and major highways. Whether you're commuting, running errands, or exploring the neighborhood, everything you need is within easy reach. + +This remarkable property offers endless possibilities, blending versatility, style, and location. Don’t let this rare chance slip away—make it your next home, investment, or business opportunity today!" +79507461,1399000,1921,50 Morningside Dr #32,3,2,https://photos.zillowstatic.com/fp/d206d8db70879f306e2b0306a64f2619-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1538e740ad5326772b40e4620752b224-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/58152086d4456ddd508b3f8a98cb096a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4dea8a044dc71496fad2af0b1a062e86-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/167c8f94d4d30f4087ab95f1f0b871d2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dc2d64285d6bf5d5e251f1a6ecca2755-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/eb428d7f636ac7085fad2e15d2a63678-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8f8a63485887eb0c90c819484a23e8e1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/24cf80bceb53361db0a378c9c108b084-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/50714ccb4078ccab017de2997d61d970-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/35e8e19c9255b1bf5aa808615584c0f0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ed02b9267235b9f37f1b982449d8c30b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a634b6e25ecb25d97db6b2a40f5d5be1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/15cf59b09845415da7f2f8dae0ed477e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/07b1745e10133766fd442cbfb6c30ccb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/18548cae69b9e7602351fd5ff6c17ea4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4ac77616f64b0bbb7e5efd79ed891be4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/770687ac4fd6ec07a177e5492d89b91c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/96980eea0a6904e6d78b76f928533997-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e37e8f73a68f90368c3c2d122c5fb095-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/43884fc8ffb67bbcf3af0e534c87aac0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/88b46cedcdd6d8bc2dc4a8947e8b3605-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c997767d91aecd06a7fd262f3293e190-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1f613228f4a05e7259349da48eaadca1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e5d44a3236a9629e4baf2c3b47680e2d-cc_ft_1536.jpg,19 days,1803,148,,"Welcome to Residence #32 at 50 Morningside Drive, an exquisite 3-bedroom, 2-bath home in the heart of Morningside Heights. Located in La Touraine, a distinguished 24-unit pre-war co-op built in 1904 by renowned architects Schwartz and Gross, this residence offers the perfect blend of historic charm and modern updates. + +This gracious home features lush, unobstructed eastern views overlooking the 30-acre Morningside Park. Upon entering, a long picture gallery with closet storage leads to an expansive open living and dining rooms adorned with beautiful herringbone wood floors. Off the dining room, a charming balcony provides a perfect perch to enjoy your morning coffee while taking in the scenery and sunrise. + +The updated windowed kitchen is a chef's dream, complete with a Wolf gas oven/range, marble countertops, and abundant custom cabinetry. Each of the three bedrooms features wood flooring with the added comfort of ambient floor heating in the primary bathroom, and the primary and second bedrooms boasting impressive built-in storage. The third bedroom offers flexibility as a home office or cozy den. The primary suite includes a lovely ensuite bath with honeycomb tiling, while the second full bath has been tastefully updated. + +La Touraine is a pet-friendly building with an elevator, free common storage, free bike storage, and a shared laundry facility in the basement. Residents can relax or dine al fresco in the courtyard. The building's striking marble and paneled interior, wrought iron balustrades, and stained glass windows exude old-world charm. + +Ideally located just one block from Columbia University and near the B, C, and 1 trains, this home offers the best of city living with easy access to academics, culture, and green space. Morningside Park features a picturesque pond and waterfall, multiple athletic fields, playgrounds, an arboretum, a dog run, and jogging trails. + +Experience timeless elegance and urban convenience at Residence #32, La Touraine. + +1.5% flip tax paid by purchaser. Monthly maintenance of $1652 plus assessment of $558 for facade repair (repairs estimated to begin in 2026)." +29821817,839000,0,1427 Waring Ave,4,3,https://photos.zillowstatic.com/fp/6ca545b62bc0ab83f6d86bcf22094b30-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2ee069cdefdff529ed43b5a604f96d05-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b79051de3873a99e417bc2a58cdc5bf8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/db8395533f46c26795b41ab587b310ed-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/15af2a177b17e6102da11fa7645567ce-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1aafabbd02c31faf501ebd085319ba84-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/36edeca2382f11421dd8f0c04adbcebc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/43d91ca66a431c46410d71bf29d1c54f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ec5baf61087aaf96520eab83a7e61246-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/366a8364273a6d901d6f321315b729ea-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a50380e9aa481b14e7614643b87baa3c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/51773c034f179e04631789efd8a516b1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/67a4a38a75a733989997785e829cf61b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fadb46f9096f6970de9f41a83d2947e2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ac579a7541ae1a124d6a27bd287acea-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/50e09e5b5aca802e9b3e4d45dc02062a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5595438e8b555f85c8c2800c75aad240-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c94736f35886c292156ff69807ce0c08-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bd0de9bdb63e12cebafb12ff369e15f3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/abc77ce935ad2c413258f493107b2775-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/862b5981b3b45d53851bb91466e6d987-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0f9e655093af0b114952066d8159d3c5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e1b4a67ce409d1444d70124a9e7e09b2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/968625de32113b0e14249bb65198bf2c-cc_ft_1536.jpg,245 days,1617,40,,"The perfect blend of charm and income potential, this detached legal multi-family home is located in the much sought-after Pelham Gardens neighborhood. Featuring a picturesque gable roof, as well as four bedrooms, three bathrooms, front & back yard, and a private driveway & garage. You can also capitalize on the financial benefits with monthly income from the rental unit. Positioned ideally, the home is just a short drive from the Bronx Zoo, the New York Botanical Garden, with Albert Einstein and Jacobi Hospitals within walking distance. Very near trains and the Bronx/Manhattan express bus line. This home is a gem awaiting your personal touch. With some TLC, it can transform into a warm, inviting residence for a family or a profitable asset for an investor. Don't miss out-this must-see property offers both a prime location and significant income potential." +442154295,5250000,2015,5175 Goodridge Ave,7,7,https://photos.zillowstatic.com/fp/c9e348f7f74b19cedd7490215996d49e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d38ff2475e8aa3bc438274fb4c957e54-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a4da981b1d784b3c09664fb179f5a8a8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/15fbd24b7a9175585ac1f93c9a437177-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bdd3ab82857a30db0a24f22dfe5b6fbf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/76e5d04c47918d1a26e81600b39ddac6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5cf2e3da439ca7debb285a2533395ab9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cdffad65c9c33fca24d8f2d2cdfef330-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8d725825f5e0ed49ab96e0311891b503-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/33b61b1cac1dbf9c02e6b0f41dea66f8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3948c22277537333b1b26ea149b135f5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4d63c9f1299a60cf504b60c8b79452e0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c1e3ebefd27377a1c8ff5a40125ec74e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bbd7cba240d98357ad05640efdd06a67-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cbacd35f26f28d7de3b40b17547f00cb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/056256256218cf1f1e19baab66a892dc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a0b71d0dbf90fb4f8bc0a588ec601608-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/799373bf1159de2af5abf703d0b92a82-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f056926e2f3cc9a771a9274eb384cd62-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e9574eb2d53c2282df2faf9e57cf5d04-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5fa0f4b09116b1d6449bf4a09e7e1afe-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8af13b75dc0e74f6f08850fad460b01b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7616bf79679aa1336fcaaf6313992b2c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6ff7ab4828facb1d5dbbd7384cb3c0e0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fcea5372a3c4431e1e93225a6e0e62e9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0cf0fd19b344407ec11df8746a65a9fa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3c4889e796392cc61317e77739f5e580-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/869b43a3876df666bf211fec5fa7b0cc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/89358fcc50fb4ed83d49d44c1a22dfc7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/299fed9a5e45b1acb338cc723258eab4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/149bd1613e14a1f20ed6952d21052bbb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a415e313f4543694843266fe4580bb07-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8bd91164b4a5b92f4a4d04ff0ee701ff-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d09a64e63a85799ce68ce3ad30343b3d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c7f7989d7faed887e758c56937a03f46-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2b2251b2ed0c900cd44d226c2152b821-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/098f66da12146ae9c63f51a47e056b0c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4b61102b3113f2f09c6b7643e2229e57-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/57f0b9e032969d528e8f2c46c3e78ed5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d02758bd5d48048338d4780cb4f3f505-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6c707f01a507f557037a39d7fa5119b6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/469f6c2e731c90dc02c6705b29ec756a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2881cb412cf090f39ed68644fdaadd19-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5ac0b09144d316f0d231cf9cb973acf5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f28ecbbee9c4e1d05ee97b3ac8b0f87e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7c5ef2045acf46ab044d8959b7addc80-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ad9c37f61d16d8e3e7c7bc8d398aac79-cc_ft_1536.jpg,289 days,1360,55,Angled corner fireplace|Finished basement|Exercise room|Inground swimming pool|Private cobbled driveway|Private porch|Distinctive exterior,"NEW LISTING VILLANOVA HEIGHTS +Grand 7-Bd. Shingle-Style Mansion with Pool & Huge, Level, Grassy Grounds + +This picturesque 7-bedroom, 6.5-bath, 9,000-sq.-ft., American Shingle-style mansion was built in 2015. It enjoys exquisite details and luxurious amenities, including an inground swimming pool and a huge, level, grassy backyard. + +Set on close to an acre of land, the home sits along a leafy street in the exclusive, private community of Villanova Heights, adjacent to Riverdale’s Fieldston Historic District. + +Designed by architect Hans Roegele, its distinctive exterior is based on a prominent Gilded Age mansion by the venerable firm of McKim, Mead & White – the 1884 Robert Goelet House, Ochre Point, in Newport, Rhode Island. + +The house features a welcoming center hall connecting to wide and inviting front and back porches; living room with and angled corner fireplace; formal dining room; large center-island kitchen with breakfast bar and stainless-steel appliances; semi-circular breakfast room; family room with fireplace; and library/guest room. + +The second floor has 4 en-suite bedrooms, including a master suite with a cathedral ceiling, its own sitting room, 2 walk-in closets, and a glass door to a private porch. + +The third floor has 3 additional bedrooms, a full bathroom and a large storage room. The finished basement includes a recreation room, exercise room, mudroom, and a maid’s room with a full bathroom. Central HVAC. Elevator with access to all floors. + +There is a private cobbled driveway and an attached 3-car garage. The property totals approximately 0.88 acres. + +Conveniently located for well-known private schools (Horace Mann, Fieldston and Riverdale Country School), the vast greenery of Van Cortlandt Park, and transportation to Manhattan (including express buses and the No. 1 subway train)." +29822587,699000,1965,2434 Tiemann Avenue,3,2,https://photos.zillowstatic.com/fp/e2d0774d4d7f6991d84fd1bc313e1c04-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5682ca631f6a7d1ab28cf31e2bb310c7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0cff4ba393cf327af888902ee1fa184f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c320a556470cc8aaaf5e845b81c19686-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/96d236b73a06aa9642d965cea9b930d0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f70ca102be8e64789efd90d1c109857c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/01a343e83896c5b82567bf8690ea0abd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4be1181af2f257648e1f6a4129d8cba8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0c5c23df34973b76f0dc0549e9d7fa9f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ecf8448bde48025262fe69cc4ba73004-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6a4a387a8b9338e2c3271e9455bb9ed4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/161c4e355125ea3aa2c70a18f17b24bf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8dae6fa58f791a429afb44249dbe1217-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f6e8e095c2504699d782097c9fafe082-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6ff4249b26ac28e6cfbb76a52dfc3823-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/efb8a2a6904ceae94ed98b386920d020-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dea90722a9092bcd6633e5869e271451-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cff85e9ffcd818b8291461239fb2cedf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a2fbbb5f6e74fda83e60063144b890a4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b836bfa61619a3ced0705b2461f73659-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ba0d61b2019bdb7d122e9cbbb66b124-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/710c838b11cff4be122c2ac349750e7f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e79039a6642a15dfb5518b977ee74127-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9cbf73de3db0638cf0adf8a3f509ce25-cc_ft_1536.jpg,55 days,1509,55,,"Location, location, location, Welcome to the best The Bronx has to offer. This delightful residence features 3 spacious bedrooms and 1.5 modern bathrooms, making it perfect for families or those seeking extra room to grow. Located in the vibrant neighborhood of Pelham Gardens. You’ll enjoy easy access to local parks, schools, shopping, and public transportation; Some of the many highlights of this property are; a full finished basement, the private backyard and a porch. There is also a driveway that has 1 car parking space. This stunning property has it all. make it yours today! Easy to show! A/O" +442154188,686800,,1 Windward Ln UNIT 5,2,3,https://photos.zillowstatic.com/fp/23ec294e55a784bfe5b34f22d9273d33-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/83538aeef2f63178ce984c86d21262e5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/134bcaee1fdd93cf7fa82b09eeb5164c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2e651c6beba5e00b35108e1dc1fbd8dd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a03c8145181b3b06c9470a1b5609dfa4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d711c64ba8a3888b1722d76893f9d6b8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a2a5b02f39c350e3806ff3d565e6a76f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/093d8433d9f54fc12110bda8c2cdbb80-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4252202f59dddacd592fe323db873308-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b9fed8351f8f49cbc654904e01d3ee19-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/14bd6639c425f987cb3fba4605d32107-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d14d302f9e4036a1d004c3faaa213dc5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/de4cf493c58efc14d139528f4f95c408-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/33b82f4442f7dbac042efde58e1bc7d2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9f6a029c2034f8c9fe161d188b5f7cb0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7ef39b003b28f2210000164075085de4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7ca9b5b4cb450b8775e7111557e06bd0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d625d0d0e674334d34c59766737c913f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/399143a663f60134c24034ca1fee24d9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f1c263789fc9b0de96f9629b76e6ec2c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3484d30ecae25c387666da0b84de8c55-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6908690fe639e5c34511a41dc4961725-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/451016e75677701807d6cecde3a8ab0f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/19da910d8bd2aca9ed290aad32f1bda9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/32650ea0a49470c17fcbbeae5097b827-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b06e1c42eeb6e5e08bba788be0f100b6-cc_ft_1536.jpg,225 days,991,50,Gas fireplace|Built-in office space|Central ac|Architectural details|Large attached storage space|Open water-views|Water views,"OPEN HOUSE IS BY APPOINTMENT ONLY - The condo association does not allow unattended entries at the gate so unless you have an appointment you will not be given access - PLEASE MAKE SURE YOU CALL ME TO MAKE AN APPOINTMENT. + +STUNNING WATER VIEWS 2 bed / 2.5 bath CONDO + +This exceptional waterfront condo offers one of the most artistic and high-end renovations I have ever seen! +- Curved walls, stainless-steel and plexi-glass architectural details, curved built-in closets, custom lighting, and a stunning floating staircase - a pure piece of art! +This quarter century renovation was designed with absolute innovative brilliance, and at a value that would be near impossible to recreate today. In addition, this condo has full open water-views from the well-appointed balcony, the master bedroom, and from the open concept living, kitchen, and dining space. This spacious 2-bedroom, 2.5-bathroom condo is brimming with architectural details and conveniences such as curved windows, a custom-built ensuite-master-bedroom, central AC, skylights, hardwood floors, a gas fireplace, and a built-in office space. The spacious second bedroom is complete with an artistically built-in loft. The serious chef's kitchen is fully equipped with double ovens, Sub-Zero fridge freezer, two sinks, a stainless-steel pull-out pantry, endless counter space, including a breakfast bar and an abundance of kitchen cabinets. Additional conveniences such as a second-floor laundry area, direct garage access, a large, attached storage space, and a Koi-Pond entrance complete this remarkable home. +Note that this condo has straight interior stairs from its private entrance to the second floor - which can be fitted with a stair-lift for convenience. These views are only attainable from the Boatyard's top floor condos, and this is one of the best! + +The Boatyard Condominium is the only 24/7 manned, gated complex on City Island. Truly unique with its meandering walkways, a large pool overlooking The Sound, and a stunning private pier and Captain’s house, exclusively available to its residents. +An easy MTA commute or short drive to Manhattan affords you this relaxed and friendly beach-lifestyle every day! City Island enjoys over 30 restaurants, multiple beaches & boat clubs, convenience stores, cafes, galleries, PS 175 City Island local school, public library, post office, Chase Bank, even a new Yoga and Pilates studio! Pelham Park at the entrance to City Island is New York City’s largest park – 2,772 square feet of golf courses, a horse stable, walking, biking, and running trails. Not to mention the infamous Orchard Beach, established in 1937! +Life doesn't get better!" +2057087117,199000,1957,730 E 232nd Street #1F,2,1,https://photos.zillowstatic.com/fp/ed619370afaf8cbe92dca1d4640c701b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4b792e815e82b9daf634572a5eb56d75-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bfca8b263cc0534fa5053c0b917d26aa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/74acff7fc582695c0ab0e2801e9c524a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b0606b4e82db1b78b0567fb34b1e6a21-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3f9c987d41c046319f28da843264eb40-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a8bc2cd4a0fd93610b66f1a262cff2d5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8ab79cbabad8e23328776814f46b5c7f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/272566233d10991d101c62848e241a81-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5109302bfeb52575a3ac8bef6be8094f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3b628bfde8fc4142a573a4f58a549d51-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fff76514b6507e0cf1584dd53d5b7957-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/47f54002a2d3a82f9414d0c00b65bad8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b1f4d31277441674a56cc9c948341567-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cbda3b5914b9742cba36ca2403758f70-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/41202484a2c72e6edea3ef5e9e190321-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9f2aead52c227a58599bb9e333f5baec-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e630d35e3234a95384461d030fa3622e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/468443f7952f1b0e9d3d77e9adee70a3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b998802e95eb61c0d8c22077e9d7ed29-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/69d3420d52ebed5a931b1680e3524955-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ffbc9f8d7996f72399ba2e1e080c8367-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5d9ec927d937a32bf3fe6fe08ed2db0f-cc_ft_1536.jpg,23 days,2107,174,Flexible furniture placement|Tons of closets|Hardwood floors|Ample cabinets|Beautifully updated bathroom|Updated eat-in kitchen,"Vacant. Ready for your touch. Large, Well-maintained, clean, affordable two bedrooms with one beautifully updated bathroom co-op located in the Wakefield Cooperative complex. Unit is conveniently located on the first floor with on-site laundry conveniently located a few steps below. Large, updated eat-in kitchen with ample cabinets for your storage needs. Tons of closets. Open Living and dining areas afford you flexible furniture placement and staging possibilities. Additional amenities include: hardwood floors; one-block walking distance to shops, schools, bus, train; 3 blocks to hospital; close proximity to parkways. Electric, Gas, Heat and Hotwater included. Additional $30 per month for each AC unit. Waitlist for parking. Parking fee is $150 per month. Bring your decorative skills and highlight your personal color scheme. Your family will love living in this home. VIDEO OF PROPERTY ATTACHED. +https://drive.google.com/file/d/1BYsXJKzli5W1UV4j6-Rj4fb4ma5dLN0f/view?usp=drive_web" +244468166,235500,1950,9 Fordham Hill Oval #3C,2,1,https://photos.zillowstatic.com/fp/90f1573fcd93ffd11244d70b21d69c2f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/34cdbe3b350795272c7daf093b3686cd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7c44e0bbc68716e0403dfcdbc6346a14-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dd9781665b1871dc69c160fc3d2b955f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/99dc1d31968d158df3bf220aff295a95-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/283227f26ca549d27d6542366f21d6f9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3ab3d70fc7f0257145ddfdd3e5315cd0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/633dcc94bed753e3462d9e3ae6b2fc41-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/37fcde349f73842b43770c789cf2c22f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c707c8b3cf0fdeb1b26eefd878bded96-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ebfe6b03257f9054127c19198c60d47d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b652257176bb1a20629d93ced50791a1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/05f020c2f723c77e930fe4e7f4a04eaa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4a2c2ec38fddd9eca5207278ae6a455d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e094bffdefe34529a75cca0af0873815-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/08e0a4eebe9e653bd9f06c18bc472267-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/095d96621ec3d1e706d0362f6d458e20-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e54026e7468224fad9389deb1d9c9b04-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/de875170c2d5f5a72b86498745c2702f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c4068ce3f01a09b6dce57ea0b3a71b97-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/feb663bc249fc79f40c74be152d5dabd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6a45cc2492a1c503eb94af372ebe856d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f168b7ace85c125a1f3b84f338dc4230-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/25c43edb9abedac649b42d283d0625ff-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/517d5b63796ff0260fc5922e20ae6e18-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5282650a89b154bfcfa2f3d381dff5fe-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/961d6b1ec0436916eb4eabf5e28a3f24-cc_ft_1536.jpg,49 days,291,19,Garden with seating area|Lots of closets|Parquet floors|Additional storage|Nice layout|Spacious apartment,"Completely renovated 3rd floor 2Bedroom co-op in the Fordham Hill oval gated community. Sun filled and very spacious apartment with a nice layout. Parquet floors thoughout, lots of closets and additional storage if needed. the monthly Maintenance includes ALL the utilities Gas, Electric, AC, basic cable, Heat, Hot water, Sewer, Upkeep of grounds, Snow and garbage removal, Building insurance. Onsite laundry, Super and management. 24-hour security, Playground, Garden with seating area. Subletting is allowed. Fordham hill parking $225 a month/free shuttle provided." +2087203269,215000,2009,150 Featherbed Lane #4B,1,1,https://photos.zillowstatic.com/fp/8da78542e1798541ed144d326b479c81-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c4bdbe617116ce1aee374f00b333d685-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9c80719a7e48ca9d45a473470c270700-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/774a9d08402af6e010ecab1680895d97-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/53fa9049ec618e0438b5604fdf141a9a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/eb5fed1e4ddbb506c9ba5c23c8a2e66b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9665cfad1daac16a03e86d3ad5ede28e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1484348034ff30463b3e897b9ff5aba3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8510d4141782a8abec0b1efe315d1a89-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8fcd615e916eec3fdedefdeb8b23c2ab-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1a56071fa3271a940865fc63cf9b8802-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/746db63cce7ded8aed9adb88b088a08b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d5819a950a18f44d75cc91a48e95f171-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/91b3d5b17b2775c9e82d1bdef0211526-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8d730ea5929186ef4534e39804d24ba5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/547e837131955465de37544451cb4d8f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/07f7873ecbaa038b43712937516d23e4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e993285e854cfc8a61b70a70fe0dc9e5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/36e330730496656c3bdc106a907feb67-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cc13ef8a8273a58709c3115e8c593007-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0865c147d2d24cacbfcb9e7adb7c6796-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4ccd709129a46af17189f38df166aee7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fd3c0d38cfc369ed23ca6f189001efa3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/465f28f81d6ef14f3fb9f967c3359835-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/149d7db7b8f3dfb2766885fade82bea2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2fcfc7f3e4257a17697f5f2134d55ff2-cc_ft_1536.jpg,49 days,538,43,,"Unique opportunity to own your very own apartment in the Bronx! Filled with all the modern conveniences you can ask for. It even has nice views from the large windows allowing for a ton of natural light. The apartment features hardwood floors throughout, an open kitchen with granite counters and ample cooking space. Location is a commuters dream for this unit. Close to major highways, George Washington Bridge and public transportation. The building was built in 2009 and it is extremely well maintained. Features a rooftop terrace, recreation room, part-time doorman, and state of the art entry system with security cameras. Don't miss out on this amazing 1 bedroom / 1 bath co-op. It will not last!" +244446711,225000,1961,4705 Henry Hudson Pkwy APT 6B,1,1,https://photos.zillowstatic.com/fp/cb4c4b808b54d2502e8abe44d7f22c45-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8b31362ce72c7f1e605c730505c47bc2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/42d6c380e7d1571cc6c390d35374ed2e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3566de25bd9c128dfbfde0a221894729-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c654e1955d859bff6918f7b88770a519-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/12bf3e4cefadd3761cd067856f24b81d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ddd94cd894152abb4e4a9ee95e404192-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ead3f1f2abf4c68fcac84523d7d456c1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b3f0300f1b335149a4580b51297ff127-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f8855419db5aad51f7098dabdf6960fb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/92e392f4f28e032e2ce2332ec82b98cf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a543acdbecf65c86421fd2f0024b0676-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/db150816d845336332eb42b2ed539448-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2fd6019c12f7284634998f46f797d26e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/44667679e0a3fd6ceebd87122e4dd341-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c02ebd62d3548597bd5751d7083cbe94-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5b67a4d792e693327d7e35d7e864b7d5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1f0a1dd82e0ffbad077eaa71f5c7af66-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/48361935b1c8add336c08ac40c8bb3cf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9cd0609b15577ed84aa1e04b26daa044-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3dfc5cf08cb3a3279a3d053367e4f864-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/55f4ccfd18543cbcf57deac33a974066-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5f622fe575c31d8d23d169b47444f9b6-cc_ft_1536.jpg,54 days,936,31,Bedroom with double closet|Large western balcony|Entry vestibule and foyer|Central air-conditioning|Picture window|Windowed kitchen,"Exclusive New Listing +Bright 1-Bd. Co-op with Sunset Balcony, Swimming Pool, Doormen & Parking Availability + +This bright 1-bedroom, 1-bath apartment is at Windsor South (4705 Henry Hudson Parkway), a postwar luxury co-op building with 24-hour doormen. It enjoys a large western balcony with a sunset view of the great cliffs of the Palisades, plus seasonal glimpses of the Hudson River. + +Standout features include: an entry vestibule and foyer; open living and dining room with a picture window and glass door to the 21-ft. balcony; windowed kitchen; bedroom with double closet; new wood floors throughout; central air-conditioning; west and east exposures; 6th floor; fitness room and outdoor pool in complex. + +The building has parking for rent subject to availability ($60 per month outdoor and $125 per month indoor). + +Monthly Maintenance $1,050 (includes gas, electricity and heat). + +Easy access to transportation. Close to Wave Hill public gardens and culture center." +94715775,539000,2008,87 Heron Lane #436,3,2,https://photos.zillowstatic.com/fp/f5c01ec565c0486238f7a38152a5791f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ded6443ac87640533e7f090c9e4469d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fd8050addd43f58000027cb49c1dc544-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/af59f50023fc699ca8dfe5cc9a2e31bf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/37bd9cb4cba6e8177e8739271960f451-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2d71e25eeae7f0aeb6eabb9e55f792b5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4baac3865913496b851e5b857059fd65-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7c19cfd0ecc9e0d2ed87ea28c6be4487-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0e2b0eaad9e05ff8dc8cfc92d1da5805-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6cd3666c3fc5faf75833de0cebff239c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/92cd9441d21db6aeb933b3336db3f27b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/822554c976f115406053b852c392360e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1cb403fc45d48bd492c50e167f7df6bc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/661b8fc3c734e1b4652739077c5be979-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5743777b70b7637c293c25e31e9dcc13-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d09d0f2e504e08724a89a65948106bda-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/83292fb0582b5b7c5a08f489eb625531-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fad372358b2330cc68019664dbf74b52-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e99c07a30f53c4ee29263ea97f33257b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/22b731802211180dfdc17d35d3c12f0d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1425cd2afe0e01967439bff1f2707b9a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/27a022705d22ca55816f13b36180004d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1687d6486435061f765df1b81ffb7c92-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d22d47b16d8cfa0ddb97d60152133f4e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5b970f33a0fbc62922c224fee2b9dcb3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b12e5656456fffc3cafca3f6ffab2770-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dd9511dc697431e9697e5a3a8b3d0e31-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0ad9fe21c799db8656411a415099e42a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2842813c5b0e2cbcd45d45b42a7406a6-cc_ft_1536.jpg,24 days,1680,85,New dishwasher|Bridge views|Water views|New recessed lighting|In-unit laundry room|New banisters|Master bathroom,"Located at Shorehaven/Harbour Pointe a gated community in Clason Point/Soundview is the New Home to the NYC Ferry! This Second Floor Walk Up has hardwood floors throughout New Banisters installed on both floors. Upgraded New High Energy Efficient Stainless-Steel appliances, New Dishwasher just Installed, Kitchen has a back splash finish. As you leave the kitchen/dining area you are leading into the beautifully designed living room. New Recessed lighting throughout the condominiums on both floors gives the place a beautiful ambiance. In-unit laundry room, central heat, and air, plenty of storage throughout the home. Huge Master bedroom with Master bathroom and your very own jacuzzi bathtub. Water views from the front of back of the townhouse with beautiful Bridge views and Manhattan Skylines. Shorehaven Clubhouse offers a Gym and Playroom for kids to enjoy, an Olympic-sized Pool. Additionally, there is a children's pool, playground, basketball courts, and a tennis court, not forgetting the Spectacular Vies of the Manhattan Skyline. Enjoy a morning walk off the Esplanade with your family or pet. This lovely 24-hour gated community overlooking the Hudson River is conveniently located close to public transportation Bx.27 and 39, Bruckner Plaza Shopping Center, supermarkets, restaurants, and all the Clason Point has to offer with easy accessibility to the Soundview/Clason point Station Ferry that takes you into Manhattan... Additional Information: ParkingFeatures:1 Car Detached," +2056147830,455000,,143D Edgewater Park #D,3,1,https://photos.zillowstatic.com/fp/f61598ac097acbcd72e782464e4b7adc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/af91f4cb261d03f6ae16539325281d4f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/136b690d97474909a8801d6ec9283396-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/204b34cc21522d43669670d6e19fcccc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/76884087f1643e035a77e827e0bfaa8e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8fb86af9bee83394d6f517c6b29da9ba-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ae94e6ffe1620c472f867f770e967ac5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/32e8e7e52237ff5db2161d8b219c612d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/917cc3ce1b029fbf4b06f0b58cb33758-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/33a9598dcb8f496b090362b6c40e1ed6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/89728c12011d42b23d35b3eb33ecc943-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fe9f8baf2d3f63e3a76d2a0259a04605-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4e8adb3988a1c1d4459d2df6f24cd829-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6f265f5148ed627855e0d8a7fc55dfb0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/20e003007775cb15d366cadcd86ab028-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e739103d35d41314455bcf59b272b0b7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3c2816c673e01797fe0711824d2ef2a1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/01b5bf45f0fdae4891fa105b9c2d6f28-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e265bca28ec6d5d82478af3ea50d6e82-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3db0dd07914ba62d9d79cc1be0ed1beb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d4389302a748a5f4e3bcef3590f857fb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fc784e0eb5a5dcf8054bb64c2f240265-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0728ecad39625c622a510a80e237f076-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3213c2020726b2aa282f6020ca344612-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9fb2ce18f679df551ed6ed96b7acd349-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/51482515d7692db8a26cea25154e6cd7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2de2d77c0fc0fe67304a9ee613fa4e38-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/19bf1554df6a36ef6495969d63111613-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fbf57bb5fd8bd615d33cf24aaa802f67-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/16f9c2e05cee4465dfe8efd0b188f83d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/721058f43778eb533c95a514f697091d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b3b76c5be7f6aeec7c2dd95cdb624f31-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/17345cda98bd6759648df62d9bf64168-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e1523140149baa9c5fb6138994107b03-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ffd1013c30ddc7dcb23de6f0f972b74a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ca17a5d86152f96e6501e7d99e7e7be9-cc_ft_1536.jpg,575 days,729,25,Lovely vegetable garden|Walk in closet|Stainless steel appliances|Cathedral ceilings|Corner oasis|Back splash,"This detached move in condition corner oasis is nestled in the Edgewater Park Community & right across from parking lot. Layout: Front yard & side yard for entertaining & BBQ cooking plus lovely vegetable garden. Entrance foyer, Living rm, EIK with stainless steel appliances & back splash plus fits two chairs for dining, Dining rm with built in cabinets for plenty of storage, 2 BR'S (Jack/Jill style) & full Bathroom. 2nd floor: Primary bedroom with cathedral ceilings & skylight (can put 2nd bathroom) plus walk in closet & two add'l closets. Basement - additional storage, workshop area, heating system & laundry -with access door to yard. New hot water tank, 2-zone heating, new roof, electric, Anderson windows, Sun Setter Awning with screens & lights & outside storage closet. Enjoy the many amenities this community offers: Beach, Security & Cameras, Playground, Track, Basketball Court, Fire House, Deli, Corp on Premises & Express Bus pick up & drop off in the community & local buses." +443237090,1100000,1965,458 Swinton Ave #1,7,4,https://photos.zillowstatic.com/fp/ac5bbbc3117c74d6827208967fe6d768-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fc1a728b6d670b19baa761ab855fb911-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/72926ddb44cad433fcd5013b739ea995-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1513c8527629dab612a28cb6ce8139e8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dbab4a097069e434f98d6e97f0daecc9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9f70e655c050e748f7b7a235ae62ac14-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/eb14122266d2043e53b58d73a542115c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ab531c465c09879f9279c1e6f5c9644f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/526c8a41c5c03ab7b2b150ac1cb580f7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e14de111927a254faf1f35c722024a69-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/61e55bca8de037a7de1e7443dca506fd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/222c73d5891bfa136b700dfa7da3813a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2ff01777b5c18cbfa4b916e96c51a350-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c158e1a7e9e707dee8e8ae65700aa1e9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ee9d4678a45a3b340083fe5eff1701d3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c396a97446524d0a41dfc6a36984d943-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/222604a1831bc663941ab748e00de9f2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3c8bb9224bf3a7addb5fcb07dc1f53c8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4d5f83ff7507880d71403fde94852458-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6e9fa5b175b27b3a7147f961d1595921-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f2124b1ec26a5de3d4b4ad16ed22d0a3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fb51bf0bf10f5087add29cb2264994d8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d45127397bb4fa85e45bade634c2075d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5cd1ed769e10bda5312de109a0856948-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/22f107182e16f9955bc89f9b98af607e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d9250e8bb3d2863fc4e0ebd05b079a7b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b16c8f997d87972476a3bdc9a1685805-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/49cacb4b7b5c0fb05fdc45bc48e89abe-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5ce116af9ed261e276ebe0d7b54ef0fb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/14b7668218f5d2013d36c2af1526d819-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cf2ed58d36170fd78dbfdef606d3225f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d15186605c9f7fe558c27b7a52520c6e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/07aded421357ef5f65e28bff6cc2d20f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/22c24b560254aa943b0bef4881912376-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0b35992f7b7d891910a2361b14bd9c63-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a64238fe107307dfb92146ab6f157e73-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0cccb2c4dcd00e6cbf99443456006846-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4e75520f42d01a274f33654089675d19-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dea91aee5e3bc7fe504bd958d44678dd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/adbe8a074688b36d158be7e075a5066f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/997346deb48f7b027756d7dff1ad52ad-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e07ef674113c3fab9d38edd4e3c550fa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/994c7008453c51f76db42739ef98cff8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5d859d866a105218531155cad88a2cb3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f3e34651b8f3e2ecb7f30106d050f42e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/65e8710a1e6ad4a31d7e45eb0fe61925-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0b3388763f543221d6f1bc6a414e28a8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/82f9397e08ae46b682f7b8a1a3cee0df-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e7b6c6320b7e761ffe55dd1c9996288e-cc_ft_1536.jpg,81 days,780,37,Tree-lined block|Full finished walk-out basement|Open floor layout|Private garage,"Make 458 Swinton Ave a cornerstone of your real estate legacy! This well-designed legal two-family is comprised of three independent units. Two identical 3 BR/1BA units feature a classic floorplan with two of the there bedrooms facing a quiet area in the back while an open floor layout in the kitchen, dining room, and living room presents a great flow of space. Ground floor 1BR apartment features a walk-in entrance, still right in - no stairs are involved. A spacious sun-drenched living room in this unit makes it very appealing to a potential renter. The full, finished, walk-out basement is accessible through a common foyer thus making it easy to use. Very convenient parking is located in a private garage on the premises as well as in the driver. Located on a quiet tree-lined block, this rare find is only steps away from Throggs Neck commercial corridor, featuring famous NYC eateries and all types of shopping. Quick access to Manhattan via Bruckner Blvd and NYC Ferry stop at Ferry Point Park. The property will be delivered fully vacant, start building your cash flow on day one. Call us for a showing today!" +2053005716,149000,1962,3531 Bronxwood Avenue #3F,1,1,https://photos.zillowstatic.com/fp/b4d67edcda4a3dec4f240e811c028b0f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/75dcee1e0558f2621da2672a09d88049-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/64e3e18fb93395ddfeb69005efa60d93-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/838d7716bc71652f5bb65a5f8f25266e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2c11bcdc176756cfdf5659f6e76f9c89-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ea6f82ce9b258ed2f67e36e0a67b5c3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/864ae3f908f13850eb84b909b8da5762-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ff4316d1978c6f343d2c48da8377ed40-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/032f983841141b7f8ffb862e8f559944-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b15ef3dd7438bb673b7c426f43252e6f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/28756d106db42a8f474a2b41ab4551d7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9b92d5a0cd6bfada03ed02886b59c3c5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/96560ef9aadec6cb6f6dff1cfec8b7ed-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/db9a7e8628481109669d3ced76e04b58-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/51b4e25ad51c5d9b5124960fcae45b2b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/00ecc145fdecae032b43fc2117c143fd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/37a07abca26376d170713645a1acf530-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d463a06100f0395550f37462705d5d7e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e2939081af19e9ada8c308a775eb947f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dca5ca764db5c540d84331f7a0465fbd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/03b2918e37dd9cd0442e80fed600d9c3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c7804bf144a2c12892e4913903653684-cc_ft_1536.jpg,289 days,1433,99,Spacious bedroom|Common laundry|Spacious unit|Natural hardwood floors|Great closet space|Great size kitchen,"Welcome to 3531 Bronxwood Ave Unit 3F in the Williamsbridge section of The Bronx. Immaculate 1Bedroom 1Bathroom unit with a beautifully distributed layout that gives you the best use of the great space thats offered. This spacious unit offers a foyer, great closet space throughout, spacious living room, formal dinning room, great size kitchen, spacious bedroom and full bath. Natural hardwood floors throughout. Common laundry with new washer & drying machines. Conveniently located steps away from the #2 & #5 Subway station, multiple bus lines, shopping hubs, schools, hospitals, major parkways and restaurants." +29829052,749000,1950,3482 Mickle Ave,4,3,https://photos.zillowstatic.com/fp/d7a6430dec70f2ddfc0c33a5633f862e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cc347d004ba071797df938ff23d3d52c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c5d69566a5a40e5a64520d76a95e5b9a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/12cb434d5e00aff8d98d6022e1b7d980-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/999bff82049a57b113059040e06675a2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/575bfdd9248edd89357f8e2e5ce62276-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e15e6cd3f489d58444f94d9303edb918-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1a45238cb7e3537184d9d2d051e4d0d3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/610878a6cc26afa0db573879cc4be871-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/abfee0f010273bcb2c64eefe9d610150-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dd8ed7cccc21eaf3f0f8532e9a28a7d7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f1f0f51b25000daaa778a161d551758d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/177e4b74f88a02c2c87f0d5878376c92-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/20b40246703c0cf4529d6a22e1bbaeab-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6589dbef861e8cfae9f9721fde847e7c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fca3eb27d3449be0576173210d4dec9b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0f79d8d2147d980707b4b19f516a4602-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/46588f31559a2b8c1f1b32917901442b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cbeb078b5a3d7c0d9f87d0d3d8eccf9d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7bcb6942cd876155e0d657b281ba589e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a35e063d3aa144edab923c9a14089dcc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4425189b4013cdd98c3a7797963adffe-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/adfd71bccd7d3dee4053620577e31de9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e63ac357e35f8c09a8b56a1c969a4444-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/820ccbbc65e929f85bf22e7d9f314c36-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d29101fd9b52740182364b8cf9170c21-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ca46775f6aaa9100e85124a81f7e94e9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d714aab8ac273a46859955aea4776d20-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/20efd5dde953b400c42c789a10116fd5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ff99553def519640cd61b618861d7801-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2333acfac77c68fd5191dc67817d719b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b66f42ce26543098d791c36b9c42df6e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0d23f429e67642690582c0509dd65c61-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6ec8b8e85223172092f6045b761e50ef-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ac697d54d4ee624b6a474644e22b584a-cc_ft_1536.jpg,2 days,286,14,,"Immaculate Newly Renovated Brick semi attached 1 Family Home with high end finishes and a very spacious walkout basement unit with separate front & rear access. Private driveway with parking for up 2-3 cars. The main unit features a spacious 3 Bedroom 1.5 Bath duplex, large beautiful balcony off the kitchen with great space for BBQ & to entertain, newly renovated kitchen with custom cabinets, stainless appliances, Quartz counter tops, recessed lighting throughout, beautiful hardwood floors throughout, newly renovated bathrooms, beautiful wainscoting panel on the main level that offers a touch of elegance, 3 huge bedrooms, Walkout basement unit offers a spacious living room, dining room full bath, large bedroom, separate laundry room, central heat. Spacious back yard. Great opportunity to own this one of a kind unique home. Conveniently located steps away from Subway stations #5 & #2 lines, multiple bus lines BX8 & BX31, major highways, shopping hubs, schools, restaurants and public parks." +83178236,2899900,2008,640 W 237th St #20B,4,5,https://photos.zillowstatic.com/fp/b48f0810c9fd5ea92129f1a730315410-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8e63732b6ce38dd9f759c472281db411-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4c366d6fe3b31d030e5228428f31223c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c3175f53587e03118a009792bce7f842-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/68da521ccc8628612c10c8d5b929f47c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/95b0eb045e08005259a22bcba4cd3708-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/84dae65ea81de063925dac98d49b84ee-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/57992b28c3018f8adc599486cbef0542-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/38f19aabe4fae9f8c5a89b9375a2da72-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8cec1de425562e980b1e77a4f34722ca-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6f205ad2205c9657eb971a6a44756c0c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/31a9ac6cf2a49bb6d0f8e0af5d2d5a7e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/72778300cfdaa05bab723dd6ec9d865e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7592763228b872c6420c300e94a63e08-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e656c36e9e1e67e9fa05c281305294bf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ff194a53ff966febcee3485d4242da3e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ef7426f3739c57c251873d17d20c11b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bf08a1b8ec806e5e8eade49910954dba-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/16dd8edd2fd58db75c46797072104cba-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ffdb1095252afdece3c05aa22bf893ca-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fa0d9b8b16aa3ef8765b2d1070079498-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/45543643ab8befd2ec30e5084951a5fc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f03f4ad109474bd7cdc58ff804a144d2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/36cb51c2ca969c1f8cd23e9b66bb1798-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fdf9689a143d02a204010163fb8bd24a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b1e596c90915e2e7bdad2c56970f199a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fb5e751ce98aec1a45d6417630e9542d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/acde1a60a3bd2501aaa113fc93ee4370-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bd13a9bcc0a63a85e535a6f63174397b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b17dc91451fdf9eb2ce00026b7bfdf02-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/25be66c60e8167222e6d4aca6571f675-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c5f1bc399b92bb7cef58ec38393c3872-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cac3be8d337e73102e0c68db6621e56e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6d74b83c39a718f028ee2f690cfec424-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bffa471702080a8eaeaff5b54a7b7ab0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/64d7f3bdb25ef8423b179d8f71e5bd2c-cc_ft_1536.jpg,234 days,842,33,Floor to ceiling windows|European shaker-style cabinetry|Private rooftop terrace|Luxury living|Landscaped roof deck|Deep soaking tub|Radiant heated floors,"AMAZING NEW PRICE! Imagine that you are on top of the World at The Solaria Condominium PENTHOUSE. Everything at your fingertips with top of the line appliances and warm wood finishes on the European Shaker-style cabinetry in this windowed Chef’s kitchen. This large 4 bedroom, 4 and a half bathroom Condo has over 2700 sf of luxury living with beautiful appointments throughout the home with 10 foot ceilings and floor to ceiling windows. Closets are California closet designed. Enjoy spectacular views of the city and non-stop vistas of the Hudson River and the Palisades from a PRIVATE ROOFTOP TERRACE WITH A PRIVATE GALLERY. You will love the Primary Bedroom with an ensuite bathroom with radiant heated floors and deep soaking tub and separate glass shower, to just relax and enjoy. There is a washer/dryer in the apartment. The Solaria has a 24 hour Concierge, state of the art fitness center, lounge & entertainment center, landscaped roof deck with extensive views, and a children's playroom. Local and express buses a half clock away with access to #1, #4 and A trains, express buses to Midtown East and West Sides, a Wall Street Express bus and Metro North Station Rail Link to the Spuyten Duyvil Metro . Central Riverdale shops just 4 blocks away. OWNER FINANCING AVAILABLE WITH CONDITIONS. +There is an Elevator Repairs Assessment in place." +29833329,825000,1955,1019 E 222nd Street,4,3,https://photos.zillowstatic.com/fp/4d53d1997d8a77b4fc05c6f02f3f736e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/383928d43d516638456996ee9cade529-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4e84f81176b1037b048a2f562d5a9ebc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1176b4a3ffc261171dc9d8ab8a8645c1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/595dd1e7488f7b45a899969b58dbd3cf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/841fef5e9e6d53729595ac9bcb09858b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9139f704744b4547d580d1cf5f30d4c3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bbcee9123443f62df5f31eee931f80ff-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9e5bd2c4f5ca048fced3d84c7c1fbb4d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9d1381ed55636185866fb713cc9b2564-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/61bc0acd3e350aa251cadfa7fb8b2db3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7ba85a5fb64eef25890ee18aedc4366c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3e0163c511f2525ee7f691a119262acf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0be734a3d96d66348cf9c73b03167ca4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3dc600ee36973d6cb0b9b48b7b12deef-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ddf71260b0818218d718028a7824b891-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e0bbacbf7be84c7adae58aa94b37b62f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0b25feccff70df3d8761e569df8f45c0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c101080060893413cdea6c1de87c497c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7326b56554003d6a8d4ae1dd88e82e1b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/67cd73c452bac40bb7b747adc6333e2f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8e53297cfb38fac094595ced6ac9df48-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5ce388a1f57d267dc58575b107aa0ed5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/19902511568fedc480e910c8b89f1c39-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/642e8437b67c4d76aa3bef4356ef7bbe-cc_ft_1536.jpg,32 days,843,36,,"Step into this exceptional two-family home, a standout gem offering over 2,000 square feet of thoughtfully designed living space. Nestled in one of the Bronx's most desirable neighborhoods, this property is a rare blend of comfort, convenience, and potential—perfect for families, investors, or budding entrepreneurs. + +The main unit is a beautifully laid-out 3-bedroom duplex, boasting expansive living areas filled with natural light. Its spacious design provides ample room for relaxing, entertaining, or creating the perfect work-from-home setup. Downstairs, you'll find a cozy one-bedroom apartment with a private entrance, ideal for generating rental income, hosting extended family, or crafting a serene guest retreat. + +Practicality meets convenience with an attached garage and private driveway, making parking a breeze. Beyond its residential appeal, this property is licensed as a daycare center with the capacity to care for up to 16 children. Whether you’re ready to launch a rewarding business venture or enjoy the extra income potential, this home stands out as a truly unique opportunity. + +The location is unbeatable—just minutes away from vibrant shopping centers, a variety of dining options, lush parks, top-tier medical facilities, and major highways. Whether you're commuting, running errands, or exploring the neighborhood, everything you need is within easy reach. + +This remarkable property offers endless possibilities, blending versatility, style, and location. Don’t let this rare chance slip away—make it your next home, investment, or business opportunity today!" +79507461,1399000,1921,50 Morningside Dr #32,3,2,https://photos.zillowstatic.com/fp/d206d8db70879f306e2b0306a64f2619-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1538e740ad5326772b40e4620752b224-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/58152086d4456ddd508b3f8a98cb096a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4dea8a044dc71496fad2af0b1a062e86-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/167c8f94d4d30f4087ab95f1f0b871d2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dc2d64285d6bf5d5e251f1a6ecca2755-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/eb428d7f636ac7085fad2e15d2a63678-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8f8a63485887eb0c90c819484a23e8e1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/24cf80bceb53361db0a378c9c108b084-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/50714ccb4078ccab017de2997d61d970-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/35e8e19c9255b1bf5aa808615584c0f0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ed02b9267235b9f37f1b982449d8c30b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a634b6e25ecb25d97db6b2a40f5d5be1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/15cf59b09845415da7f2f8dae0ed477e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/07b1745e10133766fd442cbfb6c30ccb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/18548cae69b9e7602351fd5ff6c17ea4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4ac77616f64b0bbb7e5efd79ed891be4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/770687ac4fd6ec07a177e5492d89b91c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/96980eea0a6904e6d78b76f928533997-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e37e8f73a68f90368c3c2d122c5fb095-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/43884fc8ffb67bbcf3af0e534c87aac0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/88b46cedcdd6d8bc2dc4a8947e8b3605-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c997767d91aecd06a7fd262f3293e190-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1f613228f4a05e7259349da48eaadca1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e5d44a3236a9629e4baf2c3b47680e2d-cc_ft_1536.jpg,19 days,1804,148,,"Welcome to Residence #32 at 50 Morningside Drive, an exquisite 3-bedroom, 2-bath home in the heart of Morningside Heights. Located in La Touraine, a distinguished 24-unit pre-war co-op built in 1904 by renowned architects Schwartz and Gross, this residence offers the perfect blend of historic charm and modern updates. + +This gracious home features lush, unobstructed eastern views overlooking the 30-acre Morningside Park. Upon entering, a long picture gallery with closet storage leads to an expansive open living and dining rooms adorned with beautiful herringbone wood floors. Off the dining room, a charming balcony provides a perfect perch to enjoy your morning coffee while taking in the scenery and sunrise. + +The updated windowed kitchen is a chef's dream, complete with a Wolf gas oven/range, marble countertops, and abundant custom cabinetry. Each of the three bedrooms features wood flooring with the added comfort of ambient floor heating in the primary bathroom, and the primary and second bedrooms boasting impressive built-in storage. The third bedroom offers flexibility as a home office or cozy den. The primary suite includes a lovely ensuite bath with honeycomb tiling, while the second full bath has been tastefully updated. + +La Touraine is a pet-friendly building with an elevator, free common storage, free bike storage, and a shared laundry facility in the basement. Residents can relax or dine al fresco in the courtyard. The building's striking marble and paneled interior, wrought iron balustrades, and stained glass windows exude old-world charm. + +Ideally located just one block from Columbia University and near the B, C, and 1 trains, this home offers the best of city living with easy access to academics, culture, and green space. Morningside Park features a picturesque pond and waterfall, multiple athletic fields, playgrounds, an arboretum, a dog run, and jogging trails. + +Experience timeless elegance and urban convenience at Residence #32, La Touraine. + +1.5% flip tax paid by purchaser. Monthly maintenance of $1652 plus assessment of $558 for facade repair (repairs estimated to begin in 2026)." +29821817,839000,0,1427 Waring Ave,4,3,https://photos.zillowstatic.com/fp/6ca545b62bc0ab83f6d86bcf22094b30-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2ee069cdefdff529ed43b5a604f96d05-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b79051de3873a99e417bc2a58cdc5bf8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/db8395533f46c26795b41ab587b310ed-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/15af2a177b17e6102da11fa7645567ce-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1aafabbd02c31faf501ebd085319ba84-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/36edeca2382f11421dd8f0c04adbcebc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/43d91ca66a431c46410d71bf29d1c54f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ec5baf61087aaf96520eab83a7e61246-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/366a8364273a6d901d6f321315b729ea-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a50380e9aa481b14e7614643b87baa3c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/51773c034f179e04631789efd8a516b1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/67a4a38a75a733989997785e829cf61b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fadb46f9096f6970de9f41a83d2947e2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ac579a7541ae1a124d6a27bd287acea-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/50e09e5b5aca802e9b3e4d45dc02062a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5595438e8b555f85c8c2800c75aad240-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c94736f35886c292156ff69807ce0c08-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bd0de9bdb63e12cebafb12ff369e15f3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/abc77ce935ad2c413258f493107b2775-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/862b5981b3b45d53851bb91466e6d987-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0f9e655093af0b114952066d8159d3c5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e1b4a67ce409d1444d70124a9e7e09b2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/968625de32113b0e14249bb65198bf2c-cc_ft_1536.jpg,245 days,1618,40,,"The perfect blend of charm and income potential, this detached legal multi-family home is located in the much sought-after Pelham Gardens neighborhood. Featuring a picturesque gable roof, as well as four bedrooms, three bathrooms, front & back yard, and a private driveway & garage. You can also capitalize on the financial benefits with monthly income from the rental unit. Positioned ideally, the home is just a short drive from the Bronx Zoo, the New York Botanical Garden, with Albert Einstein and Jacobi Hospitals within walking distance. Very near trains and the Bronx/Manhattan express bus line. This home is a gem awaiting your personal touch. With some TLC, it can transform into a warm, inviting residence for a family or a profitable asset for an investor. Don't miss out-this must-see property offers both a prime location and significant income potential." +442154295,5250000,2015,5175 Goodridge Ave,7,7,https://photos.zillowstatic.com/fp/c9e348f7f74b19cedd7490215996d49e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d38ff2475e8aa3bc438274fb4c957e54-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a4da981b1d784b3c09664fb179f5a8a8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/15fbd24b7a9175585ac1f93c9a437177-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bdd3ab82857a30db0a24f22dfe5b6fbf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/76e5d04c47918d1a26e81600b39ddac6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5cf2e3da439ca7debb285a2533395ab9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cdffad65c9c33fca24d8f2d2cdfef330-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8d725825f5e0ed49ab96e0311891b503-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/33b61b1cac1dbf9c02e6b0f41dea66f8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3948c22277537333b1b26ea149b135f5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4d63c9f1299a60cf504b60c8b79452e0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c1e3ebefd27377a1c8ff5a40125ec74e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bbd7cba240d98357ad05640efdd06a67-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cbacd35f26f28d7de3b40b17547f00cb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/056256256218cf1f1e19baab66a892dc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a0b71d0dbf90fb4f8bc0a588ec601608-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/799373bf1159de2af5abf703d0b92a82-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f056926e2f3cc9a771a9274eb384cd62-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e9574eb2d53c2282df2faf9e57cf5d04-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5fa0f4b09116b1d6449bf4a09e7e1afe-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8af13b75dc0e74f6f08850fad460b01b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7616bf79679aa1336fcaaf6313992b2c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6ff7ab4828facb1d5dbbd7384cb3c0e0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fcea5372a3c4431e1e93225a6e0e62e9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0cf0fd19b344407ec11df8746a65a9fa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3c4889e796392cc61317e77739f5e580-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/869b43a3876df666bf211fec5fa7b0cc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/89358fcc50fb4ed83d49d44c1a22dfc7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/299fed9a5e45b1acb338cc723258eab4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/149bd1613e14a1f20ed6952d21052bbb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a415e313f4543694843266fe4580bb07-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8bd91164b4a5b92f4a4d04ff0ee701ff-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d09a64e63a85799ce68ce3ad30343b3d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c7f7989d7faed887e758c56937a03f46-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2b2251b2ed0c900cd44d226c2152b821-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/098f66da12146ae9c63f51a47e056b0c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4b61102b3113f2f09c6b7643e2229e57-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/57f0b9e032969d528e8f2c46c3e78ed5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d02758bd5d48048338d4780cb4f3f505-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6c707f01a507f557037a39d7fa5119b6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/469f6c2e731c90dc02c6705b29ec756a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2881cb412cf090f39ed68644fdaadd19-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5ac0b09144d316f0d231cf9cb973acf5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f28ecbbee9c4e1d05ee97b3ac8b0f87e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7c5ef2045acf46ab044d8959b7addc80-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ad9c37f61d16d8e3e7c7bc8d398aac79-cc_ft_1536.jpg,289 days,1360,55,Angled corner fireplace|Finished basement|Exercise room|Inground swimming pool|Private cobbled driveway|Private porch|Distinctive exterior,"NEW LISTING VILLANOVA HEIGHTS +Grand 7-Bd. Shingle-Style Mansion with Pool & Huge, Level, Grassy Grounds + +This picturesque 7-bedroom, 6.5-bath, 9,000-sq.-ft., American Shingle-style mansion was built in 2015. It enjoys exquisite details and luxurious amenities, including an inground swimming pool and a huge, level, grassy backyard. + +Set on close to an acre of land, the home sits along a leafy street in the exclusive, private community of Villanova Heights, adjacent to Riverdale’s Fieldston Historic District. + +Designed by architect Hans Roegele, its distinctive exterior is based on a prominent Gilded Age mansion by the venerable firm of McKim, Mead & White – the 1884 Robert Goelet House, Ochre Point, in Newport, Rhode Island. + +The house features a welcoming center hall connecting to wide and inviting front and back porches; living room with and angled corner fireplace; formal dining room; large center-island kitchen with breakfast bar and stainless-steel appliances; semi-circular breakfast room; family room with fireplace; and library/guest room. + +The second floor has 4 en-suite bedrooms, including a master suite with a cathedral ceiling, its own sitting room, 2 walk-in closets, and a glass door to a private porch. + +The third floor has 3 additional bedrooms, a full bathroom and a large storage room. The finished basement includes a recreation room, exercise room, mudroom, and a maid’s room with a full bathroom. Central HVAC. Elevator with access to all floors. + +There is a private cobbled driveway and an attached 3-car garage. The property totals approximately 0.88 acres. + +Conveniently located for well-known private schools (Horace Mann, Fieldston and Riverdale Country School), the vast greenery of Van Cortlandt Park, and transportation to Manhattan (including express buses and the No. 1 subway train)." +2053005716,149000,1962,3531 Bronxwood Avenue #3F,1,1,https://photos.zillowstatic.com/fp/b4d67edcda4a3dec4f240e811c028b0f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/75dcee1e0558f2621da2672a09d88049-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/64e3e18fb93395ddfeb69005efa60d93-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/838d7716bc71652f5bb65a5f8f25266e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2c11bcdc176756cfdf5659f6e76f9c89-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ea6f82ce9b258ed2f67e36e0a67b5c3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/864ae3f908f13850eb84b909b8da5762-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ff4316d1978c6f343d2c48da8377ed40-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/032f983841141b7f8ffb862e8f559944-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b15ef3dd7438bb673b7c426f43252e6f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/28756d106db42a8f474a2b41ab4551d7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9b92d5a0cd6bfada03ed02886b59c3c5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/96560ef9aadec6cb6f6dff1cfec8b7ed-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/db9a7e8628481109669d3ced76e04b58-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/51b4e25ad51c5d9b5124960fcae45b2b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/00ecc145fdecae032b43fc2117c143fd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/37a07abca26376d170713645a1acf530-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d463a06100f0395550f37462705d5d7e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e2939081af19e9ada8c308a775eb947f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dca5ca764db5c540d84331f7a0465fbd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/03b2918e37dd9cd0442e80fed600d9c3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c7804bf144a2c12892e4913903653684-cc_ft_1536.jpg,289 days,1434,99,Spacious bedroom|Common laundry|Spacious unit|Natural hardwood floors|Great closet space|Great size kitchen,"Welcome to 3531 Bronxwood Ave Unit 3F in the Williamsbridge section of The Bronx. Immaculate 1Bedroom 1Bathroom unit with a beautifully distributed layout that gives you the best use of the great space thats offered. This spacious unit offers a foyer, great closet space throughout, spacious living room, formal dinning room, great size kitchen, spacious bedroom and full bath. Natural hardwood floors throughout. Common laundry with new washer & drying machines. Conveniently located steps away from the #2 & #5 Subway station, multiple bus lines, shopping hubs, schools, hospitals, major parkways and restaurants." +29829052,749000,1950,3482 Mickle Ave,4,3,https://photos.zillowstatic.com/fp/d7a6430dec70f2ddfc0c33a5633f862e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cc347d004ba071797df938ff23d3d52c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c5d69566a5a40e5a64520d76a95e5b9a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/12cb434d5e00aff8d98d6022e1b7d980-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/999bff82049a57b113059040e06675a2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/575bfdd9248edd89357f8e2e5ce62276-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e15e6cd3f489d58444f94d9303edb918-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1a45238cb7e3537184d9d2d051e4d0d3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/610878a6cc26afa0db573879cc4be871-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/abfee0f010273bcb2c64eefe9d610150-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dd8ed7cccc21eaf3f0f8532e9a28a7d7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f1f0f51b25000daaa778a161d551758d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/177e4b74f88a02c2c87f0d5878376c92-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/20b40246703c0cf4529d6a22e1bbaeab-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6589dbef861e8cfae9f9721fde847e7c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fca3eb27d3449be0576173210d4dec9b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0f79d8d2147d980707b4b19f516a4602-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/46588f31559a2b8c1f1b32917901442b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cbeb078b5a3d7c0d9f87d0d3d8eccf9d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7bcb6942cd876155e0d657b281ba589e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a35e063d3aa144edab923c9a14089dcc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4425189b4013cdd98c3a7797963adffe-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/adfd71bccd7d3dee4053620577e31de9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e63ac357e35f8c09a8b56a1c969a4444-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/820ccbbc65e929f85bf22e7d9f314c36-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d29101fd9b52740182364b8cf9170c21-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ca46775f6aaa9100e85124a81f7e94e9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d714aab8ac273a46859955aea4776d20-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/20efd5dde953b400c42c789a10116fd5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ff99553def519640cd61b618861d7801-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2333acfac77c68fd5191dc67817d719b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b66f42ce26543098d791c36b9c42df6e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0d23f429e67642690582c0509dd65c61-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6ec8b8e85223172092f6045b761e50ef-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ac697d54d4ee624b6a474644e22b584a-cc_ft_1536.jpg,2 days,286,14,,"Immaculate Newly Renovated Brick semi attached 1 Family Home with high end finishes and a very spacious walkout basement unit with separate front & rear access. Private driveway with parking for up 2-3 cars. The main unit features a spacious 3 Bedroom 1.5 Bath duplex, large beautiful balcony off the kitchen with great space for BBQ & to entertain, newly renovated kitchen with custom cabinets, stainless appliances, Quartz counter tops, recessed lighting throughout, beautiful hardwood floors throughout, newly renovated bathrooms, beautiful wainscoting panel on the main level that offers a touch of elegance, 3 huge bedrooms, Walkout basement unit offers a spacious living room, dining room full bath, large bedroom, separate laundry room, central heat. Spacious back yard. Great opportunity to own this one of a kind unique home. Conveniently located steps away from Subway stations #5 & #2 lines, multiple bus lines BX8 & BX31, major highways, shopping hubs, schools, restaurants and public parks." +83178236,2899900,2008,640 W 237th St #20B,4,5,https://photos.zillowstatic.com/fp/b48f0810c9fd5ea92129f1a730315410-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8e63732b6ce38dd9f759c472281db411-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4c366d6fe3b31d030e5228428f31223c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c3175f53587e03118a009792bce7f842-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/68da521ccc8628612c10c8d5b929f47c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/95b0eb045e08005259a22bcba4cd3708-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/84dae65ea81de063925dac98d49b84ee-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/57992b28c3018f8adc599486cbef0542-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/38f19aabe4fae9f8c5a89b9375a2da72-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8cec1de425562e980b1e77a4f34722ca-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6f205ad2205c9657eb971a6a44756c0c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/31a9ac6cf2a49bb6d0f8e0af5d2d5a7e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/72778300cfdaa05bab723dd6ec9d865e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7592763228b872c6420c300e94a63e08-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e656c36e9e1e67e9fa05c281305294bf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ff194a53ff966febcee3485d4242da3e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ef7426f3739c57c251873d17d20c11b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bf08a1b8ec806e5e8eade49910954dba-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/16dd8edd2fd58db75c46797072104cba-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ffdb1095252afdece3c05aa22bf893ca-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fa0d9b8b16aa3ef8765b2d1070079498-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/45543643ab8befd2ec30e5084951a5fc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f03f4ad109474bd7cdc58ff804a144d2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/36cb51c2ca969c1f8cd23e9b66bb1798-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fdf9689a143d02a204010163fb8bd24a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b1e596c90915e2e7bdad2c56970f199a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fb5e751ce98aec1a45d6417630e9542d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/acde1a60a3bd2501aaa113fc93ee4370-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bd13a9bcc0a63a85e535a6f63174397b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b17dc91451fdf9eb2ce00026b7bfdf02-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/25be66c60e8167222e6d4aca6571f675-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c5f1bc399b92bb7cef58ec38393c3872-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cac3be8d337e73102e0c68db6621e56e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6d74b83c39a718f028ee2f690cfec424-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bffa471702080a8eaeaff5b54a7b7ab0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/64d7f3bdb25ef8423b179d8f71e5bd2c-cc_ft_1536.jpg,234 days,842,33,Floor to ceiling windows|European shaker-style cabinetry|Private rooftop terrace|Luxury living|Landscaped roof deck|Deep soaking tub|Radiant heated floors,"AMAZING NEW PRICE! Imagine that you are on top of the World at The Solaria Condominium PENTHOUSE. Everything at your fingertips with top of the line appliances and warm wood finishes on the European Shaker-style cabinetry in this windowed Chef’s kitchen. This large 4 bedroom, 4 and a half bathroom Condo has over 2700 sf of luxury living with beautiful appointments throughout the home with 10 foot ceilings and floor to ceiling windows. Closets are California closet designed. Enjoy spectacular views of the city and non-stop vistas of the Hudson River and the Palisades from a PRIVATE ROOFTOP TERRACE WITH A PRIVATE GALLERY. You will love the Primary Bedroom with an ensuite bathroom with radiant heated floors and deep soaking tub and separate glass shower, to just relax and enjoy. There is a washer/dryer in the apartment. The Solaria has a 24 hour Concierge, state of the art fitness center, lounge & entertainment center, landscaped roof deck with extensive views, and a children's playroom. Local and express buses a half clock away with access to #1, #4 and A trains, express buses to Midtown East and West Sides, a Wall Street Express bus and Metro North Station Rail Link to the Spuyten Duyvil Metro . Central Riverdale shops just 4 blocks away. OWNER FINANCING AVAILABLE WITH CONDITIONS. +There is an Elevator Repairs Assessment in place." +29833329,825000,1955,1019 E 222nd Street,4,3,https://photos.zillowstatic.com/fp/4d53d1997d8a77b4fc05c6f02f3f736e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/383928d43d516638456996ee9cade529-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4e84f81176b1037b048a2f562d5a9ebc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1176b4a3ffc261171dc9d8ab8a8645c1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/595dd1e7488f7b45a899969b58dbd3cf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/841fef5e9e6d53729595ac9bcb09858b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9139f704744b4547d580d1cf5f30d4c3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bbcee9123443f62df5f31eee931f80ff-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9e5bd2c4f5ca048fced3d84c7c1fbb4d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9d1381ed55636185866fb713cc9b2564-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/61bc0acd3e350aa251cadfa7fb8b2db3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7ba85a5fb64eef25890ee18aedc4366c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3e0163c511f2525ee7f691a119262acf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0be734a3d96d66348cf9c73b03167ca4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3dc600ee36973d6cb0b9b48b7b12deef-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ddf71260b0818218d718028a7824b891-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e0bbacbf7be84c7adae58aa94b37b62f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0b25feccff70df3d8761e569df8f45c0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c101080060893413cdea6c1de87c497c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7326b56554003d6a8d4ae1dd88e82e1b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/67cd73c452bac40bb7b747adc6333e2f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8e53297cfb38fac094595ced6ac9df48-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5ce388a1f57d267dc58575b107aa0ed5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/19902511568fedc480e910c8b89f1c39-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/642e8437b67c4d76aa3bef4356ef7bbe-cc_ft_1536.jpg,32 days,843,36,,"Step into this exceptional two-family home, a standout gem offering over 2,000 square feet of thoughtfully designed living space. Nestled in one of the Bronx's most desirable neighborhoods, this property is a rare blend of comfort, convenience, and potential—perfect for families, investors, or budding entrepreneurs. + +The main unit is a beautifully laid-out 3-bedroom duplex, boasting expansive living areas filled with natural light. Its spacious design provides ample room for relaxing, entertaining, or creating the perfect work-from-home setup. Downstairs, you'll find a cozy one-bedroom apartment with a private entrance, ideal for generating rental income, hosting extended family, or crafting a serene guest retreat. + +Practicality meets convenience with an attached garage and private driveway, making parking a breeze. Beyond its residential appeal, this property is licensed as a daycare center with the capacity to care for up to 16 children. Whether you’re ready to launch a rewarding business venture or enjoy the extra income potential, this home stands out as a truly unique opportunity. + +The location is unbeatable—just minutes away from vibrant shopping centers, a variety of dining options, lush parks, top-tier medical facilities, and major highways. Whether you're commuting, running errands, or exploring the neighborhood, everything you need is within easy reach. + +This remarkable property offers endless possibilities, blending versatility, style, and location. Don’t let this rare chance slip away—make it your next home, investment, or business opportunity today!" +79507461,1399000,1921,50 Morningside Dr #32,3,2,https://photos.zillowstatic.com/fp/d206d8db70879f306e2b0306a64f2619-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1538e740ad5326772b40e4620752b224-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/58152086d4456ddd508b3f8a98cb096a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4dea8a044dc71496fad2af0b1a062e86-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/167c8f94d4d30f4087ab95f1f0b871d2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dc2d64285d6bf5d5e251f1a6ecca2755-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/eb428d7f636ac7085fad2e15d2a63678-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8f8a63485887eb0c90c819484a23e8e1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/24cf80bceb53361db0a378c9c108b084-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/50714ccb4078ccab017de2997d61d970-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/35e8e19c9255b1bf5aa808615584c0f0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ed02b9267235b9f37f1b982449d8c30b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a634b6e25ecb25d97db6b2a40f5d5be1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/15cf59b09845415da7f2f8dae0ed477e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/07b1745e10133766fd442cbfb6c30ccb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/18548cae69b9e7602351fd5ff6c17ea4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4ac77616f64b0bbb7e5efd79ed891be4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/770687ac4fd6ec07a177e5492d89b91c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/96980eea0a6904e6d78b76f928533997-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e37e8f73a68f90368c3c2d122c5fb095-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/43884fc8ffb67bbcf3af0e534c87aac0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/88b46cedcdd6d8bc2dc4a8947e8b3605-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c997767d91aecd06a7fd262f3293e190-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1f613228f4a05e7259349da48eaadca1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e5d44a3236a9629e4baf2c3b47680e2d-cc_ft_1536.jpg,19 days,1804,148,,"Welcome to Residence #32 at 50 Morningside Drive, an exquisite 3-bedroom, 2-bath home in the heart of Morningside Heights. Located in La Touraine, a distinguished 24-unit pre-war co-op built in 1904 by renowned architects Schwartz and Gross, this residence offers the perfect blend of historic charm and modern updates. + +This gracious home features lush, unobstructed eastern views overlooking the 30-acre Morningside Park. Upon entering, a long picture gallery with closet storage leads to an expansive open living and dining rooms adorned with beautiful herringbone wood floors. Off the dining room, a charming balcony provides a perfect perch to enjoy your morning coffee while taking in the scenery and sunrise. + +The updated windowed kitchen is a chef's dream, complete with a Wolf gas oven/range, marble countertops, and abundant custom cabinetry. Each of the three bedrooms features wood flooring with the added comfort of ambient floor heating in the primary bathroom, and the primary and second bedrooms boasting impressive built-in storage. The third bedroom offers flexibility as a home office or cozy den. The primary suite includes a lovely ensuite bath with honeycomb tiling, while the second full bath has been tastefully updated. + +La Touraine is a pet-friendly building with an elevator, free common storage, free bike storage, and a shared laundry facility in the basement. Residents can relax or dine al fresco in the courtyard. The building's striking marble and paneled interior, wrought iron balustrades, and stained glass windows exude old-world charm. + +Ideally located just one block from Columbia University and near the B, C, and 1 trains, this home offers the best of city living with easy access to academics, culture, and green space. Morningside Park features a picturesque pond and waterfall, multiple athletic fields, playgrounds, an arboretum, a dog run, and jogging trails. + +Experience timeless elegance and urban convenience at Residence #32, La Touraine. + +1.5% flip tax paid by purchaser. Monthly maintenance of $1652 plus assessment of $558 for facade repair (repairs estimated to begin in 2026)." +29821817,839000,0,1427 Waring Ave,4,3,https://photos.zillowstatic.com/fp/6ca545b62bc0ab83f6d86bcf22094b30-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2ee069cdefdff529ed43b5a604f96d05-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b79051de3873a99e417bc2a58cdc5bf8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/db8395533f46c26795b41ab587b310ed-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/15af2a177b17e6102da11fa7645567ce-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1aafabbd02c31faf501ebd085319ba84-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/36edeca2382f11421dd8f0c04adbcebc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/43d91ca66a431c46410d71bf29d1c54f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ec5baf61087aaf96520eab83a7e61246-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/366a8364273a6d901d6f321315b729ea-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a50380e9aa481b14e7614643b87baa3c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/51773c034f179e04631789efd8a516b1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/67a4a38a75a733989997785e829cf61b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fadb46f9096f6970de9f41a83d2947e2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ac579a7541ae1a124d6a27bd287acea-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/50e09e5b5aca802e9b3e4d45dc02062a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5595438e8b555f85c8c2800c75aad240-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c94736f35886c292156ff69807ce0c08-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bd0de9bdb63e12cebafb12ff369e15f3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/abc77ce935ad2c413258f493107b2775-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/862b5981b3b45d53851bb91466e6d987-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0f9e655093af0b114952066d8159d3c5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e1b4a67ce409d1444d70124a9e7e09b2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/968625de32113b0e14249bb65198bf2c-cc_ft_1536.jpg,245 days,1618,40,,"The perfect blend of charm and income potential, this detached legal multi-family home is located in the much sought-after Pelham Gardens neighborhood. Featuring a picturesque gable roof, as well as four bedrooms, three bathrooms, front & back yard, and a private driveway & garage. You can also capitalize on the financial benefits with monthly income from the rental unit. Positioned ideally, the home is just a short drive from the Bronx Zoo, the New York Botanical Garden, with Albert Einstein and Jacobi Hospitals within walking distance. Very near trains and the Bronx/Manhattan express bus line. This home is a gem awaiting your personal touch. With some TLC, it can transform into a warm, inviting residence for a family or a profitable asset for an investor. Don't miss out-this must-see property offers both a prime location and significant income potential." +442154295,5250000,2015,5175 Goodridge Ave,7,7,https://photos.zillowstatic.com/fp/c9e348f7f74b19cedd7490215996d49e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d38ff2475e8aa3bc438274fb4c957e54-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a4da981b1d784b3c09664fb179f5a8a8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/15fbd24b7a9175585ac1f93c9a437177-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bdd3ab82857a30db0a24f22dfe5b6fbf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/76e5d04c47918d1a26e81600b39ddac6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5cf2e3da439ca7debb285a2533395ab9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cdffad65c9c33fca24d8f2d2cdfef330-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8d725825f5e0ed49ab96e0311891b503-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/33b61b1cac1dbf9c02e6b0f41dea66f8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3948c22277537333b1b26ea149b135f5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4d63c9f1299a60cf504b60c8b79452e0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c1e3ebefd27377a1c8ff5a40125ec74e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bbd7cba240d98357ad05640efdd06a67-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cbacd35f26f28d7de3b40b17547f00cb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/056256256218cf1f1e19baab66a892dc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a0b71d0dbf90fb4f8bc0a588ec601608-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/799373bf1159de2af5abf703d0b92a82-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f056926e2f3cc9a771a9274eb384cd62-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e9574eb2d53c2282df2faf9e57cf5d04-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5fa0f4b09116b1d6449bf4a09e7e1afe-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8af13b75dc0e74f6f08850fad460b01b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7616bf79679aa1336fcaaf6313992b2c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6ff7ab4828facb1d5dbbd7384cb3c0e0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fcea5372a3c4431e1e93225a6e0e62e9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0cf0fd19b344407ec11df8746a65a9fa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3c4889e796392cc61317e77739f5e580-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/869b43a3876df666bf211fec5fa7b0cc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/89358fcc50fb4ed83d49d44c1a22dfc7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/299fed9a5e45b1acb338cc723258eab4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/149bd1613e14a1f20ed6952d21052bbb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a415e313f4543694843266fe4580bb07-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8bd91164b4a5b92f4a4d04ff0ee701ff-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d09a64e63a85799ce68ce3ad30343b3d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c7f7989d7faed887e758c56937a03f46-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2b2251b2ed0c900cd44d226c2152b821-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/098f66da12146ae9c63f51a47e056b0c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4b61102b3113f2f09c6b7643e2229e57-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/57f0b9e032969d528e8f2c46c3e78ed5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d02758bd5d48048338d4780cb4f3f505-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6c707f01a507f557037a39d7fa5119b6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/469f6c2e731c90dc02c6705b29ec756a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2881cb412cf090f39ed68644fdaadd19-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5ac0b09144d316f0d231cf9cb973acf5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f28ecbbee9c4e1d05ee97b3ac8b0f87e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7c5ef2045acf46ab044d8959b7addc80-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ad9c37f61d16d8e3e7c7bc8d398aac79-cc_ft_1536.jpg,289 days,1360,55,Angled corner fireplace|Finished basement|Exercise room|Inground swimming pool|Private cobbled driveway|Private porch|Distinctive exterior,"NEW LISTING VILLANOVA HEIGHTS +Grand 7-Bd. Shingle-Style Mansion with Pool & Huge, Level, Grassy Grounds + +This picturesque 7-bedroom, 6.5-bath, 9,000-sq.-ft., American Shingle-style mansion was built in 2015. It enjoys exquisite details and luxurious amenities, including an inground swimming pool and a huge, level, grassy backyard. + +Set on close to an acre of land, the home sits along a leafy street in the exclusive, private community of Villanova Heights, adjacent to Riverdale’s Fieldston Historic District. + +Designed by architect Hans Roegele, its distinctive exterior is based on a prominent Gilded Age mansion by the venerable firm of McKim, Mead & White – the 1884 Robert Goelet House, Ochre Point, in Newport, Rhode Island. + +The house features a welcoming center hall connecting to wide and inviting front and back porches; living room with and angled corner fireplace; formal dining room; large center-island kitchen with breakfast bar and stainless-steel appliances; semi-circular breakfast room; family room with fireplace; and library/guest room. + +The second floor has 4 en-suite bedrooms, including a master suite with a cathedral ceiling, its own sitting room, 2 walk-in closets, and a glass door to a private porch. + +The third floor has 3 additional bedrooms, a full bathroom and a large storage room. The finished basement includes a recreation room, exercise room, mudroom, and a maid’s room with a full bathroom. Central HVAC. Elevator with access to all floors. + +There is a private cobbled driveway and an attached 3-car garage. The property totals approximately 0.88 acres. + +Conveniently located for well-known private schools (Horace Mann, Fieldston and Riverdale Country School), the vast greenery of Van Cortlandt Park, and transportation to Manhattan (including express buses and the No. 1 subway train)." +29822587,699000,1965,2434 Tiemann Avenue,3,2,https://photos.zillowstatic.com/fp/e2d0774d4d7f6991d84fd1bc313e1c04-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5682ca631f6a7d1ab28cf31e2bb310c7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0cff4ba393cf327af888902ee1fa184f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c320a556470cc8aaaf5e845b81c19686-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/96d236b73a06aa9642d965cea9b930d0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f70ca102be8e64789efd90d1c109857c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/01a343e83896c5b82567bf8690ea0abd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4be1181af2f257648e1f6a4129d8cba8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0c5c23df34973b76f0dc0549e9d7fa9f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ecf8448bde48025262fe69cc4ba73004-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6a4a387a8b9338e2c3271e9455bb9ed4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/161c4e355125ea3aa2c70a18f17b24bf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8dae6fa58f791a429afb44249dbe1217-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f6e8e095c2504699d782097c9fafe082-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6ff4249b26ac28e6cfbb76a52dfc3823-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/efb8a2a6904ceae94ed98b386920d020-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dea90722a9092bcd6633e5869e271451-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cff85e9ffcd818b8291461239fb2cedf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a2fbbb5f6e74fda83e60063144b890a4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b836bfa61619a3ced0705b2461f73659-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ba0d61b2019bdb7d122e9cbbb66b124-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/710c838b11cff4be122c2ac349750e7f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e79039a6642a15dfb5518b977ee74127-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9cbf73de3db0638cf0adf8a3f509ce25-cc_ft_1536.jpg,55 days,1509,55,,"Location, location, location, Welcome to the best The Bronx has to offer. This delightful residence features 3 spacious bedrooms and 1.5 modern bathrooms, making it perfect for families or those seeking extra room to grow. Located in the vibrant neighborhood of Pelham Gardens. You’ll enjoy easy access to local parks, schools, shopping, and public transportation; Some of the many highlights of this property are; a full finished basement, the private backyard and a porch. There is also a driveway that has 1 car parking space. This stunning property has it all. make it yours today! Easy to show! A/O" +442154188,686800,,1 Windward Ln UNIT 5,2,3,https://photos.zillowstatic.com/fp/23ec294e55a784bfe5b34f22d9273d33-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/83538aeef2f63178ce984c86d21262e5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/134bcaee1fdd93cf7fa82b09eeb5164c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2e651c6beba5e00b35108e1dc1fbd8dd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a03c8145181b3b06c9470a1b5609dfa4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d711c64ba8a3888b1722d76893f9d6b8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a2a5b02f39c350e3806ff3d565e6a76f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/093d8433d9f54fc12110bda8c2cdbb80-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4252202f59dddacd592fe323db873308-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b9fed8351f8f49cbc654904e01d3ee19-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/14bd6639c425f987cb3fba4605d32107-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d14d302f9e4036a1d004c3faaa213dc5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/de4cf493c58efc14d139528f4f95c408-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/33b82f4442f7dbac042efde58e1bc7d2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9f6a029c2034f8c9fe161d188b5f7cb0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7ef39b003b28f2210000164075085de4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7ca9b5b4cb450b8775e7111557e06bd0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d625d0d0e674334d34c59766737c913f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/399143a663f60134c24034ca1fee24d9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f1c263789fc9b0de96f9629b76e6ec2c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3484d30ecae25c387666da0b84de8c55-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6908690fe639e5c34511a41dc4961725-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/451016e75677701807d6cecde3a8ab0f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/19da910d8bd2aca9ed290aad32f1bda9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/32650ea0a49470c17fcbbeae5097b827-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b06e1c42eeb6e5e08bba788be0f100b6-cc_ft_1536.jpg,225 days,991,50,Gas fireplace|Built-in office space|Central ac|Architectural details|Large attached storage space|Open water-views|Water views,"OPEN HOUSE IS BY APPOINTMENT ONLY - The condo association does not allow unattended entries at the gate so unless you have an appointment you will not be given access - PLEASE MAKE SURE YOU CALL ME TO MAKE AN APPOINTMENT. + +STUNNING WATER VIEWS 2 bed / 2.5 bath CONDO + +This exceptional waterfront condo offers one of the most artistic and high-end renovations I have ever seen! +- Curved walls, stainless-steel and plexi-glass architectural details, curved built-in closets, custom lighting, and a stunning floating staircase - a pure piece of art! +This quarter century renovation was designed with absolute innovative brilliance, and at a value that would be near impossible to recreate today. In addition, this condo has full open water-views from the well-appointed balcony, the master bedroom, and from the open concept living, kitchen, and dining space. This spacious 2-bedroom, 2.5-bathroom condo is brimming with architectural details and conveniences such as curved windows, a custom-built ensuite-master-bedroom, central AC, skylights, hardwood floors, a gas fireplace, and a built-in office space. The spacious second bedroom is complete with an artistically built-in loft. The serious chef's kitchen is fully equipped with double ovens, Sub-Zero fridge freezer, two sinks, a stainless-steel pull-out pantry, endless counter space, including a breakfast bar and an abundance of kitchen cabinets. Additional conveniences such as a second-floor laundry area, direct garage access, a large, attached storage space, and a Koi-Pond entrance complete this remarkable home. +Note that this condo has straight interior stairs from its private entrance to the second floor - which can be fitted with a stair-lift for convenience. These views are only attainable from the Boatyard's top floor condos, and this is one of the best! + +The Boatyard Condominium is the only 24/7 manned, gated complex on City Island. Truly unique with its meandering walkways, a large pool overlooking The Sound, and a stunning private pier and Captain’s house, exclusively available to its residents. +An easy MTA commute or short drive to Manhattan affords you this relaxed and friendly beach-lifestyle every day! City Island enjoys over 30 restaurants, multiple beaches & boat clubs, convenience stores, cafes, galleries, PS 175 City Island local school, public library, post office, Chase Bank, even a new Yoga and Pilates studio! Pelham Park at the entrance to City Island is New York City’s largest park – 2,772 square feet of golf courses, a horse stable, walking, biking, and running trails. Not to mention the infamous Orchard Beach, established in 1937! +Life doesn't get better!" +2057087117,199000,1957,730 E 232nd Street #1F,2,1,https://photos.zillowstatic.com/fp/ed619370afaf8cbe92dca1d4640c701b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4b792e815e82b9daf634572a5eb56d75-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bfca8b263cc0534fa5053c0b917d26aa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/74acff7fc582695c0ab0e2801e9c524a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b0606b4e82db1b78b0567fb34b1e6a21-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3f9c987d41c046319f28da843264eb40-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a8bc2cd4a0fd93610b66f1a262cff2d5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8ab79cbabad8e23328776814f46b5c7f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/272566233d10991d101c62848e241a81-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5109302bfeb52575a3ac8bef6be8094f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3b628bfde8fc4142a573a4f58a549d51-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fff76514b6507e0cf1584dd53d5b7957-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/47f54002a2d3a82f9414d0c00b65bad8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b1f4d31277441674a56cc9c948341567-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cbda3b5914b9742cba36ca2403758f70-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/41202484a2c72e6edea3ef5e9e190321-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9f2aead52c227a58599bb9e333f5baec-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e630d35e3234a95384461d030fa3622e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/468443f7952f1b0e9d3d77e9adee70a3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b998802e95eb61c0d8c22077e9d7ed29-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/69d3420d52ebed5a931b1680e3524955-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ffbc9f8d7996f72399ba2e1e080c8367-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5d9ec927d937a32bf3fe6fe08ed2db0f-cc_ft_1536.jpg,23 days,2107,174,Flexible furniture placement|Tons of closets|Hardwood floors|Ample cabinets|Beautifully updated bathroom|Updated eat-in kitchen,"Vacant. Ready for your touch. Large, Well-maintained, clean, affordable two bedrooms with one beautifully updated bathroom co-op located in the Wakefield Cooperative complex. Unit is conveniently located on the first floor with on-site laundry conveniently located a few steps below. Large, updated eat-in kitchen with ample cabinets for your storage needs. Tons of closets. Open Living and dining areas afford you flexible furniture placement and staging possibilities. Additional amenities include: hardwood floors; one-block walking distance to shops, schools, bus, train; 3 blocks to hospital; close proximity to parkways. Electric, Gas, Heat and Hotwater included. Additional $30 per month for each AC unit. Waitlist for parking. Parking fee is $150 per month. Bring your decorative skills and highlight your personal color scheme. Your family will love living in this home. VIDEO OF PROPERTY ATTACHED. +https://drive.google.com/file/d/1BYsXJKzli5W1UV4j6-Rj4fb4ma5dLN0f/view?usp=drive_web" +244468166,235500,1950,9 Fordham Hill Oval #3C,2,1,https://photos.zillowstatic.com/fp/90f1573fcd93ffd11244d70b21d69c2f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/34cdbe3b350795272c7daf093b3686cd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7c44e0bbc68716e0403dfcdbc6346a14-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dd9781665b1871dc69c160fc3d2b955f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/99dc1d31968d158df3bf220aff295a95-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/283227f26ca549d27d6542366f21d6f9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3ab3d70fc7f0257145ddfdd3e5315cd0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/633dcc94bed753e3462d9e3ae6b2fc41-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/37fcde349f73842b43770c789cf2c22f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c707c8b3cf0fdeb1b26eefd878bded96-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ebfe6b03257f9054127c19198c60d47d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b652257176bb1a20629d93ced50791a1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/05f020c2f723c77e930fe4e7f4a04eaa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4a2c2ec38fddd9eca5207278ae6a455d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e094bffdefe34529a75cca0af0873815-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/08e0a4eebe9e653bd9f06c18bc472267-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/095d96621ec3d1e706d0362f6d458e20-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e54026e7468224fad9389deb1d9c9b04-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/de875170c2d5f5a72b86498745c2702f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c4068ce3f01a09b6dce57ea0b3a71b97-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/feb663bc249fc79f40c74be152d5dabd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6a45cc2492a1c503eb94af372ebe856d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f168b7ace85c125a1f3b84f338dc4230-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/25c43edb9abedac649b42d283d0625ff-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/517d5b63796ff0260fc5922e20ae6e18-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5282650a89b154bfcfa2f3d381dff5fe-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/961d6b1ec0436916eb4eabf5e28a3f24-cc_ft_1536.jpg,49 days,291,19,Garden with seating area|Lots of closets|Parquet floors|Additional storage|Nice layout|Spacious apartment,"Completely renovated 3rd floor 2Bedroom co-op in the Fordham Hill oval gated community. Sun filled and very spacious apartment with a nice layout. Parquet floors thoughout, lots of closets and additional storage if needed. the monthly Maintenance includes ALL the utilities Gas, Electric, AC, basic cable, Heat, Hot water, Sewer, Upkeep of grounds, Snow and garbage removal, Building insurance. Onsite laundry, Super and management. 24-hour security, Playground, Garden with seating area. Subletting is allowed. Fordham hill parking $225 a month/free shuttle provided." +2087203269,215000,2009,150 Featherbed Lane #4B,1,1,https://photos.zillowstatic.com/fp/8da78542e1798541ed144d326b479c81-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c4bdbe617116ce1aee374f00b333d685-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9c80719a7e48ca9d45a473470c270700-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/774a9d08402af6e010ecab1680895d97-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/53fa9049ec618e0438b5604fdf141a9a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/eb5fed1e4ddbb506c9ba5c23c8a2e66b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9665cfad1daac16a03e86d3ad5ede28e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1484348034ff30463b3e897b9ff5aba3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8510d4141782a8abec0b1efe315d1a89-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8fcd615e916eec3fdedefdeb8b23c2ab-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1a56071fa3271a940865fc63cf9b8802-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/746db63cce7ded8aed9adb88b088a08b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d5819a950a18f44d75cc91a48e95f171-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/91b3d5b17b2775c9e82d1bdef0211526-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8d730ea5929186ef4534e39804d24ba5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/547e837131955465de37544451cb4d8f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/07f7873ecbaa038b43712937516d23e4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e993285e854cfc8a61b70a70fe0dc9e5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/36e330730496656c3bdc106a907feb67-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cc13ef8a8273a58709c3115e8c593007-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0865c147d2d24cacbfcb9e7adb7c6796-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4ccd709129a46af17189f38df166aee7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fd3c0d38cfc369ed23ca6f189001efa3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/465f28f81d6ef14f3fb9f967c3359835-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/149d7db7b8f3dfb2766885fade82bea2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2fcfc7f3e4257a17697f5f2134d55ff2-cc_ft_1536.jpg,49 days,538,43,,"Unique opportunity to own your very own apartment in the Bronx! Filled with all the modern conveniences you can ask for. It even has nice views from the large windows allowing for a ton of natural light. The apartment features hardwood floors throughout, an open kitchen with granite counters and ample cooking space. Location is a commuters dream for this unit. Close to major highways, George Washington Bridge and public transportation. The building was built in 2009 and it is extremely well maintained. Features a rooftop terrace, recreation room, part-time doorman, and state of the art entry system with security cameras. Don't miss out on this amazing 1 bedroom / 1 bath co-op. It will not last!" +244446711,225000,1961,4705 Henry Hudson Pkwy APT 6B,1,1,https://photos.zillowstatic.com/fp/cb4c4b808b54d2502e8abe44d7f22c45-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8b31362ce72c7f1e605c730505c47bc2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/42d6c380e7d1571cc6c390d35374ed2e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3566de25bd9c128dfbfde0a221894729-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c654e1955d859bff6918f7b88770a519-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/12bf3e4cefadd3761cd067856f24b81d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ddd94cd894152abb4e4a9ee95e404192-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ead3f1f2abf4c68fcac84523d7d456c1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b3f0300f1b335149a4580b51297ff127-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f8855419db5aad51f7098dabdf6960fb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/92e392f4f28e032e2ce2332ec82b98cf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a543acdbecf65c86421fd2f0024b0676-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/db150816d845336332eb42b2ed539448-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2fd6019c12f7284634998f46f797d26e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/44667679e0a3fd6ceebd87122e4dd341-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c02ebd62d3548597bd5751d7083cbe94-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5b67a4d792e693327d7e35d7e864b7d5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1f0a1dd82e0ffbad077eaa71f5c7af66-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/48361935b1c8add336c08ac40c8bb3cf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9cd0609b15577ed84aa1e04b26daa044-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3dfc5cf08cb3a3279a3d053367e4f864-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/55f4ccfd18543cbcf57deac33a974066-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5f622fe575c31d8d23d169b47444f9b6-cc_ft_1536.jpg,54 days,936,31,Bedroom with double closet|Large western balcony|Entry vestibule and foyer|Central air-conditioning|Picture window|Windowed kitchen,"Exclusive New Listing +Bright 1-Bd. Co-op with Sunset Balcony, Swimming Pool, Doormen & Parking Availability + +This bright 1-bedroom, 1-bath apartment is at Windsor South (4705 Henry Hudson Parkway), a postwar luxury co-op building with 24-hour doormen. It enjoys a large western balcony with a sunset view of the great cliffs of the Palisades, plus seasonal glimpses of the Hudson River. + +Standout features include: an entry vestibule and foyer; open living and dining room with a picture window and glass door to the 21-ft. balcony; windowed kitchen; bedroom with double closet; new wood floors throughout; central air-conditioning; west and east exposures; 6th floor; fitness room and outdoor pool in complex. + +The building has parking for rent subject to availability ($60 per month outdoor and $125 per month indoor). + +Monthly Maintenance $1,050 (includes gas, electricity and heat). + +Easy access to transportation. Close to Wave Hill public gardens and culture center." +94715775,539000,2008,87 Heron Lane #436,3,2,https://photos.zillowstatic.com/fp/f5c01ec565c0486238f7a38152a5791f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ded6443ac87640533e7f090c9e4469d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fd8050addd43f58000027cb49c1dc544-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/af59f50023fc699ca8dfe5cc9a2e31bf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/37bd9cb4cba6e8177e8739271960f451-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2d71e25eeae7f0aeb6eabb9e55f792b5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4baac3865913496b851e5b857059fd65-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7c19cfd0ecc9e0d2ed87ea28c6be4487-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0e2b0eaad9e05ff8dc8cfc92d1da5805-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6cd3666c3fc5faf75833de0cebff239c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/92cd9441d21db6aeb933b3336db3f27b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/822554c976f115406053b852c392360e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1cb403fc45d48bd492c50e167f7df6bc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/661b8fc3c734e1b4652739077c5be979-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5743777b70b7637c293c25e31e9dcc13-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d09d0f2e504e08724a89a65948106bda-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/83292fb0582b5b7c5a08f489eb625531-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fad372358b2330cc68019664dbf74b52-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e99c07a30f53c4ee29263ea97f33257b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/22b731802211180dfdc17d35d3c12f0d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1425cd2afe0e01967439bff1f2707b9a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/27a022705d22ca55816f13b36180004d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1687d6486435061f765df1b81ffb7c92-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d22d47b16d8cfa0ddb97d60152133f4e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5b970f33a0fbc62922c224fee2b9dcb3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b12e5656456fffc3cafca3f6ffab2770-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dd9511dc697431e9697e5a3a8b3d0e31-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0ad9fe21c799db8656411a415099e42a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2842813c5b0e2cbcd45d45b42a7406a6-cc_ft_1536.jpg,24 days,1680,85,New dishwasher|Bridge views|Water views|New recessed lighting|In-unit laundry room|New banisters|Master bathroom,"Located at Shorehaven/Harbour Pointe a gated community in Clason Point/Soundview is the New Home to the NYC Ferry! This Second Floor Walk Up has hardwood floors throughout New Banisters installed on both floors. Upgraded New High Energy Efficient Stainless-Steel appliances, New Dishwasher just Installed, Kitchen has a back splash finish. As you leave the kitchen/dining area you are leading into the beautifully designed living room. New Recessed lighting throughout the condominiums on both floors gives the place a beautiful ambiance. In-unit laundry room, central heat, and air, plenty of storage throughout the home. Huge Master bedroom with Master bathroom and your very own jacuzzi bathtub. Water views from the front of back of the townhouse with beautiful Bridge views and Manhattan Skylines. Shorehaven Clubhouse offers a Gym and Playroom for kids to enjoy, an Olympic-sized Pool. Additionally, there is a children's pool, playground, basketball courts, and a tennis court, not forgetting the Spectacular Vies of the Manhattan Skyline. Enjoy a morning walk off the Esplanade with your family or pet. This lovely 24-hour gated community overlooking the Hudson River is conveniently located close to public transportation Bx.27 and 39, Bruckner Plaza Shopping Center, supermarkets, restaurants, and all the Clason Point has to offer with easy accessibility to the Soundview/Clason point Station Ferry that takes you into Manhattan... Additional Information: ParkingFeatures:1 Car Detached," +2056147830,455000,,143D Edgewater Park #D,3,1,https://photos.zillowstatic.com/fp/f61598ac097acbcd72e782464e4b7adc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/af91f4cb261d03f6ae16539325281d4f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/136b690d97474909a8801d6ec9283396-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/204b34cc21522d43669670d6e19fcccc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/76884087f1643e035a77e827e0bfaa8e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8fb86af9bee83394d6f517c6b29da9ba-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ae94e6ffe1620c472f867f770e967ac5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/32e8e7e52237ff5db2161d8b219c612d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/917cc3ce1b029fbf4b06f0b58cb33758-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/33a9598dcb8f496b090362b6c40e1ed6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/89728c12011d42b23d35b3eb33ecc943-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fe9f8baf2d3f63e3a76d2a0259a04605-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4e8adb3988a1c1d4459d2df6f24cd829-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6f265f5148ed627855e0d8a7fc55dfb0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/20e003007775cb15d366cadcd86ab028-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e739103d35d41314455bcf59b272b0b7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3c2816c673e01797fe0711824d2ef2a1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/01b5bf45f0fdae4891fa105b9c2d6f28-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e265bca28ec6d5d82478af3ea50d6e82-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3db0dd07914ba62d9d79cc1be0ed1beb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d4389302a748a5f4e3bcef3590f857fb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fc784e0eb5a5dcf8054bb64c2f240265-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0728ecad39625c622a510a80e237f076-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3213c2020726b2aa282f6020ca344612-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9fb2ce18f679df551ed6ed96b7acd349-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/51482515d7692db8a26cea25154e6cd7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2de2d77c0fc0fe67304a9ee613fa4e38-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/19bf1554df6a36ef6495969d63111613-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fbf57bb5fd8bd615d33cf24aaa802f67-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/16f9c2e05cee4465dfe8efd0b188f83d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/721058f43778eb533c95a514f697091d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b3b76c5be7f6aeec7c2dd95cdb624f31-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/17345cda98bd6759648df62d9bf64168-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e1523140149baa9c5fb6138994107b03-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ffd1013c30ddc7dcb23de6f0f972b74a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ca17a5d86152f96e6501e7d99e7e7be9-cc_ft_1536.jpg,575 days,729,25,Lovely vegetable garden|Walk in closet|Stainless steel appliances|Cathedral ceilings|Corner oasis|Back splash,"This detached move in condition corner oasis is nestled in the Edgewater Park Community & right across from parking lot. Layout: Front yard & side yard for entertaining & BBQ cooking plus lovely vegetable garden. Entrance foyer, Living rm, EIK with stainless steel appliances & back splash plus fits two chairs for dining, Dining rm with built in cabinets for plenty of storage, 2 BR'S (Jack/Jill style) & full Bathroom. 2nd floor: Primary bedroom with cathedral ceilings & skylight (can put 2nd bathroom) plus walk in closet & two add'l closets. Basement - additional storage, workshop area, heating system & laundry -with access door to yard. New hot water tank, 2-zone heating, new roof, electric, Anderson windows, Sun Setter Awning with screens & lights & outside storage closet. Enjoy the many amenities this community offers: Beach, Security & Cameras, Playground, Track, Basketball Court, Fire House, Deli, Corp on Premises & Express Bus pick up & drop off in the community & local buses." +443237090,1100000,1965,458 Swinton Ave #1,7,4,https://photos.zillowstatic.com/fp/ac5bbbc3117c74d6827208967fe6d768-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fc1a728b6d670b19baa761ab855fb911-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/72926ddb44cad433fcd5013b739ea995-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1513c8527629dab612a28cb6ce8139e8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dbab4a097069e434f98d6e97f0daecc9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9f70e655c050e748f7b7a235ae62ac14-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/eb14122266d2043e53b58d73a542115c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ab531c465c09879f9279c1e6f5c9644f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/526c8a41c5c03ab7b2b150ac1cb580f7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e14de111927a254faf1f35c722024a69-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/61e55bca8de037a7de1e7443dca506fd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/222c73d5891bfa136b700dfa7da3813a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2ff01777b5c18cbfa4b916e96c51a350-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c158e1a7e9e707dee8e8ae65700aa1e9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ee9d4678a45a3b340083fe5eff1701d3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c396a97446524d0a41dfc6a36984d943-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/222604a1831bc663941ab748e00de9f2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3c8bb9224bf3a7addb5fcb07dc1f53c8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4d5f83ff7507880d71403fde94852458-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6e9fa5b175b27b3a7147f961d1595921-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f2124b1ec26a5de3d4b4ad16ed22d0a3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fb51bf0bf10f5087add29cb2264994d8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d45127397bb4fa85e45bade634c2075d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5cd1ed769e10bda5312de109a0856948-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/22f107182e16f9955bc89f9b98af607e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d9250e8bb3d2863fc4e0ebd05b079a7b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b16c8f997d87972476a3bdc9a1685805-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/49cacb4b7b5c0fb05fdc45bc48e89abe-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5ce116af9ed261e276ebe0d7b54ef0fb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/14b7668218f5d2013d36c2af1526d819-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cf2ed58d36170fd78dbfdef606d3225f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d15186605c9f7fe558c27b7a52520c6e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/07aded421357ef5f65e28bff6cc2d20f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/22c24b560254aa943b0bef4881912376-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0b35992f7b7d891910a2361b14bd9c63-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a64238fe107307dfb92146ab6f157e73-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0cccb2c4dcd00e6cbf99443456006846-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4e75520f42d01a274f33654089675d19-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dea91aee5e3bc7fe504bd958d44678dd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/adbe8a074688b36d158be7e075a5066f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/997346deb48f7b027756d7dff1ad52ad-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e07ef674113c3fab9d38edd4e3c550fa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/994c7008453c51f76db42739ef98cff8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5d859d866a105218531155cad88a2cb3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f3e34651b8f3e2ecb7f30106d050f42e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/65e8710a1e6ad4a31d7e45eb0fe61925-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0b3388763f543221d6f1bc6a414e28a8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/82f9397e08ae46b682f7b8a1a3cee0df-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e7b6c6320b7e761ffe55dd1c9996288e-cc_ft_1536.jpg,81 days,780,37,Tree-lined block|Full finished walk-out basement|Open floor layout|Private garage,"Make 458 Swinton Ave a cornerstone of your real estate legacy! This well-designed legal two-family is comprised of three independent units. Two identical 3 BR/1BA units feature a classic floorplan with two of the there bedrooms facing a quiet area in the back while an open floor layout in the kitchen, dining room, and living room presents a great flow of space. Ground floor 1BR apartment features a walk-in entrance, still right in - no stairs are involved. A spacious sun-drenched living room in this unit makes it very appealing to a potential renter. The full, finished, walk-out basement is accessible through a common foyer thus making it easy to use. Very convenient parking is located in a private garage on the premises as well as in the driver. Located on a quiet tree-lined block, this rare find is only steps away from Throggs Neck commercial corridor, featuring famous NYC eateries and all types of shopping. Quick access to Manhattan via Bruckner Blvd and NYC Ferry stop at Ferry Point Park. The property will be delivered fully vacant, start building your cash flow on day one. Call us for a showing today!" +418964161,699000,1948,1189 Morris Park Ave #1,3,2,https://photos.zillowstatic.com/fp/60f2552f33705fc895d0c8af56da33c2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c5cbe89234d8f63ccd4ea1d29b226c58-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3d8e7ddda82f86996d3e37a9d2f290c2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a0896693c5afca142d4ca8abfe13e1c1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4de59b693e5a9982b66151b15152e6fa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d07a10ee0f1bb480220b9579cdd1bbd8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/33fdd8820ef08ee68de28d89ed9fc85c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0da2b1dd72723d0f7c8edf6b8de9f6d0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fe3d8f2c5777824cb958c986ddae7a78-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e75f692b75e168e9aec8010e599b2a83-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7021b1af31d92c142dfc9ec507e0e0ff-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b916def81751904bfb3d240b81601afe-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/46d020c5f946d0b593acb71683976f6e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/69d56e17c0f6adc550d69fca26324ed7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c54ee68e28e947e7ff1944fa98c505a5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/893ccacfc29cd68e9db7e4ad30fdb1a0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0aab8e733575efcb3bb41a0e8d87e2a6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1011ee0197ba835e5eaed98ecdd1c5cc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d94c9bbe2b5f32cf63accfd8f67f4406-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ba793a3fc7777e1e53696d33f363bb02-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8c20c45f75037de911abcfb63d9f857a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7cd84397a83d2e93aa36ab43833228c5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/532859318bc0a664d447c8cbf4666ca4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bbfd74d0f7d9e4d84533462f57fab0cc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f6e4e5d3e52ce08fe4b30e86363867e0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/96fd4d03be6938d62535576afbd8cc5b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2999864166e6122ebeda8c2f31806250-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6275f15192d8fdef93f49ce1797d22a6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/51ef0050d45fde94d579a50a961d125d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f13f69f597b1bbf1c31e49e9b9373ef7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/001e61b4618a5d3777ecd13f8cf7b505-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/006ddc97c4f77d722ebbc807bbe584e5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/563103b4f218192473a5977443f5cd18-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3ecfbe0a98712e973743437e11eb02d6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f578a01a0c6f867ad50b805271d27397-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f00828035a3504caa162fc801b89a2e4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/485aeda8c149648e87ddd1b1dabfe96c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dbfe38b0a5d7f6bb9401bef606ed5e21-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d62cf904fef3da6840987d4c137a0a4c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e6f27fcde066911e92e8bf32b9fbce66-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/96652e184413b8859f249233bd0eaa48-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a45573e8b2168e82e13e79f3acdb999c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ae921f445176393c1f8e161ab5c93ca6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ab5be7c93f1f900c683afd8d8f1e31a0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cffbdb086d278317b382f7eef104b79c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fb8c2a914e55c609c2838cbd8845ed15-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/daef20c2d2c69bb239a6fc070d4a6ff6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/44abdc96681ca662a61563fcfa7aa8d7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2b3b0aa716478b345f07f9f08fa55241-cc_ft_1536.jpg,206 days,1529,44,,"Check out this well maintained single family house in the sought after Morris park / Indian village section of the Bronx. Walking distance to Albert Einstein hospital and Montefiore. The property is in walking distance to all transportation and shops. This brick semi attached home offers 3 bedrooms, 1 full bath, hardwood floors, great size bedrooms with plenty of closet space. First floor offers a big living, dining room and kitchen. Second floor offers 3 bedrooms, and 1 full bath. Fill unfinished basement. Boiler was changed a few years ago, and the roof is only a couple years old. Give us a call for more info." +2053005716,149000,1962,3531 Bronxwood Avenue #3F,1,1,https://photos.zillowstatic.com/fp/b4d67edcda4a3dec4f240e811c028b0f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/75dcee1e0558f2621da2672a09d88049-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/64e3e18fb93395ddfeb69005efa60d93-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/838d7716bc71652f5bb65a5f8f25266e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2c11bcdc176756cfdf5659f6e76f9c89-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ea6f82ce9b258ed2f67e36e0a67b5c3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/864ae3f908f13850eb84b909b8da5762-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ff4316d1978c6f343d2c48da8377ed40-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/032f983841141b7f8ffb862e8f559944-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b15ef3dd7438bb673b7c426f43252e6f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/28756d106db42a8f474a2b41ab4551d7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9b92d5a0cd6bfada03ed02886b59c3c5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/96560ef9aadec6cb6f6dff1cfec8b7ed-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/db9a7e8628481109669d3ced76e04b58-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/51b4e25ad51c5d9b5124960fcae45b2b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/00ecc145fdecae032b43fc2117c143fd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/37a07abca26376d170713645a1acf530-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d463a06100f0395550f37462705d5d7e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e2939081af19e9ada8c308a775eb947f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dca5ca764db5c540d84331f7a0465fbd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/03b2918e37dd9cd0442e80fed600d9c3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c7804bf144a2c12892e4913903653684-cc_ft_1536.jpg,289 days,1434,100,Spacious bedroom|Common laundry|Spacious unit|Natural hardwood floors|Great closet space|Great size kitchen,"Welcome to 3531 Bronxwood Ave Unit 3F in the Williamsbridge section of The Bronx. Immaculate 1Bedroom 1Bathroom unit with a beautifully distributed layout that gives you the best use of the great space thats offered. This spacious unit offers a foyer, great closet space throughout, spacious living room, formal dinning room, great size kitchen, spacious bedroom and full bath. Natural hardwood floors throughout. Common laundry with new washer & drying machines. Conveniently located steps away from the #2 & #5 Subway station, multiple bus lines, shopping hubs, schools, hospitals, major parkways and restaurants." +29829052,749000,1950,3482 Mickle Ave,4,3,https://photos.zillowstatic.com/fp/d7a6430dec70f2ddfc0c33a5633f862e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cc347d004ba071797df938ff23d3d52c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c5d69566a5a40e5a64520d76a95e5b9a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/12cb434d5e00aff8d98d6022e1b7d980-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/999bff82049a57b113059040e06675a2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/575bfdd9248edd89357f8e2e5ce62276-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e15e6cd3f489d58444f94d9303edb918-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1a45238cb7e3537184d9d2d051e4d0d3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/610878a6cc26afa0db573879cc4be871-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/abfee0f010273bcb2c64eefe9d610150-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dd8ed7cccc21eaf3f0f8532e9a28a7d7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f1f0f51b25000daaa778a161d551758d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/177e4b74f88a02c2c87f0d5878376c92-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/20b40246703c0cf4529d6a22e1bbaeab-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6589dbef861e8cfae9f9721fde847e7c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fca3eb27d3449be0576173210d4dec9b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0f79d8d2147d980707b4b19f516a4602-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/46588f31559a2b8c1f1b32917901442b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cbeb078b5a3d7c0d9f87d0d3d8eccf9d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7bcb6942cd876155e0d657b281ba589e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a35e063d3aa144edab923c9a14089dcc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4425189b4013cdd98c3a7797963adffe-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/adfd71bccd7d3dee4053620577e31de9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e63ac357e35f8c09a8b56a1c969a4444-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/820ccbbc65e929f85bf22e7d9f314c36-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d29101fd9b52740182364b8cf9170c21-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ca46775f6aaa9100e85124a81f7e94e9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d714aab8ac273a46859955aea4776d20-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/20efd5dde953b400c42c789a10116fd5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ff99553def519640cd61b618861d7801-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2333acfac77c68fd5191dc67817d719b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b66f42ce26543098d791c36b9c42df6e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0d23f429e67642690582c0509dd65c61-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6ec8b8e85223172092f6045b761e50ef-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ac697d54d4ee624b6a474644e22b584a-cc_ft_1536.jpg,2 days,286,14,,"Immaculate Newly Renovated Brick semi attached 1 Family Home with high end finishes and a very spacious walkout basement unit with separate front & rear access. Private driveway with parking for up 2-3 cars. The main unit features a spacious 3 Bedroom 1.5 Bath duplex, large beautiful balcony off the kitchen with great space for BBQ & to entertain, newly renovated kitchen with custom cabinets, stainless appliances, Quartz counter tops, recessed lighting throughout, beautiful hardwood floors throughout, newly renovated bathrooms, beautiful wainscoting panel on the main level that offers a touch of elegance, 3 huge bedrooms, Walkout basement unit offers a spacious living room, dining room full bath, large bedroom, separate laundry room, central heat. Spacious back yard. Great opportunity to own this one of a kind unique home. Conveniently located steps away from Subway stations #5 & #2 lines, multiple bus lines BX8 & BX31, major highways, shopping hubs, schools, restaurants and public parks." +83178236,2899900,2008,640 W 237th St #20B,4,5,https://photos.zillowstatic.com/fp/b48f0810c9fd5ea92129f1a730315410-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8e63732b6ce38dd9f759c472281db411-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4c366d6fe3b31d030e5228428f31223c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c3175f53587e03118a009792bce7f842-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/68da521ccc8628612c10c8d5b929f47c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/95b0eb045e08005259a22bcba4cd3708-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/84dae65ea81de063925dac98d49b84ee-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/57992b28c3018f8adc599486cbef0542-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/38f19aabe4fae9f8c5a89b9375a2da72-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8cec1de425562e980b1e77a4f34722ca-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6f205ad2205c9657eb971a6a44756c0c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/31a9ac6cf2a49bb6d0f8e0af5d2d5a7e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/72778300cfdaa05bab723dd6ec9d865e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7592763228b872c6420c300e94a63e08-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e656c36e9e1e67e9fa05c281305294bf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ff194a53ff966febcee3485d4242da3e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ef7426f3739c57c251873d17d20c11b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bf08a1b8ec806e5e8eade49910954dba-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/16dd8edd2fd58db75c46797072104cba-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ffdb1095252afdece3c05aa22bf893ca-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fa0d9b8b16aa3ef8765b2d1070079498-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/45543643ab8befd2ec30e5084951a5fc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f03f4ad109474bd7cdc58ff804a144d2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/36cb51c2ca969c1f8cd23e9b66bb1798-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fdf9689a143d02a204010163fb8bd24a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b1e596c90915e2e7bdad2c56970f199a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fb5e751ce98aec1a45d6417630e9542d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/acde1a60a3bd2501aaa113fc93ee4370-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bd13a9bcc0a63a85e535a6f63174397b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b17dc91451fdf9eb2ce00026b7bfdf02-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/25be66c60e8167222e6d4aca6571f675-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c5f1bc399b92bb7cef58ec38393c3872-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cac3be8d337e73102e0c68db6621e56e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6d74b83c39a718f028ee2f690cfec424-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bffa471702080a8eaeaff5b54a7b7ab0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/64d7f3bdb25ef8423b179d8f71e5bd2c-cc_ft_1536.jpg,234 days,842,33,Floor to ceiling windows|European shaker-style cabinetry|Private rooftop terrace|Luxury living|Landscaped roof deck|Deep soaking tub|Radiant heated floors,"AMAZING NEW PRICE! Imagine that you are on top of the World at The Solaria Condominium PENTHOUSE. Everything at your fingertips with top of the line appliances and warm wood finishes on the European Shaker-style cabinetry in this windowed Chef’s kitchen. This large 4 bedroom, 4 and a half bathroom Condo has over 2700 sf of luxury living with beautiful appointments throughout the home with 10 foot ceilings and floor to ceiling windows. Closets are California closet designed. Enjoy spectacular views of the city and non-stop vistas of the Hudson River and the Palisades from a PRIVATE ROOFTOP TERRACE WITH A PRIVATE GALLERY. You will love the Primary Bedroom with an ensuite bathroom with radiant heated floors and deep soaking tub and separate glass shower, to just relax and enjoy. There is a washer/dryer in the apartment. The Solaria has a 24 hour Concierge, state of the art fitness center, lounge & entertainment center, landscaped roof deck with extensive views, and a children's playroom. Local and express buses a half clock away with access to #1, #4 and A trains, express buses to Midtown East and West Sides, a Wall Street Express bus and Metro North Station Rail Link to the Spuyten Duyvil Metro . Central Riverdale shops just 4 blocks away. OWNER FINANCING AVAILABLE WITH CONDITIONS. +There is an Elevator Repairs Assessment in place." +29833329,825000,1955,1019 E 222nd Street,4,3,https://photos.zillowstatic.com/fp/4d53d1997d8a77b4fc05c6f02f3f736e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/383928d43d516638456996ee9cade529-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4e84f81176b1037b048a2f562d5a9ebc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1176b4a3ffc261171dc9d8ab8a8645c1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/595dd1e7488f7b45a899969b58dbd3cf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/841fef5e9e6d53729595ac9bcb09858b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9139f704744b4547d580d1cf5f30d4c3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bbcee9123443f62df5f31eee931f80ff-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9e5bd2c4f5ca048fced3d84c7c1fbb4d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9d1381ed55636185866fb713cc9b2564-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/61bc0acd3e350aa251cadfa7fb8b2db3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7ba85a5fb64eef25890ee18aedc4366c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3e0163c511f2525ee7f691a119262acf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0be734a3d96d66348cf9c73b03167ca4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3dc600ee36973d6cb0b9b48b7b12deef-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ddf71260b0818218d718028a7824b891-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e0bbacbf7be84c7adae58aa94b37b62f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0b25feccff70df3d8761e569df8f45c0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c101080060893413cdea6c1de87c497c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7326b56554003d6a8d4ae1dd88e82e1b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/67cd73c452bac40bb7b747adc6333e2f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8e53297cfb38fac094595ced6ac9df48-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5ce388a1f57d267dc58575b107aa0ed5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/19902511568fedc480e910c8b89f1c39-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/642e8437b67c4d76aa3bef4356ef7bbe-cc_ft_1536.jpg,32 days,843,36,,"Step into this exceptional two-family home, a standout gem offering over 2,000 square feet of thoughtfully designed living space. Nestled in one of the Bronx's most desirable neighborhoods, this property is a rare blend of comfort, convenience, and potential—perfect for families, investors, or budding entrepreneurs. + +The main unit is a beautifully laid-out 3-bedroom duplex, boasting expansive living areas filled with natural light. Its spacious design provides ample room for relaxing, entertaining, or creating the perfect work-from-home setup. Downstairs, you'll find a cozy one-bedroom apartment with a private entrance, ideal for generating rental income, hosting extended family, or crafting a serene guest retreat. + +Practicality meets convenience with an attached garage and private driveway, making parking a breeze. Beyond its residential appeal, this property is licensed as a daycare center with the capacity to care for up to 16 children. Whether you’re ready to launch a rewarding business venture or enjoy the extra income potential, this home stands out as a truly unique opportunity. + +The location is unbeatable—just minutes away from vibrant shopping centers, a variety of dining options, lush parks, top-tier medical facilities, and major highways. Whether you're commuting, running errands, or exploring the neighborhood, everything you need is within easy reach. + +This remarkable property offers endless possibilities, blending versatility, style, and location. Don’t let this rare chance slip away—make it your next home, investment, or business opportunity today!" +79507461,1399000,1921,50 Morningside Dr #32,3,2,https://photos.zillowstatic.com/fp/d206d8db70879f306e2b0306a64f2619-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1538e740ad5326772b40e4620752b224-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/58152086d4456ddd508b3f8a98cb096a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4dea8a044dc71496fad2af0b1a062e86-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/167c8f94d4d30f4087ab95f1f0b871d2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dc2d64285d6bf5d5e251f1a6ecca2755-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/eb428d7f636ac7085fad2e15d2a63678-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8f8a63485887eb0c90c819484a23e8e1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/24cf80bceb53361db0a378c9c108b084-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/50714ccb4078ccab017de2997d61d970-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/35e8e19c9255b1bf5aa808615584c0f0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ed02b9267235b9f37f1b982449d8c30b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a634b6e25ecb25d97db6b2a40f5d5be1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/15cf59b09845415da7f2f8dae0ed477e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/07b1745e10133766fd442cbfb6c30ccb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/18548cae69b9e7602351fd5ff6c17ea4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4ac77616f64b0bbb7e5efd79ed891be4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/770687ac4fd6ec07a177e5492d89b91c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/96980eea0a6904e6d78b76f928533997-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e37e8f73a68f90368c3c2d122c5fb095-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/43884fc8ffb67bbcf3af0e534c87aac0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/88b46cedcdd6d8bc2dc4a8947e8b3605-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c997767d91aecd06a7fd262f3293e190-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1f613228f4a05e7259349da48eaadca1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e5d44a3236a9629e4baf2c3b47680e2d-cc_ft_1536.jpg,19 days,1804,148,,"Welcome to Residence #32 at 50 Morningside Drive, an exquisite 3-bedroom, 2-bath home in the heart of Morningside Heights. Located in La Touraine, a distinguished 24-unit pre-war co-op built in 1904 by renowned architects Schwartz and Gross, this residence offers the perfect blend of historic charm and modern updates. + +This gracious home features lush, unobstructed eastern views overlooking the 30-acre Morningside Park. Upon entering, a long picture gallery with closet storage leads to an expansive open living and dining rooms adorned with beautiful herringbone wood floors. Off the dining room, a charming balcony provides a perfect perch to enjoy your morning coffee while taking in the scenery and sunrise. + +The updated windowed kitchen is a chef's dream, complete with a Wolf gas oven/range, marble countertops, and abundant custom cabinetry. Each of the three bedrooms features wood flooring with the added comfort of ambient floor heating in the primary bathroom, and the primary and second bedrooms boasting impressive built-in storage. The third bedroom offers flexibility as a home office or cozy den. The primary suite includes a lovely ensuite bath with honeycomb tiling, while the second full bath has been tastefully updated. + +La Touraine is a pet-friendly building with an elevator, free common storage, free bike storage, and a shared laundry facility in the basement. Residents can relax or dine al fresco in the courtyard. The building's striking marble and paneled interior, wrought iron balustrades, and stained glass windows exude old-world charm. + +Ideally located just one block from Columbia University and near the B, C, and 1 trains, this home offers the best of city living with easy access to academics, culture, and green space. Morningside Park features a picturesque pond and waterfall, multiple athletic fields, playgrounds, an arboretum, a dog run, and jogging trails. + +Experience timeless elegance and urban convenience at Residence #32, La Touraine. + +1.5% flip tax paid by purchaser. Monthly maintenance of $1652 plus assessment of $558 for facade repair (repairs estimated to begin in 2026)." +29821817,839000,0,1427 Waring Ave,4,3,https://photos.zillowstatic.com/fp/6ca545b62bc0ab83f6d86bcf22094b30-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2ee069cdefdff529ed43b5a604f96d05-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b79051de3873a99e417bc2a58cdc5bf8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/db8395533f46c26795b41ab587b310ed-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/15af2a177b17e6102da11fa7645567ce-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1aafabbd02c31faf501ebd085319ba84-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/36edeca2382f11421dd8f0c04adbcebc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/43d91ca66a431c46410d71bf29d1c54f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ec5baf61087aaf96520eab83a7e61246-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/366a8364273a6d901d6f321315b729ea-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a50380e9aa481b14e7614643b87baa3c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/51773c034f179e04631789efd8a516b1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/67a4a38a75a733989997785e829cf61b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fadb46f9096f6970de9f41a83d2947e2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ac579a7541ae1a124d6a27bd287acea-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/50e09e5b5aca802e9b3e4d45dc02062a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5595438e8b555f85c8c2800c75aad240-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c94736f35886c292156ff69807ce0c08-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bd0de9bdb63e12cebafb12ff369e15f3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/abc77ce935ad2c413258f493107b2775-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/862b5981b3b45d53851bb91466e6d987-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0f9e655093af0b114952066d8159d3c5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e1b4a67ce409d1444d70124a9e7e09b2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/968625de32113b0e14249bb65198bf2c-cc_ft_1536.jpg,245 days,1618,40,,"The perfect blend of charm and income potential, this detached legal multi-family home is located in the much sought-after Pelham Gardens neighborhood. Featuring a picturesque gable roof, as well as four bedrooms, three bathrooms, front & back yard, and a private driveway & garage. You can also capitalize on the financial benefits with monthly income from the rental unit. Positioned ideally, the home is just a short drive from the Bronx Zoo, the New York Botanical Garden, with Albert Einstein and Jacobi Hospitals within walking distance. Very near trains and the Bronx/Manhattan express bus line. This home is a gem awaiting your personal touch. With some TLC, it can transform into a warm, inviting residence for a family or a profitable asset for an investor. Don't miss out-this must-see property offers both a prime location and significant income potential." +442154295,5250000,2015,5175 Goodridge Ave,7,7,https://photos.zillowstatic.com/fp/c9e348f7f74b19cedd7490215996d49e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d38ff2475e8aa3bc438274fb4c957e54-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a4da981b1d784b3c09664fb179f5a8a8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/15fbd24b7a9175585ac1f93c9a437177-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bdd3ab82857a30db0a24f22dfe5b6fbf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/76e5d04c47918d1a26e81600b39ddac6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5cf2e3da439ca7debb285a2533395ab9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cdffad65c9c33fca24d8f2d2cdfef330-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8d725825f5e0ed49ab96e0311891b503-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/33b61b1cac1dbf9c02e6b0f41dea66f8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3948c22277537333b1b26ea149b135f5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4d63c9f1299a60cf504b60c8b79452e0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c1e3ebefd27377a1c8ff5a40125ec74e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bbd7cba240d98357ad05640efdd06a67-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cbacd35f26f28d7de3b40b17547f00cb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/056256256218cf1f1e19baab66a892dc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a0b71d0dbf90fb4f8bc0a588ec601608-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/799373bf1159de2af5abf703d0b92a82-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f056926e2f3cc9a771a9274eb384cd62-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e9574eb2d53c2282df2faf9e57cf5d04-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5fa0f4b09116b1d6449bf4a09e7e1afe-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8af13b75dc0e74f6f08850fad460b01b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7616bf79679aa1336fcaaf6313992b2c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6ff7ab4828facb1d5dbbd7384cb3c0e0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fcea5372a3c4431e1e93225a6e0e62e9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0cf0fd19b344407ec11df8746a65a9fa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3c4889e796392cc61317e77739f5e580-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/869b43a3876df666bf211fec5fa7b0cc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/89358fcc50fb4ed83d49d44c1a22dfc7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/299fed9a5e45b1acb338cc723258eab4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/149bd1613e14a1f20ed6952d21052bbb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a415e313f4543694843266fe4580bb07-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8bd91164b4a5b92f4a4d04ff0ee701ff-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d09a64e63a85799ce68ce3ad30343b3d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c7f7989d7faed887e758c56937a03f46-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2b2251b2ed0c900cd44d226c2152b821-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/098f66da12146ae9c63f51a47e056b0c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4b61102b3113f2f09c6b7643e2229e57-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/57f0b9e032969d528e8f2c46c3e78ed5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d02758bd5d48048338d4780cb4f3f505-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6c707f01a507f557037a39d7fa5119b6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/469f6c2e731c90dc02c6705b29ec756a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2881cb412cf090f39ed68644fdaadd19-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5ac0b09144d316f0d231cf9cb973acf5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f28ecbbee9c4e1d05ee97b3ac8b0f87e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7c5ef2045acf46ab044d8959b7addc80-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ad9c37f61d16d8e3e7c7bc8d398aac79-cc_ft_1536.jpg,289 days,1361,55,Angled corner fireplace|Finished basement|Exercise room|Inground swimming pool|Private cobbled driveway|Private porch|Distinctive exterior,"NEW LISTING VILLANOVA HEIGHTS +Grand 7-Bd. Shingle-Style Mansion with Pool & Huge, Level, Grassy Grounds + +This picturesque 7-bedroom, 6.5-bath, 9,000-sq.-ft., American Shingle-style mansion was built in 2015. It enjoys exquisite details and luxurious amenities, including an inground swimming pool and a huge, level, grassy backyard. + +Set on close to an acre of land, the home sits along a leafy street in the exclusive, private community of Villanova Heights, adjacent to Riverdale’s Fieldston Historic District. + +Designed by architect Hans Roegele, its distinctive exterior is based on a prominent Gilded Age mansion by the venerable firm of McKim, Mead & White – the 1884 Robert Goelet House, Ochre Point, in Newport, Rhode Island. + +The house features a welcoming center hall connecting to wide and inviting front and back porches; living room with and angled corner fireplace; formal dining room; large center-island kitchen with breakfast bar and stainless-steel appliances; semi-circular breakfast room; family room with fireplace; and library/guest room. + +The second floor has 4 en-suite bedrooms, including a master suite with a cathedral ceiling, its own sitting room, 2 walk-in closets, and a glass door to a private porch. + +The third floor has 3 additional bedrooms, a full bathroom and a large storage room. The finished basement includes a recreation room, exercise room, mudroom, and a maid’s room with a full bathroom. Central HVAC. Elevator with access to all floors. + +There is a private cobbled driveway and an attached 3-car garage. The property totals approximately 0.88 acres. + +Conveniently located for well-known private schools (Horace Mann, Fieldston and Riverdale Country School), the vast greenery of Van Cortlandt Park, and transportation to Manhattan (including express buses and the No. 1 subway train)." +29822587,699000,1965,2434 Tiemann Avenue,3,2,https://photos.zillowstatic.com/fp/e2d0774d4d7f6991d84fd1bc313e1c04-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5682ca631f6a7d1ab28cf31e2bb310c7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0cff4ba393cf327af888902ee1fa184f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c320a556470cc8aaaf5e845b81c19686-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/96d236b73a06aa9642d965cea9b930d0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f70ca102be8e64789efd90d1c109857c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/01a343e83896c5b82567bf8690ea0abd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4be1181af2f257648e1f6a4129d8cba8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0c5c23df34973b76f0dc0549e9d7fa9f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ecf8448bde48025262fe69cc4ba73004-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6a4a387a8b9338e2c3271e9455bb9ed4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/161c4e355125ea3aa2c70a18f17b24bf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8dae6fa58f791a429afb44249dbe1217-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f6e8e095c2504699d782097c9fafe082-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6ff4249b26ac28e6cfbb76a52dfc3823-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/efb8a2a6904ceae94ed98b386920d020-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dea90722a9092bcd6633e5869e271451-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cff85e9ffcd818b8291461239fb2cedf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a2fbbb5f6e74fda83e60063144b890a4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b836bfa61619a3ced0705b2461f73659-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ba0d61b2019bdb7d122e9cbbb66b124-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/710c838b11cff4be122c2ac349750e7f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e79039a6642a15dfb5518b977ee74127-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9cbf73de3db0638cf0adf8a3f509ce25-cc_ft_1536.jpg,55 days,1509,55,,"Location, location, location, Welcome to the best The Bronx has to offer. This delightful residence features 3 spacious bedrooms and 1.5 modern bathrooms, making it perfect for families or those seeking extra room to grow. Located in the vibrant neighborhood of Pelham Gardens. You’ll enjoy easy access to local parks, schools, shopping, and public transportation; Some of the many highlights of this property are; a full finished basement, the private backyard and a porch. There is also a driveway that has 1 car parking space. This stunning property has it all. make it yours today! Easy to show! A/O" +442154188,686800,,1 Windward Ln UNIT 5,2,3,https://photos.zillowstatic.com/fp/23ec294e55a784bfe5b34f22d9273d33-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/83538aeef2f63178ce984c86d21262e5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/134bcaee1fdd93cf7fa82b09eeb5164c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2e651c6beba5e00b35108e1dc1fbd8dd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a03c8145181b3b06c9470a1b5609dfa4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d711c64ba8a3888b1722d76893f9d6b8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a2a5b02f39c350e3806ff3d565e6a76f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/093d8433d9f54fc12110bda8c2cdbb80-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4252202f59dddacd592fe323db873308-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b9fed8351f8f49cbc654904e01d3ee19-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/14bd6639c425f987cb3fba4605d32107-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d14d302f9e4036a1d004c3faaa213dc5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/de4cf493c58efc14d139528f4f95c408-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/33b82f4442f7dbac042efde58e1bc7d2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9f6a029c2034f8c9fe161d188b5f7cb0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7ef39b003b28f2210000164075085de4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7ca9b5b4cb450b8775e7111557e06bd0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d625d0d0e674334d34c59766737c913f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/399143a663f60134c24034ca1fee24d9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f1c263789fc9b0de96f9629b76e6ec2c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3484d30ecae25c387666da0b84de8c55-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6908690fe639e5c34511a41dc4961725-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/451016e75677701807d6cecde3a8ab0f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/19da910d8bd2aca9ed290aad32f1bda9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/32650ea0a49470c17fcbbeae5097b827-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b06e1c42eeb6e5e08bba788be0f100b6-cc_ft_1536.jpg,225 days,991,50,Gas fireplace|Built-in office space|Central ac|Architectural details|Large attached storage space|Open water-views|Water views,"OPEN HOUSE IS BY APPOINTMENT ONLY - The condo association does not allow unattended entries at the gate so unless you have an appointment you will not be given access - PLEASE MAKE SURE YOU CALL ME TO MAKE AN APPOINTMENT. + +STUNNING WATER VIEWS 2 bed / 2.5 bath CONDO + +This exceptional waterfront condo offers one of the most artistic and high-end renovations I have ever seen! +- Curved walls, stainless-steel and plexi-glass architectural details, curved built-in closets, custom lighting, and a stunning floating staircase - a pure piece of art! +This quarter century renovation was designed with absolute innovative brilliance, and at a value that would be near impossible to recreate today. In addition, this condo has full open water-views from the well-appointed balcony, the master bedroom, and from the open concept living, kitchen, and dining space. This spacious 2-bedroom, 2.5-bathroom condo is brimming with architectural details and conveniences such as curved windows, a custom-built ensuite-master-bedroom, central AC, skylights, hardwood floors, a gas fireplace, and a built-in office space. The spacious second bedroom is complete with an artistically built-in loft. The serious chef's kitchen is fully equipped with double ovens, Sub-Zero fridge freezer, two sinks, a stainless-steel pull-out pantry, endless counter space, including a breakfast bar and an abundance of kitchen cabinets. Additional conveniences such as a second-floor laundry area, direct garage access, a large, attached storage space, and a Koi-Pond entrance complete this remarkable home. +Note that this condo has straight interior stairs from its private entrance to the second floor - which can be fitted with a stair-lift for convenience. These views are only attainable from the Boatyard's top floor condos, and this is one of the best! + +The Boatyard Condominium is the only 24/7 manned, gated complex on City Island. Truly unique with its meandering walkways, a large pool overlooking The Sound, and a stunning private pier and Captain’s house, exclusively available to its residents. +An easy MTA commute or short drive to Manhattan affords you this relaxed and friendly beach-lifestyle every day! City Island enjoys over 30 restaurants, multiple beaches & boat clubs, convenience stores, cafes, galleries, PS 175 City Island local school, public library, post office, Chase Bank, even a new Yoga and Pilates studio! Pelham Park at the entrance to City Island is New York City’s largest park – 2,772 square feet of golf courses, a horse stable, walking, biking, and running trails. Not to mention the infamous Orchard Beach, established in 1937! +Life doesn't get better!" +2057087117,199000,1957,730 E 232nd Street #1F,2,1,https://photos.zillowstatic.com/fp/ed619370afaf8cbe92dca1d4640c701b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4b792e815e82b9daf634572a5eb56d75-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bfca8b263cc0534fa5053c0b917d26aa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/74acff7fc582695c0ab0e2801e9c524a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b0606b4e82db1b78b0567fb34b1e6a21-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3f9c987d41c046319f28da843264eb40-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a8bc2cd4a0fd93610b66f1a262cff2d5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8ab79cbabad8e23328776814f46b5c7f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/272566233d10991d101c62848e241a81-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5109302bfeb52575a3ac8bef6be8094f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3b628bfde8fc4142a573a4f58a549d51-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fff76514b6507e0cf1584dd53d5b7957-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/47f54002a2d3a82f9414d0c00b65bad8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b1f4d31277441674a56cc9c948341567-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cbda3b5914b9742cba36ca2403758f70-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/41202484a2c72e6edea3ef5e9e190321-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9f2aead52c227a58599bb9e333f5baec-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e630d35e3234a95384461d030fa3622e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/468443f7952f1b0e9d3d77e9adee70a3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b998802e95eb61c0d8c22077e9d7ed29-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/69d3420d52ebed5a931b1680e3524955-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ffbc9f8d7996f72399ba2e1e080c8367-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5d9ec927d937a32bf3fe6fe08ed2db0f-cc_ft_1536.jpg,23 days,2107,174,Flexible furniture placement|Tons of closets|Hardwood floors|Ample cabinets|Beautifully updated bathroom|Updated eat-in kitchen,"Vacant. Ready for your touch. Large, Well-maintained, clean, affordable two bedrooms with one beautifully updated bathroom co-op located in the Wakefield Cooperative complex. Unit is conveniently located on the first floor with on-site laundry conveniently located a few steps below. Large, updated eat-in kitchen with ample cabinets for your storage needs. Tons of closets. Open Living and dining areas afford you flexible furniture placement and staging possibilities. Additional amenities include: hardwood floors; one-block walking distance to shops, schools, bus, train; 3 blocks to hospital; close proximity to parkways. Electric, Gas, Heat and Hotwater included. Additional $30 per month for each AC unit. Waitlist for parking. Parking fee is $150 per month. Bring your decorative skills and highlight your personal color scheme. Your family will love living in this home. VIDEO OF PROPERTY ATTACHED. +https://drive.google.com/file/d/1BYsXJKzli5W1UV4j6-Rj4fb4ma5dLN0f/view?usp=drive_web" +244468166,235500,1950,9 Fordham Hill Oval #3C,2,1,https://photos.zillowstatic.com/fp/90f1573fcd93ffd11244d70b21d69c2f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/34cdbe3b350795272c7daf093b3686cd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7c44e0bbc68716e0403dfcdbc6346a14-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dd9781665b1871dc69c160fc3d2b955f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/99dc1d31968d158df3bf220aff295a95-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/283227f26ca549d27d6542366f21d6f9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3ab3d70fc7f0257145ddfdd3e5315cd0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/633dcc94bed753e3462d9e3ae6b2fc41-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/37fcde349f73842b43770c789cf2c22f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c707c8b3cf0fdeb1b26eefd878bded96-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ebfe6b03257f9054127c19198c60d47d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b652257176bb1a20629d93ced50791a1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/05f020c2f723c77e930fe4e7f4a04eaa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4a2c2ec38fddd9eca5207278ae6a455d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e094bffdefe34529a75cca0af0873815-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/08e0a4eebe9e653bd9f06c18bc472267-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/095d96621ec3d1e706d0362f6d458e20-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e54026e7468224fad9389deb1d9c9b04-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/de875170c2d5f5a72b86498745c2702f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c4068ce3f01a09b6dce57ea0b3a71b97-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/feb663bc249fc79f40c74be152d5dabd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6a45cc2492a1c503eb94af372ebe856d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f168b7ace85c125a1f3b84f338dc4230-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/25c43edb9abedac649b42d283d0625ff-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/517d5b63796ff0260fc5922e20ae6e18-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5282650a89b154bfcfa2f3d381dff5fe-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/961d6b1ec0436916eb4eabf5e28a3f24-cc_ft_1536.jpg,49 days,291,19,Garden with seating area|Lots of closets|Parquet floors|Additional storage|Nice layout|Spacious apartment,"Completely renovated 3rd floor 2Bedroom co-op in the Fordham Hill oval gated community. Sun filled and very spacious apartment with a nice layout. Parquet floors thoughout, lots of closets and additional storage if needed. the monthly Maintenance includes ALL the utilities Gas, Electric, AC, basic cable, Heat, Hot water, Sewer, Upkeep of grounds, Snow and garbage removal, Building insurance. Onsite laundry, Super and management. 24-hour security, Playground, Garden with seating area. Subletting is allowed. Fordham hill parking $225 a month/free shuttle provided." +2087203269,215000,2009,150 Featherbed Lane #4B,1,1,https://photos.zillowstatic.com/fp/8da78542e1798541ed144d326b479c81-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c4bdbe617116ce1aee374f00b333d685-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9c80719a7e48ca9d45a473470c270700-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/774a9d08402af6e010ecab1680895d97-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/53fa9049ec618e0438b5604fdf141a9a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/eb5fed1e4ddbb506c9ba5c23c8a2e66b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9665cfad1daac16a03e86d3ad5ede28e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1484348034ff30463b3e897b9ff5aba3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8510d4141782a8abec0b1efe315d1a89-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8fcd615e916eec3fdedefdeb8b23c2ab-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1a56071fa3271a940865fc63cf9b8802-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/746db63cce7ded8aed9adb88b088a08b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d5819a950a18f44d75cc91a48e95f171-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/91b3d5b17b2775c9e82d1bdef0211526-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8d730ea5929186ef4534e39804d24ba5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/547e837131955465de37544451cb4d8f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/07f7873ecbaa038b43712937516d23e4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e993285e854cfc8a61b70a70fe0dc9e5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/36e330730496656c3bdc106a907feb67-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cc13ef8a8273a58709c3115e8c593007-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0865c147d2d24cacbfcb9e7adb7c6796-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4ccd709129a46af17189f38df166aee7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fd3c0d38cfc369ed23ca6f189001efa3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/465f28f81d6ef14f3fb9f967c3359835-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/149d7db7b8f3dfb2766885fade82bea2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2fcfc7f3e4257a17697f5f2134d55ff2-cc_ft_1536.jpg,49 days,538,43,,"Unique opportunity to own your very own apartment in the Bronx! Filled with all the modern conveniences you can ask for. It even has nice views from the large windows allowing for a ton of natural light. The apartment features hardwood floors throughout, an open kitchen with granite counters and ample cooking space. Location is a commuters dream for this unit. Close to major highways, George Washington Bridge and public transportation. The building was built in 2009 and it is extremely well maintained. Features a rooftop terrace, recreation room, part-time doorman, and state of the art entry system with security cameras. Don't miss out on this amazing 1 bedroom / 1 bath co-op. It will not last!" +244446711,225000,1961,4705 Henry Hudson Pkwy APT 6B,1,1,https://photos.zillowstatic.com/fp/cb4c4b808b54d2502e8abe44d7f22c45-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8b31362ce72c7f1e605c730505c47bc2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/42d6c380e7d1571cc6c390d35374ed2e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3566de25bd9c128dfbfde0a221894729-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c654e1955d859bff6918f7b88770a519-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/12bf3e4cefadd3761cd067856f24b81d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ddd94cd894152abb4e4a9ee95e404192-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ead3f1f2abf4c68fcac84523d7d456c1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b3f0300f1b335149a4580b51297ff127-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f8855419db5aad51f7098dabdf6960fb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/92e392f4f28e032e2ce2332ec82b98cf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a543acdbecf65c86421fd2f0024b0676-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/db150816d845336332eb42b2ed539448-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2fd6019c12f7284634998f46f797d26e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/44667679e0a3fd6ceebd87122e4dd341-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c02ebd62d3548597bd5751d7083cbe94-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5b67a4d792e693327d7e35d7e864b7d5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1f0a1dd82e0ffbad077eaa71f5c7af66-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/48361935b1c8add336c08ac40c8bb3cf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9cd0609b15577ed84aa1e04b26daa044-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3dfc5cf08cb3a3279a3d053367e4f864-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/55f4ccfd18543cbcf57deac33a974066-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5f622fe575c31d8d23d169b47444f9b6-cc_ft_1536.jpg,54 days,936,31,Bedroom with double closet|Large western balcony|Entry vestibule and foyer|Central air-conditioning|Picture window|Windowed kitchen,"Exclusive New Listing +Bright 1-Bd. Co-op with Sunset Balcony, Swimming Pool, Doormen & Parking Availability + +This bright 1-bedroom, 1-bath apartment is at Windsor South (4705 Henry Hudson Parkway), a postwar luxury co-op building with 24-hour doormen. It enjoys a large western balcony with a sunset view of the great cliffs of the Palisades, plus seasonal glimpses of the Hudson River. + +Standout features include: an entry vestibule and foyer; open living and dining room with a picture window and glass door to the 21-ft. balcony; windowed kitchen; bedroom with double closet; new wood floors throughout; central air-conditioning; west and east exposures; 6th floor; fitness room and outdoor pool in complex. + +The building has parking for rent subject to availability ($60 per month outdoor and $125 per month indoor). + +Monthly Maintenance $1,050 (includes gas, electricity and heat). + +Easy access to transportation. Close to Wave Hill public gardens and culture center." +94715775,539000,2008,87 Heron Lane #436,3,2,https://photos.zillowstatic.com/fp/f5c01ec565c0486238f7a38152a5791f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ded6443ac87640533e7f090c9e4469d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fd8050addd43f58000027cb49c1dc544-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/af59f50023fc699ca8dfe5cc9a2e31bf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/37bd9cb4cba6e8177e8739271960f451-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2d71e25eeae7f0aeb6eabb9e55f792b5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4baac3865913496b851e5b857059fd65-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7c19cfd0ecc9e0d2ed87ea28c6be4487-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0e2b0eaad9e05ff8dc8cfc92d1da5805-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6cd3666c3fc5faf75833de0cebff239c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/92cd9441d21db6aeb933b3336db3f27b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/822554c976f115406053b852c392360e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1cb403fc45d48bd492c50e167f7df6bc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/661b8fc3c734e1b4652739077c5be979-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5743777b70b7637c293c25e31e9dcc13-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d09d0f2e504e08724a89a65948106bda-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/83292fb0582b5b7c5a08f489eb625531-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fad372358b2330cc68019664dbf74b52-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e99c07a30f53c4ee29263ea97f33257b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/22b731802211180dfdc17d35d3c12f0d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1425cd2afe0e01967439bff1f2707b9a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/27a022705d22ca55816f13b36180004d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1687d6486435061f765df1b81ffb7c92-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d22d47b16d8cfa0ddb97d60152133f4e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5b970f33a0fbc62922c224fee2b9dcb3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b12e5656456fffc3cafca3f6ffab2770-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dd9511dc697431e9697e5a3a8b3d0e31-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0ad9fe21c799db8656411a415099e42a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2842813c5b0e2cbcd45d45b42a7406a6-cc_ft_1536.jpg,24 days,1680,85,New dishwasher|Bridge views|Water views|New recessed lighting|In-unit laundry room|New banisters|Master bathroom,"Located at Shorehaven/Harbour Pointe a gated community in Clason Point/Soundview is the New Home to the NYC Ferry! This Second Floor Walk Up has hardwood floors throughout New Banisters installed on both floors. Upgraded New High Energy Efficient Stainless-Steel appliances, New Dishwasher just Installed, Kitchen has a back splash finish. As you leave the kitchen/dining area you are leading into the beautifully designed living room. New Recessed lighting throughout the condominiums on both floors gives the place a beautiful ambiance. In-unit laundry room, central heat, and air, plenty of storage throughout the home. Huge Master bedroom with Master bathroom and your very own jacuzzi bathtub. Water views from the front of back of the townhouse with beautiful Bridge views and Manhattan Skylines. Shorehaven Clubhouse offers a Gym and Playroom for kids to enjoy, an Olympic-sized Pool. Additionally, there is a children's pool, playground, basketball courts, and a tennis court, not forgetting the Spectacular Vies of the Manhattan Skyline. Enjoy a morning walk off the Esplanade with your family or pet. This lovely 24-hour gated community overlooking the Hudson River is conveniently located close to public transportation Bx.27 and 39, Bruckner Plaza Shopping Center, supermarkets, restaurants, and all the Clason Point has to offer with easy accessibility to the Soundview/Clason point Station Ferry that takes you into Manhattan... Additional Information: ParkingFeatures:1 Car Detached," +2056147830,455000,,143D Edgewater Park #D,3,1,https://photos.zillowstatic.com/fp/f61598ac097acbcd72e782464e4b7adc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/af91f4cb261d03f6ae16539325281d4f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/136b690d97474909a8801d6ec9283396-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/204b34cc21522d43669670d6e19fcccc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/76884087f1643e035a77e827e0bfaa8e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8fb86af9bee83394d6f517c6b29da9ba-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ae94e6ffe1620c472f867f770e967ac5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/32e8e7e52237ff5db2161d8b219c612d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/917cc3ce1b029fbf4b06f0b58cb33758-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/33a9598dcb8f496b090362b6c40e1ed6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/89728c12011d42b23d35b3eb33ecc943-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fe9f8baf2d3f63e3a76d2a0259a04605-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4e8adb3988a1c1d4459d2df6f24cd829-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6f265f5148ed627855e0d8a7fc55dfb0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/20e003007775cb15d366cadcd86ab028-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e739103d35d41314455bcf59b272b0b7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3c2816c673e01797fe0711824d2ef2a1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/01b5bf45f0fdae4891fa105b9c2d6f28-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e265bca28ec6d5d82478af3ea50d6e82-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3db0dd07914ba62d9d79cc1be0ed1beb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d4389302a748a5f4e3bcef3590f857fb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fc784e0eb5a5dcf8054bb64c2f240265-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0728ecad39625c622a510a80e237f076-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3213c2020726b2aa282f6020ca344612-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9fb2ce18f679df551ed6ed96b7acd349-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/51482515d7692db8a26cea25154e6cd7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2de2d77c0fc0fe67304a9ee613fa4e38-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/19bf1554df6a36ef6495969d63111613-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fbf57bb5fd8bd615d33cf24aaa802f67-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/16f9c2e05cee4465dfe8efd0b188f83d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/721058f43778eb533c95a514f697091d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b3b76c5be7f6aeec7c2dd95cdb624f31-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/17345cda98bd6759648df62d9bf64168-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e1523140149baa9c5fb6138994107b03-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ffd1013c30ddc7dcb23de6f0f972b74a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ca17a5d86152f96e6501e7d99e7e7be9-cc_ft_1536.jpg,575 days,729,25,Lovely vegetable garden|Walk in closet|Stainless steel appliances|Cathedral ceilings|Corner oasis|Back splash,"This detached move in condition corner oasis is nestled in the Edgewater Park Community & right across from parking lot. Layout: Front yard & side yard for entertaining & BBQ cooking plus lovely vegetable garden. Entrance foyer, Living rm, EIK with stainless steel appliances & back splash plus fits two chairs for dining, Dining rm with built in cabinets for plenty of storage, 2 BR'S (Jack/Jill style) & full Bathroom. 2nd floor: Primary bedroom with cathedral ceilings & skylight (can put 2nd bathroom) plus walk in closet & two add'l closets. Basement - additional storage, workshop area, heating system & laundry -with access door to yard. New hot water tank, 2-zone heating, new roof, electric, Anderson windows, Sun Setter Awning with screens & lights & outside storage closet. Enjoy the many amenities this community offers: Beach, Security & Cameras, Playground, Track, Basketball Court, Fire House, Deli, Corp on Premises & Express Bus pick up & drop off in the community & local buses." +443237090,1100000,1965,458 Swinton Ave #1,7,4,https://photos.zillowstatic.com/fp/ac5bbbc3117c74d6827208967fe6d768-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fc1a728b6d670b19baa761ab855fb911-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/72926ddb44cad433fcd5013b739ea995-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1513c8527629dab612a28cb6ce8139e8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dbab4a097069e434f98d6e97f0daecc9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9f70e655c050e748f7b7a235ae62ac14-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/eb14122266d2043e53b58d73a542115c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ab531c465c09879f9279c1e6f5c9644f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/526c8a41c5c03ab7b2b150ac1cb580f7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e14de111927a254faf1f35c722024a69-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/61e55bca8de037a7de1e7443dca506fd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/222c73d5891bfa136b700dfa7da3813a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2ff01777b5c18cbfa4b916e96c51a350-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c158e1a7e9e707dee8e8ae65700aa1e9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ee9d4678a45a3b340083fe5eff1701d3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c396a97446524d0a41dfc6a36984d943-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/222604a1831bc663941ab748e00de9f2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3c8bb9224bf3a7addb5fcb07dc1f53c8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4d5f83ff7507880d71403fde94852458-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6e9fa5b175b27b3a7147f961d1595921-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f2124b1ec26a5de3d4b4ad16ed22d0a3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fb51bf0bf10f5087add29cb2264994d8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d45127397bb4fa85e45bade634c2075d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5cd1ed769e10bda5312de109a0856948-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/22f107182e16f9955bc89f9b98af607e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d9250e8bb3d2863fc4e0ebd05b079a7b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b16c8f997d87972476a3bdc9a1685805-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/49cacb4b7b5c0fb05fdc45bc48e89abe-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5ce116af9ed261e276ebe0d7b54ef0fb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/14b7668218f5d2013d36c2af1526d819-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cf2ed58d36170fd78dbfdef606d3225f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d15186605c9f7fe558c27b7a52520c6e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/07aded421357ef5f65e28bff6cc2d20f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/22c24b560254aa943b0bef4881912376-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0b35992f7b7d891910a2361b14bd9c63-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a64238fe107307dfb92146ab6f157e73-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0cccb2c4dcd00e6cbf99443456006846-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4e75520f42d01a274f33654089675d19-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dea91aee5e3bc7fe504bd958d44678dd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/adbe8a074688b36d158be7e075a5066f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/997346deb48f7b027756d7dff1ad52ad-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e07ef674113c3fab9d38edd4e3c550fa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/994c7008453c51f76db42739ef98cff8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5d859d866a105218531155cad88a2cb3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f3e34651b8f3e2ecb7f30106d050f42e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/65e8710a1e6ad4a31d7e45eb0fe61925-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0b3388763f543221d6f1bc6a414e28a8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/82f9397e08ae46b682f7b8a1a3cee0df-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e7b6c6320b7e761ffe55dd1c9996288e-cc_ft_1536.jpg,81 days,780,37,Tree-lined block|Full finished walk-out basement|Open floor layout|Private garage,"Make 458 Swinton Ave a cornerstone of your real estate legacy! This well-designed legal two-family is comprised of three independent units. Two identical 3 BR/1BA units feature a classic floorplan with two of the there bedrooms facing a quiet area in the back while an open floor layout in the kitchen, dining room, and living room presents a great flow of space. Ground floor 1BR apartment features a walk-in entrance, still right in - no stairs are involved. A spacious sun-drenched living room in this unit makes it very appealing to a potential renter. The full, finished, walk-out basement is accessible through a common foyer thus making it easy to use. Very convenient parking is located in a private garage on the premises as well as in the driver. Located on a quiet tree-lined block, this rare find is only steps away from Throggs Neck commercial corridor, featuring famous NYC eateries and all types of shopping. Quick access to Manhattan via Bruckner Blvd and NYC Ferry stop at Ferry Point Park. The property will be delivered fully vacant, start building your cash flow on day one. Call us for a showing today!" +418964161,699000,1948,1189 Morris Park Ave #1,3,2,https://photos.zillowstatic.com/fp/60f2552f33705fc895d0c8af56da33c2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c5cbe89234d8f63ccd4ea1d29b226c58-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3d8e7ddda82f86996d3e37a9d2f290c2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a0896693c5afca142d4ca8abfe13e1c1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4de59b693e5a9982b66151b15152e6fa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d07a10ee0f1bb480220b9579cdd1bbd8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/33fdd8820ef08ee68de28d89ed9fc85c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0da2b1dd72723d0f7c8edf6b8de9f6d0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fe3d8f2c5777824cb958c986ddae7a78-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e75f692b75e168e9aec8010e599b2a83-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7021b1af31d92c142dfc9ec507e0e0ff-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b916def81751904bfb3d240b81601afe-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/46d020c5f946d0b593acb71683976f6e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/69d56e17c0f6adc550d69fca26324ed7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c54ee68e28e947e7ff1944fa98c505a5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/893ccacfc29cd68e9db7e4ad30fdb1a0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0aab8e733575efcb3bb41a0e8d87e2a6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1011ee0197ba835e5eaed98ecdd1c5cc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d94c9bbe2b5f32cf63accfd8f67f4406-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ba793a3fc7777e1e53696d33f363bb02-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8c20c45f75037de911abcfb63d9f857a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7cd84397a83d2e93aa36ab43833228c5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/532859318bc0a664d447c8cbf4666ca4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bbfd74d0f7d9e4d84533462f57fab0cc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f6e4e5d3e52ce08fe4b30e86363867e0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/96fd4d03be6938d62535576afbd8cc5b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2999864166e6122ebeda8c2f31806250-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6275f15192d8fdef93f49ce1797d22a6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/51ef0050d45fde94d579a50a961d125d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f13f69f597b1bbf1c31e49e9b9373ef7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/001e61b4618a5d3777ecd13f8cf7b505-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/006ddc97c4f77d722ebbc807bbe584e5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/563103b4f218192473a5977443f5cd18-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3ecfbe0a98712e973743437e11eb02d6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f578a01a0c6f867ad50b805271d27397-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f00828035a3504caa162fc801b89a2e4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/485aeda8c149648e87ddd1b1dabfe96c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dbfe38b0a5d7f6bb9401bef606ed5e21-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d62cf904fef3da6840987d4c137a0a4c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e6f27fcde066911e92e8bf32b9fbce66-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/96652e184413b8859f249233bd0eaa48-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a45573e8b2168e82e13e79f3acdb999c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ae921f445176393c1f8e161ab5c93ca6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ab5be7c93f1f900c683afd8d8f1e31a0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cffbdb086d278317b382f7eef104b79c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fb8c2a914e55c609c2838cbd8845ed15-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/daef20c2d2c69bb239a6fc070d4a6ff6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/44abdc96681ca662a61563fcfa7aa8d7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2b3b0aa716478b345f07f9f08fa55241-cc_ft_1536.jpg,206 days,1529,44,,"Check out this well maintained single family house in the sought after Morris park / Indian village section of the Bronx. Walking distance to Albert Einstein hospital and Montefiore. The property is in walking distance to all transportation and shops. This brick semi attached home offers 3 bedrooms, 1 full bath, hardwood floors, great size bedrooms with plenty of closet space. First floor offers a big living, dining room and kitchen. Second floor offers 3 bedrooms, and 1 full bath. Fill unfinished basement. Boiler was changed a few years ago, and the roof is only a couple years old. Give us a call for more info." +29849800,699999,1940,276 Emerson Avenue,7,4,https://photos.zillowstatic.com/fp/dcfbae843af59ec7b270e2744c253b02-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d9f3cdc8be6c66e53726a68a3abed961-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/599a717f34384e57a200af55ccd8b7fb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/559f1b192566dad6ca8eb4d2c5e8bd8e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0370c4029d22f3926183f3e4237d7459-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/21dd3075d165166b23a28bd20597184d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8c41e7ca8ffa96cef1cbce550fcf2c5f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/191eae37c13945f46171fa29bb65cd05-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/130f15c77ccad48e79039ba4062aa9ea-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1462f7139e987ce935a36e14bccd332d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d6f952c66cb416b373a8396bc0ea44b2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/daa66f7e1a8cfa6a5c2866622aead2fd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7e04f200808a6b9c5cdd22d86242c4ea-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/55d5ec8cdcf2b21807ff940d7a605aeb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/66fcf732ab732c729bb6523c8e1df0b7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ee3a592030d7b656756c57e8d721474-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f6c21d2fb7d8642d661c719b779e980b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/aaff8fb0f310757dc74be89d0500b11e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c6970f9ca6edcc82e2a80c7ce9ce2b9b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/27b59f11aae1fea3ceb85e28c27b41a5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b13f49d308fdea4470ba9517b20bb8ba-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5267a424b03fcbfa77fc0f7111958baf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d0e4efd73a9ab5603bda1a2459937f67-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f9352ec7d6ff0e2cb27afc21de54b8ca-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1d645fbb361b611cd9b00fa342b38abf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0af9785e648edd38854fc0c6e32a9aaf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a8e4010836867f1c2c205a3b6ff1b93f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b4408cdce3aa2da262bfabea6c6f3293-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/69af88d2c3084714c5ac339de0347f38-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/103bb1969c091abf6063129bfc973589-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/aaed8facf8da3707a8ae843345f34fad-cc_ft_1536.jpg,2 days,1233,71,Lovely backyard|Big principal bedroom|Spacious duplex|Hardwood floors|Huge bedroom,"Welcome to the BEST PRICED 2 FAMILY IN Throggs Neck! This LEGAL 2 Family home is the perfect option for a first time home buyer or a new investor!!! The first floor flaunts 3 Bedrooms and 1.5 Baths!! This unit has a BIG principal bedroom with a half bath and as well as direct access to the backyard! + +The 2nd floor unit is a spacious DUPLEX with 3 Bedrooms (with room for a 4th). Hardwood floors throughout the first floor. The second floor of the duplex is set up as a HUGE bedroom or 2 nice size bedrooms that come equipped with another full bath! The principal bedroom has a beautiful and VERY large terrace that overlooks the lovely backyard so BOTH tenants have easy access. + +This house may need minor upgrading but is in GOOD condition. Totally move in ready if someone so chooses. The street is FULL of parking and the area speaks for itself! Don't miss this opportunity of a lifetime!" +447635811,699000,1925,637 E 241st St #PENTHOUSE,6,3,https://photos.zillowstatic.com/fp/b861d220781b5ae2955b693c395c024b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/86d02cd3d1324bc4880a6fa11eee0215-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0817e58715727a7f3bb7efd06a62ccf4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/70f9871201e1e4500c525300877823f7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7dc083247cb55b70601e752f4e2e20bb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cbb5e155e1b5a1471fef7020c2c35043-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/33af9f47dc3c67ab7a9fa07474af850d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6eeef6bb7b6361974a8b45b9e97602e8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/89281d3a151154e7c908d2ca4060a568-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/19e9a7caab6aed46af787c4afdac2401-cc_ft_1536.jpg,7 days,477,3,,"Welcome to this exceptional Two-Family Home – Ideal Investment or Residence. With additional income! Discover this beautifully maintained two-family property, perfect as both an investment and a place to call home. The upper level features a spacious three-bedroom unit, 2nd floor has a stylish two-bedroom apartment, both boasting updated kitchens with granite countertops, stainless steel appliances, and custom cabinetry. Enjoy newly renovated, luxurious bathrooms, generously sized bedrooms, and inviting living areas. The first level includes a well-appointed one-bedroom accessory unit—ideal for guests. Move-in ready and meticulously cared for, this home is conveniently located near trains, buses, shopping, and major highways. Great investment opportunity!" +29818829,799999,1940,2116 Paulding Ave,4,2,https://photos.zillowstatic.com/fp/cce1244c317638525c4d7a127f7b4528-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/86701187469756abe34ad1953958e299-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5bbb19ce489fb87c010af849cb47fa20-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/67401a1d2482b3e5ae3329c50e3cc836-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dbb1123bc98fd6e77cd6bbd1f1978a5c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bba29a50af6925d101090cabb3ec4671-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1e9f909ec58f46294034f1ecbb570fd7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/098cfffeb60a058d7952b485b6ebec1e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/aa147dded42ba501656d486a848d59b9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b5d49580de29791e1ebfae3ed8647a58-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/274ed19cba2eff07ce65e9da10fe0bb3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0545c004cbe7b942448c69cf334d8865-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/24c470dc1181f443345d37bf9225ddae-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d478e29a714e47ea6aa59a26a477d149-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cec0035512a688375b3ca43ceb3717b7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2ddae917b579bde514663eda85b249b5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/458a8465e96c2bcaff6821f21e8d5f76-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/65f1e97dc0a4f1ce601677d90e80577e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6ab37a83fd14bd14f5d0e6885b869fb6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fc0861710c6442322ae46fef9468bb69-cc_ft_1536.jpg,6 days,1613,70,Beautiful backyard|Private driveway,"All brick legal 2 family house, +Located in the beautiful Pelham Parkway section, +Beautiful backyard + 1 car garage, +private driveway, + One minute from subway station 5 Train, + lots of potential. + 2300 square feet, +Priced for a quick sale" +443075534,339000,1941,2033 McGraw Avenue #MH,2,1,https://photos.zillowstatic.com/fp/5a830faa5718ce4c8bfbb2504d72dcff-cc_ft_1536.jpg,89 days,1091,11,Abundance of natural sunlight|Spacious bedrooms|Front windows|Refinished hardwood flooring,"2-Bedroom Condominium For Sale Located in the Parkchester South Condominium Residential Community. This charming unit has 2 spacious bedrooms, large living room with front windows that allow for an abundance of natural sunlight to enter the room with refinished hardwood flooring throughout. HOA includes: Gas, Water, Heat, Garbage, Common Area and Exterior Maintenance. Just minutes away from the #6 Parkchester Train Station, shopping area, restaurants, schools, playgrounds and so much more! Currently occupied but will be delivered vacant upon closing. Call for your private showing." +29819026,299000,1957,610 Waring Avenue #2W,2,1,https://photos.zillowstatic.com/fp/4ed840a7940cccb671ac904f9a46ddc7-cc_ft_1536.jpg,3 days,268,6,Elevator access|Common laundry room|Tree-lined streets,"Welcome to 610 Waring Avenue! +Nestled just off the Bronx River Parkway near Bronx Park East, this condo offers peaceful, tree-lined streets and the perfect blend of urban convenience and quiet enjoyment. +Neighborhood Highlights: +• Parks just one block away Ideal for spring and summer outings +• Minutes from the Bronx Zoo Fun-filled weekends for the whole family + Building Features: +• Elevator access for easy mobility +• Common laundry room adding everyday convenience + Location Perks: +• Located off Pelham Parkway East with access to shops, local stores, and restaurants +• Proximity to major hospitals, including Jacobi, Albert Einstein, and Montefiore +• Easy commutes to Manhattan and Yonkers + Ready to make your move? Contact Millie for more details and a personalized showing!" +29827339,580000,1950,3828A Barnes Ave,4,2,https://photos.zillowstatic.com/fp/d46712d92134a44271ad31bbde73e0d0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5ece59ccf8623bdb6b430c2bb5eea45f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d03954a3e78878a723994b2e4db20afd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bfd19445505b4f32ba44b8d6ba1ea7f9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6850df6d4afa5e8e521eed21bc83248f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0dfb46eaa0f47bbc55c08fb50c774c25-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6cc084f385e23e0bc5525b12f9a136c6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bdfc6db370cc533141c792e1bdc7aaf7-cc_ft_1536.jpg,1 day,110,9,,"Welcome to an exceptional investment opportunity! This end unit semi attached home nestled on a spacious lot, this captivating two-family property is a prime canvas for savvy investors or forward-thinking homeowners ready to embark on a transformative journey. + +This property showcases a versatile layout across two units, offering ample room for customization and creative adaptation. The main unit features 3 bedrooms and 1 bath, while the second unit includes a studio apartment and 1 bath. Whether you're looking to capitalize on the rental market or envision your dream home, the possibilities are endless. + +Embracing a blank slate approach, the property is being offered in as-is condition, inviting prospective buyers to explore its untapped potential. This is your chance to roll up your sleeves and breathe new life into this diamond in the rough through a comprehensive renovation project. + +As you embark on this exciting venture, with careful planning and a discerning eye, you can reimagine this space and craft a masterpiece that reflects your unique vision and style. + +Don’t miss out on this remarkable opportunity to transform a hidden gem into a shining beacon of possibility. Embrace the challenge, and let your creativity flourish!" +89029336,436000,2008,837 Washington Avenue #5H,2,1,https://maps.googleapis.com/maps/api/streetview?location=837+Washington+Ave%2C+Bronx%2C+NY+10451&size=1536x1152&key=AIzaSyARFMLB1na-BBWf7_R3-5YOQQaHqEJf6RQ&source=outdoor&&signature=ZuW5z_uNyJki07ex2nAaE4NxDQY=,11 hours,44,3,,"Spacious 5th-floor Two-Bedroom at The Aurora. + +This south-facing two-bedroom unit offers 10-foot ceilings, hardwood floors, and an open kitchen with an extended island, and granite countertops. The unit also features air conditioning and heating, with rent covering heat and hot The freshly painted unit has generously sized bedrooms that easily accommodate your furniture + +The building offers amenities that include a courtyard, gym, laundry facilities, two elevators, and a community room. The video intercom system integrates with your smartphone for added convenience. Storage is available for a fee. + +Prime Location +Situated directly across from the 42nd Precinct, this apartment is just a 5-minute walk from Yankee Stadium, the 2, 4, 5, and D subway lines, the Melrose Metro-North Harlem Line, and Lincoln Hospital. With easy access to Third Avenue’s restaurants, bars, and grocery stores, plus Harlem and downtown Manhattan just a short train ride away, you’ll be close to everything. The Bronx Terminal Market and Major Deegan Expressway are also within easy reach." +29819171,310000,1960,2385 Barker Ave APT 5L,1,1,https://photos.zillowstatic.com/fp/6095ca8df2eb9a3ea8a89208b80416b8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/169404bf8df9f0dcd815a0a9cc76eae4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/39e5bbb0150b082f5262dd169c3678dd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/21db040272cf2df0d99c62dea3cc35ea-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9e6958c60f56af5e5201654959446378-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/24f20fcce0b5567ee8e53c71b756ed6e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/707652c04025869323177055aa5338e2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f7788a7d652e479e960e6df398f7c9d5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a40c26167383038c0576bb4be36a0ad5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5824138363416710eb9d28f06559cbf9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f1a3b235f5d9ab5a245de4dae96db2d9-cc_ft_1536.jpg,40 days,351,3,Large primary bedroom|Tree-lined street|Updated windowed bathroom|Dining area|Updated kitchen|Beautiful hardwood floors,"New to the Market! Move-in ready Jr. 2 Bedroom unit in Pelham Parkway. The property is situated on a tree-lined street and has two elevators, a digital intercom system, security cameras, laundry on premises, an indoor garage (waiting list), and a live-in super. This apartment features an updated kitchen, a large living room combined with a dining area, a large primary bedroom, a second bedroom/den or office, an updated windowed bathroom, and beautiful hardwood floors. This well-maintained building is conveniently located near the world-famous Botanical Garden, Bronx Zoo, Fordham University, Arthur Avenue, shopping, and restaurants. Easy commute to Manhattan with the BMX 11 express bus, and the #2 and #5 IRT subway lines. The Barker Hall Condominium has an INVESTOR-FRIENDLY sublet policy. Pieds-a-terre, guarantors, and parents buying for children are allowed. This is truly a gem and will go quickly." +2053005716,149000,1962,3531 Bronxwood Avenue #3F,1,1,https://photos.zillowstatic.com/fp/b4d67edcda4a3dec4f240e811c028b0f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/75dcee1e0558f2621da2672a09d88049-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/64e3e18fb93395ddfeb69005efa60d93-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/838d7716bc71652f5bb65a5f8f25266e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2c11bcdc176756cfdf5659f6e76f9c89-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ea6f82ce9b258ed2f67e36e0a67b5c3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/864ae3f908f13850eb84b909b8da5762-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ff4316d1978c6f343d2c48da8377ed40-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/032f983841141b7f8ffb862e8f559944-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b15ef3dd7438bb673b7c426f43252e6f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/28756d106db42a8f474a2b41ab4551d7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9b92d5a0cd6bfada03ed02886b59c3c5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/96560ef9aadec6cb6f6dff1cfec8b7ed-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/db9a7e8628481109669d3ced76e04b58-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/51b4e25ad51c5d9b5124960fcae45b2b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/00ecc145fdecae032b43fc2117c143fd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/37a07abca26376d170713645a1acf530-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d463a06100f0395550f37462705d5d7e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e2939081af19e9ada8c308a775eb947f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dca5ca764db5c540d84331f7a0465fbd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/03b2918e37dd9cd0442e80fed600d9c3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c7804bf144a2c12892e4913903653684-cc_ft_1536.jpg,289 days,1441,100,Spacious bedroom|Common laundry|Spacious unit|Natural hardwood floors|Great closet space|Great size kitchen,"Welcome to 3531 Bronxwood Ave Unit 3F in the Williamsbridge section of The Bronx. Immaculate 1Bedroom 1Bathroom unit with a beautifully distributed layout that gives you the best use of the great space thats offered. This spacious unit offers a foyer, great closet space throughout, spacious living room, formal dinning room, great size kitchen, spacious bedroom and full bath. Natural hardwood floors throughout. Common laundry with new washer & drying machines. Conveniently located steps away from the #2 & #5 Subway station, multiple bus lines, shopping hubs, schools, hospitals, major parkways and restaurants." +29829052,749000,1950,3482 Mickle Ave,4,3,https://photos.zillowstatic.com/fp/d7a6430dec70f2ddfc0c33a5633f862e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cc347d004ba071797df938ff23d3d52c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c5d69566a5a40e5a64520d76a95e5b9a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/12cb434d5e00aff8d98d6022e1b7d980-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/999bff82049a57b113059040e06675a2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/575bfdd9248edd89357f8e2e5ce62276-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e15e6cd3f489d58444f94d9303edb918-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1a45238cb7e3537184d9d2d051e4d0d3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/610878a6cc26afa0db573879cc4be871-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/abfee0f010273bcb2c64eefe9d610150-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dd8ed7cccc21eaf3f0f8532e9a28a7d7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f1f0f51b25000daaa778a161d551758d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/177e4b74f88a02c2c87f0d5878376c92-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/20b40246703c0cf4529d6a22e1bbaeab-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6589dbef861e8cfae9f9721fde847e7c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fca3eb27d3449be0576173210d4dec9b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0f79d8d2147d980707b4b19f516a4602-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/46588f31559a2b8c1f1b32917901442b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cbeb078b5a3d7c0d9f87d0d3d8eccf9d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7bcb6942cd876155e0d657b281ba589e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a35e063d3aa144edab923c9a14089dcc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4425189b4013cdd98c3a7797963adffe-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/adfd71bccd7d3dee4053620577e31de9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e63ac357e35f8c09a8b56a1c969a4444-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/820ccbbc65e929f85bf22e7d9f314c36-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d29101fd9b52740182364b8cf9170c21-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ca46775f6aaa9100e85124a81f7e94e9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d714aab8ac273a46859955aea4776d20-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/20efd5dde953b400c42c789a10116fd5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ff99553def519640cd61b618861d7801-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2333acfac77c68fd5191dc67817d719b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b66f42ce26543098d791c36b9c42df6e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0d23f429e67642690582c0509dd65c61-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6ec8b8e85223172092f6045b761e50ef-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ac697d54d4ee624b6a474644e22b584a-cc_ft_1536.jpg,2 days,286,14,,"Immaculate Newly Renovated Brick semi attached 1 Family Home with high end finishes and a very spacious walkout basement unit with separate front & rear access. Private driveway with parking for up 2-3 cars. The main unit features a spacious 3 Bedroom 1.5 Bath duplex, large beautiful balcony off the kitchen with great space for BBQ & to entertain, newly renovated kitchen with custom cabinets, stainless appliances, Quartz counter tops, recessed lighting throughout, beautiful hardwood floors throughout, newly renovated bathrooms, beautiful wainscoting panel on the main level that offers a touch of elegance, 3 huge bedrooms, Walkout basement unit offers a spacious living room, dining room full bath, large bedroom, separate laundry room, central heat. Spacious back yard. Great opportunity to own this one of a kind unique home. Conveniently located steps away from Subway stations #5 & #2 lines, multiple bus lines BX8 & BX31, major highways, shopping hubs, schools, restaurants and public parks." +83178236,2899900,2008,640 W 237th St #20B,4,5,https://photos.zillowstatic.com/fp/b48f0810c9fd5ea92129f1a730315410-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8e63732b6ce38dd9f759c472281db411-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4c366d6fe3b31d030e5228428f31223c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c3175f53587e03118a009792bce7f842-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/68da521ccc8628612c10c8d5b929f47c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/95b0eb045e08005259a22bcba4cd3708-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/84dae65ea81de063925dac98d49b84ee-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/57992b28c3018f8adc599486cbef0542-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/38f19aabe4fae9f8c5a89b9375a2da72-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8cec1de425562e980b1e77a4f34722ca-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6f205ad2205c9657eb971a6a44756c0c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/31a9ac6cf2a49bb6d0f8e0af5d2d5a7e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/72778300cfdaa05bab723dd6ec9d865e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7592763228b872c6420c300e94a63e08-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e656c36e9e1e67e9fa05c281305294bf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ff194a53ff966febcee3485d4242da3e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ef7426f3739c57c251873d17d20c11b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bf08a1b8ec806e5e8eade49910954dba-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/16dd8edd2fd58db75c46797072104cba-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ffdb1095252afdece3c05aa22bf893ca-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fa0d9b8b16aa3ef8765b2d1070079498-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/45543643ab8befd2ec30e5084951a5fc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f03f4ad109474bd7cdc58ff804a144d2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/36cb51c2ca969c1f8cd23e9b66bb1798-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fdf9689a143d02a204010163fb8bd24a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b1e596c90915e2e7bdad2c56970f199a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fb5e751ce98aec1a45d6417630e9542d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/acde1a60a3bd2501aaa113fc93ee4370-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bd13a9bcc0a63a85e535a6f63174397b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b17dc91451fdf9eb2ce00026b7bfdf02-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/25be66c60e8167222e6d4aca6571f675-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c5f1bc399b92bb7cef58ec38393c3872-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cac3be8d337e73102e0c68db6621e56e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6d74b83c39a718f028ee2f690cfec424-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bffa471702080a8eaeaff5b54a7b7ab0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/64d7f3bdb25ef8423b179d8f71e5bd2c-cc_ft_1536.jpg,234 days,842,33,Floor to ceiling windows|European shaker-style cabinetry|Private rooftop terrace|Luxury living|Landscaped roof deck|Deep soaking tub|Radiant heated floors,"AMAZING NEW PRICE! Imagine that you are on top of the World at The Solaria Condominium PENTHOUSE. Everything at your fingertips with top of the line appliances and warm wood finishes on the European Shaker-style cabinetry in this windowed Chef’s kitchen. This large 4 bedroom, 4 and a half bathroom Condo has over 2700 sf of luxury living with beautiful appointments throughout the home with 10 foot ceilings and floor to ceiling windows. Closets are California closet designed. Enjoy spectacular views of the city and non-stop vistas of the Hudson River and the Palisades from a PRIVATE ROOFTOP TERRACE WITH A PRIVATE GALLERY. You will love the Primary Bedroom with an ensuite bathroom with radiant heated floors and deep soaking tub and separate glass shower, to just relax and enjoy. There is a washer/dryer in the apartment. The Solaria has a 24 hour Concierge, state of the art fitness center, lounge & entertainment center, landscaped roof deck with extensive views, and a children's playroom. Local and express buses a half clock away with access to #1, #4 and A trains, express buses to Midtown East and West Sides, a Wall Street Express bus and Metro North Station Rail Link to the Spuyten Duyvil Metro . Central Riverdale shops just 4 blocks away. OWNER FINANCING AVAILABLE WITH CONDITIONS. +There is an Elevator Repairs Assessment in place." +29833329,825000,1955,1019 E 222nd Street,4,3,https://photos.zillowstatic.com/fp/4d53d1997d8a77b4fc05c6f02f3f736e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/383928d43d516638456996ee9cade529-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4e84f81176b1037b048a2f562d5a9ebc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1176b4a3ffc261171dc9d8ab8a8645c1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/595dd1e7488f7b45a899969b58dbd3cf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/841fef5e9e6d53729595ac9bcb09858b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9139f704744b4547d580d1cf5f30d4c3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bbcee9123443f62df5f31eee931f80ff-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9e5bd2c4f5ca048fced3d84c7c1fbb4d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9d1381ed55636185866fb713cc9b2564-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/61bc0acd3e350aa251cadfa7fb8b2db3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7ba85a5fb64eef25890ee18aedc4366c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3e0163c511f2525ee7f691a119262acf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0be734a3d96d66348cf9c73b03167ca4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3dc600ee36973d6cb0b9b48b7b12deef-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ddf71260b0818218d718028a7824b891-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e0bbacbf7be84c7adae58aa94b37b62f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0b25feccff70df3d8761e569df8f45c0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c101080060893413cdea6c1de87c497c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7326b56554003d6a8d4ae1dd88e82e1b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/67cd73c452bac40bb7b747adc6333e2f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8e53297cfb38fac094595ced6ac9df48-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5ce388a1f57d267dc58575b107aa0ed5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/19902511568fedc480e910c8b89f1c39-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/642e8437b67c4d76aa3bef4356ef7bbe-cc_ft_1536.jpg,32 days,845,36,,"Step into this exceptional two-family home, a standout gem offering over 2,000 square feet of thoughtfully designed living space. Nestled in one of the Bronx's most desirable neighborhoods, this property is a rare blend of comfort, convenience, and potential—perfect for families, investors, or budding entrepreneurs. + +The main unit is a beautifully laid-out 3-bedroom duplex, boasting expansive living areas filled with natural light. Its spacious design provides ample room for relaxing, entertaining, or creating the perfect work-from-home setup. Downstairs, you'll find a cozy one-bedroom apartment with a private entrance, ideal for generating rental income, hosting extended family, or crafting a serene guest retreat. + +Practicality meets convenience with an attached garage and private driveway, making parking a breeze. Beyond its residential appeal, this property is licensed as a daycare center with the capacity to care for up to 16 children. Whether you’re ready to launch a rewarding business venture or enjoy the extra income potential, this home stands out as a truly unique opportunity. + +The location is unbeatable—just minutes away from vibrant shopping centers, a variety of dining options, lush parks, top-tier medical facilities, and major highways. Whether you're commuting, running errands, or exploring the neighborhood, everything you need is within easy reach. + +This remarkable property offers endless possibilities, blending versatility, style, and location. Don’t let this rare chance slip away—make it your next home, investment, or business opportunity today!" +79507461,1399000,1921,50 Morningside Dr #32,3,2,https://photos.zillowstatic.com/fp/d206d8db70879f306e2b0306a64f2619-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1538e740ad5326772b40e4620752b224-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/58152086d4456ddd508b3f8a98cb096a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4dea8a044dc71496fad2af0b1a062e86-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/167c8f94d4d30f4087ab95f1f0b871d2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dc2d64285d6bf5d5e251f1a6ecca2755-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/eb428d7f636ac7085fad2e15d2a63678-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8f8a63485887eb0c90c819484a23e8e1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/24cf80bceb53361db0a378c9c108b084-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/50714ccb4078ccab017de2997d61d970-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/35e8e19c9255b1bf5aa808615584c0f0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ed02b9267235b9f37f1b982449d8c30b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a634b6e25ecb25d97db6b2a40f5d5be1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/15cf59b09845415da7f2f8dae0ed477e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/07b1745e10133766fd442cbfb6c30ccb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/18548cae69b9e7602351fd5ff6c17ea4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4ac77616f64b0bbb7e5efd79ed891be4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/770687ac4fd6ec07a177e5492d89b91c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/96980eea0a6904e6d78b76f928533997-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e37e8f73a68f90368c3c2d122c5fb095-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/43884fc8ffb67bbcf3af0e534c87aac0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/88b46cedcdd6d8bc2dc4a8947e8b3605-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c997767d91aecd06a7fd262f3293e190-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1f613228f4a05e7259349da48eaadca1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e5d44a3236a9629e4baf2c3b47680e2d-cc_ft_1536.jpg,19 days,1804,148,,"Welcome to Residence #32 at 50 Morningside Drive, an exquisite 3-bedroom, 2-bath home in the heart of Morningside Heights. Located in La Touraine, a distinguished 24-unit pre-war co-op built in 1904 by renowned architects Schwartz and Gross, this residence offers the perfect blend of historic charm and modern updates. + +This gracious home features lush, unobstructed eastern views overlooking the 30-acre Morningside Park. Upon entering, a long picture gallery with closet storage leads to an expansive open living and dining rooms adorned with beautiful herringbone wood floors. Off the dining room, a charming balcony provides a perfect perch to enjoy your morning coffee while taking in the scenery and sunrise. + +The updated windowed kitchen is a chef's dream, complete with a Wolf gas oven/range, marble countertops, and abundant custom cabinetry. Each of the three bedrooms features wood flooring with the added comfort of ambient floor heating in the primary bathroom, and the primary and second bedrooms boasting impressive built-in storage. The third bedroom offers flexibility as a home office or cozy den. The primary suite includes a lovely ensuite bath with honeycomb tiling, while the second full bath has been tastefully updated. + +La Touraine is a pet-friendly building with an elevator, free common storage, free bike storage, and a shared laundry facility in the basement. Residents can relax or dine al fresco in the courtyard. The building's striking marble and paneled interior, wrought iron balustrades, and stained glass windows exude old-world charm. + +Ideally located just one block from Columbia University and near the B, C, and 1 trains, this home offers the best of city living with easy access to academics, culture, and green space. Morningside Park features a picturesque pond and waterfall, multiple athletic fields, playgrounds, an arboretum, a dog run, and jogging trails. + +Experience timeless elegance and urban convenience at Residence #32, La Touraine. + +1.5% flip tax paid by purchaser. Monthly maintenance of $1652 plus assessment of $558 for facade repair (repairs estimated to begin in 2026)." +29821817,839000,0,1427 Waring Ave,4,3,https://photos.zillowstatic.com/fp/6ca545b62bc0ab83f6d86bcf22094b30-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2ee069cdefdff529ed43b5a604f96d05-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b79051de3873a99e417bc2a58cdc5bf8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/db8395533f46c26795b41ab587b310ed-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/15af2a177b17e6102da11fa7645567ce-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1aafabbd02c31faf501ebd085319ba84-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/36edeca2382f11421dd8f0c04adbcebc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/43d91ca66a431c46410d71bf29d1c54f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ec5baf61087aaf96520eab83a7e61246-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/366a8364273a6d901d6f321315b729ea-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a50380e9aa481b14e7614643b87baa3c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/51773c034f179e04631789efd8a516b1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/67a4a38a75a733989997785e829cf61b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fadb46f9096f6970de9f41a83d2947e2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ac579a7541ae1a124d6a27bd287acea-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/50e09e5b5aca802e9b3e4d45dc02062a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5595438e8b555f85c8c2800c75aad240-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c94736f35886c292156ff69807ce0c08-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bd0de9bdb63e12cebafb12ff369e15f3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/abc77ce935ad2c413258f493107b2775-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/862b5981b3b45d53851bb91466e6d987-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0f9e655093af0b114952066d8159d3c5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e1b4a67ce409d1444d70124a9e7e09b2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/968625de32113b0e14249bb65198bf2c-cc_ft_1536.jpg,245 days,1618,40,,"The perfect blend of charm and income potential, this detached legal multi-family home is located in the much sought-after Pelham Gardens neighborhood. Featuring a picturesque gable roof, as well as four bedrooms, three bathrooms, front & back yard, and a private driveway & garage. You can also capitalize on the financial benefits with monthly income from the rental unit. Positioned ideally, the home is just a short drive from the Bronx Zoo, the New York Botanical Garden, with Albert Einstein and Jacobi Hospitals within walking distance. Very near trains and the Bronx/Manhattan express bus line. This home is a gem awaiting your personal touch. With some TLC, it can transform into a warm, inviting residence for a family or a profitable asset for an investor. Don't miss out-this must-see property offers both a prime location and significant income potential." +442154295,5250000,2015,5175 Goodridge Ave,7,7,https://photos.zillowstatic.com/fp/c9e348f7f74b19cedd7490215996d49e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d38ff2475e8aa3bc438274fb4c957e54-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a4da981b1d784b3c09664fb179f5a8a8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/15fbd24b7a9175585ac1f93c9a437177-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bdd3ab82857a30db0a24f22dfe5b6fbf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/76e5d04c47918d1a26e81600b39ddac6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5cf2e3da439ca7debb285a2533395ab9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cdffad65c9c33fca24d8f2d2cdfef330-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8d725825f5e0ed49ab96e0311891b503-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/33b61b1cac1dbf9c02e6b0f41dea66f8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3948c22277537333b1b26ea149b135f5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4d63c9f1299a60cf504b60c8b79452e0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c1e3ebefd27377a1c8ff5a40125ec74e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bbd7cba240d98357ad05640efdd06a67-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cbacd35f26f28d7de3b40b17547f00cb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/056256256218cf1f1e19baab66a892dc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a0b71d0dbf90fb4f8bc0a588ec601608-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/799373bf1159de2af5abf703d0b92a82-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f056926e2f3cc9a771a9274eb384cd62-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e9574eb2d53c2282df2faf9e57cf5d04-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5fa0f4b09116b1d6449bf4a09e7e1afe-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8af13b75dc0e74f6f08850fad460b01b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7616bf79679aa1336fcaaf6313992b2c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6ff7ab4828facb1d5dbbd7384cb3c0e0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fcea5372a3c4431e1e93225a6e0e62e9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0cf0fd19b344407ec11df8746a65a9fa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3c4889e796392cc61317e77739f5e580-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/869b43a3876df666bf211fec5fa7b0cc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/89358fcc50fb4ed83d49d44c1a22dfc7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/299fed9a5e45b1acb338cc723258eab4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/149bd1613e14a1f20ed6952d21052bbb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a415e313f4543694843266fe4580bb07-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8bd91164b4a5b92f4a4d04ff0ee701ff-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d09a64e63a85799ce68ce3ad30343b3d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c7f7989d7faed887e758c56937a03f46-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2b2251b2ed0c900cd44d226c2152b821-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/098f66da12146ae9c63f51a47e056b0c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4b61102b3113f2f09c6b7643e2229e57-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/57f0b9e032969d528e8f2c46c3e78ed5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d02758bd5d48048338d4780cb4f3f505-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6c707f01a507f557037a39d7fa5119b6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/469f6c2e731c90dc02c6705b29ec756a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2881cb412cf090f39ed68644fdaadd19-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5ac0b09144d316f0d231cf9cb973acf5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f28ecbbee9c4e1d05ee97b3ac8b0f87e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7c5ef2045acf46ab044d8959b7addc80-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ad9c37f61d16d8e3e7c7bc8d398aac79-cc_ft_1536.jpg,289 days,1364,55,Angled corner fireplace|Finished basement|Exercise room|Inground swimming pool|Private cobbled driveway|Private porch|Distinctive exterior,"NEW LISTING VILLANOVA HEIGHTS +Grand 7-Bd. Shingle-Style Mansion with Pool & Huge, Level, Grassy Grounds + +This picturesque 7-bedroom, 6.5-bath, 9,000-sq.-ft., American Shingle-style mansion was built in 2015. It enjoys exquisite details and luxurious amenities, including an inground swimming pool and a huge, level, grassy backyard. + +Set on close to an acre of land, the home sits along a leafy street in the exclusive, private community of Villanova Heights, adjacent to Riverdale’s Fieldston Historic District. + +Designed by architect Hans Roegele, its distinctive exterior is based on a prominent Gilded Age mansion by the venerable firm of McKim, Mead & White – the 1884 Robert Goelet House, Ochre Point, in Newport, Rhode Island. + +The house features a welcoming center hall connecting to wide and inviting front and back porches; living room with and angled corner fireplace; formal dining room; large center-island kitchen with breakfast bar and stainless-steel appliances; semi-circular breakfast room; family room with fireplace; and library/guest room. + +The second floor has 4 en-suite bedrooms, including a master suite with a cathedral ceiling, its own sitting room, 2 walk-in closets, and a glass door to a private porch. + +The third floor has 3 additional bedrooms, a full bathroom and a large storage room. The finished basement includes a recreation room, exercise room, mudroom, and a maid’s room with a full bathroom. Central HVAC. Elevator with access to all floors. + +There is a private cobbled driveway and an attached 3-car garage. The property totals approximately 0.88 acres. + +Conveniently located for well-known private schools (Horace Mann, Fieldston and Riverdale Country School), the vast greenery of Van Cortlandt Park, and transportation to Manhattan (including express buses and the No. 1 subway train)." +29822587,699000,1965,2434 Tiemann Avenue,3,2,https://photos.zillowstatic.com/fp/e2d0774d4d7f6991d84fd1bc313e1c04-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5682ca631f6a7d1ab28cf31e2bb310c7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0cff4ba393cf327af888902ee1fa184f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c320a556470cc8aaaf5e845b81c19686-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/96d236b73a06aa9642d965cea9b930d0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f70ca102be8e64789efd90d1c109857c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/01a343e83896c5b82567bf8690ea0abd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4be1181af2f257648e1f6a4129d8cba8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0c5c23df34973b76f0dc0549e9d7fa9f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ecf8448bde48025262fe69cc4ba73004-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6a4a387a8b9338e2c3271e9455bb9ed4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/161c4e355125ea3aa2c70a18f17b24bf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8dae6fa58f791a429afb44249dbe1217-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f6e8e095c2504699d782097c9fafe082-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6ff4249b26ac28e6cfbb76a52dfc3823-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/efb8a2a6904ceae94ed98b386920d020-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dea90722a9092bcd6633e5869e271451-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cff85e9ffcd818b8291461239fb2cedf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a2fbbb5f6e74fda83e60063144b890a4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b836bfa61619a3ced0705b2461f73659-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ba0d61b2019bdb7d122e9cbbb66b124-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/710c838b11cff4be122c2ac349750e7f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e79039a6642a15dfb5518b977ee74127-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9cbf73de3db0638cf0adf8a3f509ce25-cc_ft_1536.jpg,55 days,1509,55,,"Location, location, location, Welcome to the best The Bronx has to offer. This delightful residence features 3 spacious bedrooms and 1.5 modern bathrooms, making it perfect for families or those seeking extra room to grow. Located in the vibrant neighborhood of Pelham Gardens. You’ll enjoy easy access to local parks, schools, shopping, and public transportation; Some of the many highlights of this property are; a full finished basement, the private backyard and a porch. There is also a driveway that has 1 car parking space. This stunning property has it all. make it yours today! Easy to show! A/O" +442154188,686800,,1 Windward Ln UNIT 5,2,3,https://photos.zillowstatic.com/fp/23ec294e55a784bfe5b34f22d9273d33-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/83538aeef2f63178ce984c86d21262e5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/134bcaee1fdd93cf7fa82b09eeb5164c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2e651c6beba5e00b35108e1dc1fbd8dd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a03c8145181b3b06c9470a1b5609dfa4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d711c64ba8a3888b1722d76893f9d6b8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a2a5b02f39c350e3806ff3d565e6a76f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/093d8433d9f54fc12110bda8c2cdbb80-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4252202f59dddacd592fe323db873308-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b9fed8351f8f49cbc654904e01d3ee19-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/14bd6639c425f987cb3fba4605d32107-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d14d302f9e4036a1d004c3faaa213dc5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/de4cf493c58efc14d139528f4f95c408-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/33b82f4442f7dbac042efde58e1bc7d2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9f6a029c2034f8c9fe161d188b5f7cb0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7ef39b003b28f2210000164075085de4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7ca9b5b4cb450b8775e7111557e06bd0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d625d0d0e674334d34c59766737c913f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/399143a663f60134c24034ca1fee24d9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f1c263789fc9b0de96f9629b76e6ec2c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3484d30ecae25c387666da0b84de8c55-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6908690fe639e5c34511a41dc4961725-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/451016e75677701807d6cecde3a8ab0f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/19da910d8bd2aca9ed290aad32f1bda9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/32650ea0a49470c17fcbbeae5097b827-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b06e1c42eeb6e5e08bba788be0f100b6-cc_ft_1536.jpg,225 days,991,50,Gas fireplace|Built-in office space|Central ac|Architectural details|Large attached storage space|Open water-views|Water views,"OPEN HOUSE IS BY APPOINTMENT ONLY - The condo association does not allow unattended entries at the gate so unless you have an appointment you will not be given access - PLEASE MAKE SURE YOU CALL ME TO MAKE AN APPOINTMENT. + +STUNNING WATER VIEWS 2 bed / 2.5 bath CONDO + +This exceptional waterfront condo offers one of the most artistic and high-end renovations I have ever seen! +- Curved walls, stainless-steel and plexi-glass architectural details, curved built-in closets, custom lighting, and a stunning floating staircase - a pure piece of art! +This quarter century renovation was designed with absolute innovative brilliance, and at a value that would be near impossible to recreate today. In addition, this condo has full open water-views from the well-appointed balcony, the master bedroom, and from the open concept living, kitchen, and dining space. This spacious 2-bedroom, 2.5-bathroom condo is brimming with architectural details and conveniences such as curved windows, a custom-built ensuite-master-bedroom, central AC, skylights, hardwood floors, a gas fireplace, and a built-in office space. The spacious second bedroom is complete with an artistically built-in loft. The serious chef's kitchen is fully equipped with double ovens, Sub-Zero fridge freezer, two sinks, a stainless-steel pull-out pantry, endless counter space, including a breakfast bar and an abundance of kitchen cabinets. Additional conveniences such as a second-floor laundry area, direct garage access, a large, attached storage space, and a Koi-Pond entrance complete this remarkable home. +Note that this condo has straight interior stairs from its private entrance to the second floor - which can be fitted with a stair-lift for convenience. These views are only attainable from the Boatyard's top floor condos, and this is one of the best! + +The Boatyard Condominium is the only 24/7 manned, gated complex on City Island. Truly unique with its meandering walkways, a large pool overlooking The Sound, and a stunning private pier and Captain’s house, exclusively available to its residents. +An easy MTA commute or short drive to Manhattan affords you this relaxed and friendly beach-lifestyle every day! City Island enjoys over 30 restaurants, multiple beaches & boat clubs, convenience stores, cafes, galleries, PS 175 City Island local school, public library, post office, Chase Bank, even a new Yoga and Pilates studio! Pelham Park at the entrance to City Island is New York City’s largest park – 2,772 square feet of golf courses, a horse stable, walking, biking, and running trails. Not to mention the infamous Orchard Beach, established in 1937! +Life doesn't get better!" +2057087117,199000,1957,730 E 232nd Street #1F,2,1,https://photos.zillowstatic.com/fp/ed619370afaf8cbe92dca1d4640c701b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4b792e815e82b9daf634572a5eb56d75-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bfca8b263cc0534fa5053c0b917d26aa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/74acff7fc582695c0ab0e2801e9c524a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b0606b4e82db1b78b0567fb34b1e6a21-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3f9c987d41c046319f28da843264eb40-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a8bc2cd4a0fd93610b66f1a262cff2d5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8ab79cbabad8e23328776814f46b5c7f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/272566233d10991d101c62848e241a81-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5109302bfeb52575a3ac8bef6be8094f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3b628bfde8fc4142a573a4f58a549d51-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fff76514b6507e0cf1584dd53d5b7957-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/47f54002a2d3a82f9414d0c00b65bad8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b1f4d31277441674a56cc9c948341567-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cbda3b5914b9742cba36ca2403758f70-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/41202484a2c72e6edea3ef5e9e190321-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9f2aead52c227a58599bb9e333f5baec-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e630d35e3234a95384461d030fa3622e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/468443f7952f1b0e9d3d77e9adee70a3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b998802e95eb61c0d8c22077e9d7ed29-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/69d3420d52ebed5a931b1680e3524955-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ffbc9f8d7996f72399ba2e1e080c8367-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5d9ec927d937a32bf3fe6fe08ed2db0f-cc_ft_1536.jpg,23 days,2107,174,Flexible furniture placement|Tons of closets|Hardwood floors|Ample cabinets|Beautifully updated bathroom|Updated eat-in kitchen,"Vacant. Ready for your touch. Large, Well-maintained, clean, affordable two bedrooms with one beautifully updated bathroom co-op located in the Wakefield Cooperative complex. Unit is conveniently located on the first floor with on-site laundry conveniently located a few steps below. Large, updated eat-in kitchen with ample cabinets for your storage needs. Tons of closets. Open Living and dining areas afford you flexible furniture placement and staging possibilities. Additional amenities include: hardwood floors; one-block walking distance to shops, schools, bus, train; 3 blocks to hospital; close proximity to parkways. Electric, Gas, Heat and Hotwater included. Additional $30 per month for each AC unit. Waitlist for parking. Parking fee is $150 per month. Bring your decorative skills and highlight your personal color scheme. Your family will love living in this home. VIDEO OF PROPERTY ATTACHED. +https://drive.google.com/file/d/1BYsXJKzli5W1UV4j6-Rj4fb4ma5dLN0f/view?usp=drive_web" +244468166,235500,1950,9 Fordham Hill Oval #3C,2,1,https://photos.zillowstatic.com/fp/90f1573fcd93ffd11244d70b21d69c2f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/34cdbe3b350795272c7daf093b3686cd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7c44e0bbc68716e0403dfcdbc6346a14-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dd9781665b1871dc69c160fc3d2b955f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/99dc1d31968d158df3bf220aff295a95-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/283227f26ca549d27d6542366f21d6f9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3ab3d70fc7f0257145ddfdd3e5315cd0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/633dcc94bed753e3462d9e3ae6b2fc41-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/37fcde349f73842b43770c789cf2c22f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c707c8b3cf0fdeb1b26eefd878bded96-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ebfe6b03257f9054127c19198c60d47d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b652257176bb1a20629d93ced50791a1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/05f020c2f723c77e930fe4e7f4a04eaa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4a2c2ec38fddd9eca5207278ae6a455d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e094bffdefe34529a75cca0af0873815-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/08e0a4eebe9e653bd9f06c18bc472267-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/095d96621ec3d1e706d0362f6d458e20-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e54026e7468224fad9389deb1d9c9b04-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/de875170c2d5f5a72b86498745c2702f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c4068ce3f01a09b6dce57ea0b3a71b97-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/feb663bc249fc79f40c74be152d5dabd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6a45cc2492a1c503eb94af372ebe856d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f168b7ace85c125a1f3b84f338dc4230-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/25c43edb9abedac649b42d283d0625ff-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/517d5b63796ff0260fc5922e20ae6e18-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5282650a89b154bfcfa2f3d381dff5fe-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/961d6b1ec0436916eb4eabf5e28a3f24-cc_ft_1536.jpg,49 days,292,19,Garden with seating area|Lots of closets|Parquet floors|Additional storage|Nice layout|Spacious apartment,"Completely renovated 3rd floor 2Bedroom co-op in the Fordham Hill oval gated community. Sun filled and very spacious apartment with a nice layout. Parquet floors thoughout, lots of closets and additional storage if needed. the monthly Maintenance includes ALL the utilities Gas, Electric, AC, basic cable, Heat, Hot water, Sewer, Upkeep of grounds, Snow and garbage removal, Building insurance. Onsite laundry, Super and management. 24-hour security, Playground, Garden with seating area. Subletting is allowed. Fordham hill parking $225 a month/free shuttle provided." +2087203269,215000,2009,150 Featherbed Lane #4B,1,1,https://photos.zillowstatic.com/fp/8da78542e1798541ed144d326b479c81-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c4bdbe617116ce1aee374f00b333d685-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9c80719a7e48ca9d45a473470c270700-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/774a9d08402af6e010ecab1680895d97-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/53fa9049ec618e0438b5604fdf141a9a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/eb5fed1e4ddbb506c9ba5c23c8a2e66b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9665cfad1daac16a03e86d3ad5ede28e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1484348034ff30463b3e897b9ff5aba3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8510d4141782a8abec0b1efe315d1a89-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8fcd615e916eec3fdedefdeb8b23c2ab-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1a56071fa3271a940865fc63cf9b8802-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/746db63cce7ded8aed9adb88b088a08b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d5819a950a18f44d75cc91a48e95f171-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/91b3d5b17b2775c9e82d1bdef0211526-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8d730ea5929186ef4534e39804d24ba5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/547e837131955465de37544451cb4d8f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/07f7873ecbaa038b43712937516d23e4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e993285e854cfc8a61b70a70fe0dc9e5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/36e330730496656c3bdc106a907feb67-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cc13ef8a8273a58709c3115e8c593007-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0865c147d2d24cacbfcb9e7adb7c6796-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4ccd709129a46af17189f38df166aee7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fd3c0d38cfc369ed23ca6f189001efa3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/465f28f81d6ef14f3fb9f967c3359835-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/149d7db7b8f3dfb2766885fade82bea2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2fcfc7f3e4257a17697f5f2134d55ff2-cc_ft_1536.jpg,49 days,538,43,,"Unique opportunity to own your very own apartment in the Bronx! Filled with all the modern conveniences you can ask for. It even has nice views from the large windows allowing for a ton of natural light. The apartment features hardwood floors throughout, an open kitchen with granite counters and ample cooking space. Location is a commuters dream for this unit. Close to major highways, George Washington Bridge and public transportation. The building was built in 2009 and it is extremely well maintained. Features a rooftop terrace, recreation room, part-time doorman, and state of the art entry system with security cameras. Don't miss out on this amazing 1 bedroom / 1 bath co-op. It will not last!" +244446711,225000,1961,4705 Henry Hudson Pkwy APT 6B,1,1,https://photos.zillowstatic.com/fp/cb4c4b808b54d2502e8abe44d7f22c45-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8b31362ce72c7f1e605c730505c47bc2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/42d6c380e7d1571cc6c390d35374ed2e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3566de25bd9c128dfbfde0a221894729-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c654e1955d859bff6918f7b88770a519-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/12bf3e4cefadd3761cd067856f24b81d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ddd94cd894152abb4e4a9ee95e404192-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ead3f1f2abf4c68fcac84523d7d456c1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b3f0300f1b335149a4580b51297ff127-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f8855419db5aad51f7098dabdf6960fb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/92e392f4f28e032e2ce2332ec82b98cf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a543acdbecf65c86421fd2f0024b0676-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/db150816d845336332eb42b2ed539448-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2fd6019c12f7284634998f46f797d26e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/44667679e0a3fd6ceebd87122e4dd341-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c02ebd62d3548597bd5751d7083cbe94-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5b67a4d792e693327d7e35d7e864b7d5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1f0a1dd82e0ffbad077eaa71f5c7af66-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/48361935b1c8add336c08ac40c8bb3cf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9cd0609b15577ed84aa1e04b26daa044-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3dfc5cf08cb3a3279a3d053367e4f864-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/55f4ccfd18543cbcf57deac33a974066-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5f622fe575c31d8d23d169b47444f9b6-cc_ft_1536.jpg,54 days,936,31,Bedroom with double closet|Large western balcony|Entry vestibule and foyer|Central air-conditioning|Picture window|Windowed kitchen,"Exclusive New Listing +Bright 1-Bd. Co-op with Sunset Balcony, Swimming Pool, Doormen & Parking Availability + +This bright 1-bedroom, 1-bath apartment is at Windsor South (4705 Henry Hudson Parkway), a postwar luxury co-op building with 24-hour doormen. It enjoys a large western balcony with a sunset view of the great cliffs of the Palisades, plus seasonal glimpses of the Hudson River. + +Standout features include: an entry vestibule and foyer; open living and dining room with a picture window and glass door to the 21-ft. balcony; windowed kitchen; bedroom with double closet; new wood floors throughout; central air-conditioning; west and east exposures; 6th floor; fitness room and outdoor pool in complex. + +The building has parking for rent subject to availability ($60 per month outdoor and $125 per month indoor). + +Monthly Maintenance $1,050 (includes gas, electricity and heat). + +Easy access to transportation. Close to Wave Hill public gardens and culture center." +94715775,539000,2008,87 Heron Lane #436,3,2,https://photos.zillowstatic.com/fp/f5c01ec565c0486238f7a38152a5791f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ded6443ac87640533e7f090c9e4469d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fd8050addd43f58000027cb49c1dc544-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/af59f50023fc699ca8dfe5cc9a2e31bf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/37bd9cb4cba6e8177e8739271960f451-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2d71e25eeae7f0aeb6eabb9e55f792b5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4baac3865913496b851e5b857059fd65-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7c19cfd0ecc9e0d2ed87ea28c6be4487-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0e2b0eaad9e05ff8dc8cfc92d1da5805-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6cd3666c3fc5faf75833de0cebff239c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/92cd9441d21db6aeb933b3336db3f27b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/822554c976f115406053b852c392360e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1cb403fc45d48bd492c50e167f7df6bc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/661b8fc3c734e1b4652739077c5be979-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5743777b70b7637c293c25e31e9dcc13-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d09d0f2e504e08724a89a65948106bda-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/83292fb0582b5b7c5a08f489eb625531-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fad372358b2330cc68019664dbf74b52-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e99c07a30f53c4ee29263ea97f33257b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/22b731802211180dfdc17d35d3c12f0d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1425cd2afe0e01967439bff1f2707b9a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/27a022705d22ca55816f13b36180004d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1687d6486435061f765df1b81ffb7c92-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d22d47b16d8cfa0ddb97d60152133f4e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5b970f33a0fbc62922c224fee2b9dcb3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b12e5656456fffc3cafca3f6ffab2770-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dd9511dc697431e9697e5a3a8b3d0e31-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0ad9fe21c799db8656411a415099e42a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2842813c5b0e2cbcd45d45b42a7406a6-cc_ft_1536.jpg,24 days,1680,85,New dishwasher|Bridge views|Water views|New recessed lighting|In-unit laundry room|New banisters|Master bathroom,"Located at Shorehaven/Harbour Pointe a gated community in Clason Point/Soundview is the New Home to the NYC Ferry! This Second Floor Walk Up has hardwood floors throughout New Banisters installed on both floors. Upgraded New High Energy Efficient Stainless-Steel appliances, New Dishwasher just Installed, Kitchen has a back splash finish. As you leave the kitchen/dining area you are leading into the beautifully designed living room. New Recessed lighting throughout the condominiums on both floors gives the place a beautiful ambiance. In-unit laundry room, central heat, and air, plenty of storage throughout the home. Huge Master bedroom with Master bathroom and your very own jacuzzi bathtub. Water views from the front of back of the townhouse with beautiful Bridge views and Manhattan Skylines. Shorehaven Clubhouse offers a Gym and Playroom for kids to enjoy, an Olympic-sized Pool. Additionally, there is a children's pool, playground, basketball courts, and a tennis court, not forgetting the Spectacular Vies of the Manhattan Skyline. Enjoy a morning walk off the Esplanade with your family or pet. This lovely 24-hour gated community overlooking the Hudson River is conveniently located close to public transportation Bx.27 and 39, Bruckner Plaza Shopping Center, supermarkets, restaurants, and all the Clason Point has to offer with easy accessibility to the Soundview/Clason point Station Ferry that takes you into Manhattan... Additional Information: ParkingFeatures:1 Car Detached," +2056147830,455000,,143D Edgewater Park #D,3,1,https://photos.zillowstatic.com/fp/f61598ac097acbcd72e782464e4b7adc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/af91f4cb261d03f6ae16539325281d4f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/136b690d97474909a8801d6ec9283396-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/204b34cc21522d43669670d6e19fcccc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/76884087f1643e035a77e827e0bfaa8e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8fb86af9bee83394d6f517c6b29da9ba-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ae94e6ffe1620c472f867f770e967ac5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/32e8e7e52237ff5db2161d8b219c612d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/917cc3ce1b029fbf4b06f0b58cb33758-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/33a9598dcb8f496b090362b6c40e1ed6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/89728c12011d42b23d35b3eb33ecc943-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fe9f8baf2d3f63e3a76d2a0259a04605-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4e8adb3988a1c1d4459d2df6f24cd829-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6f265f5148ed627855e0d8a7fc55dfb0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/20e003007775cb15d366cadcd86ab028-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e739103d35d41314455bcf59b272b0b7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3c2816c673e01797fe0711824d2ef2a1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/01b5bf45f0fdae4891fa105b9c2d6f28-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e265bca28ec6d5d82478af3ea50d6e82-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3db0dd07914ba62d9d79cc1be0ed1beb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d4389302a748a5f4e3bcef3590f857fb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fc784e0eb5a5dcf8054bb64c2f240265-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0728ecad39625c622a510a80e237f076-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3213c2020726b2aa282f6020ca344612-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9fb2ce18f679df551ed6ed96b7acd349-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/51482515d7692db8a26cea25154e6cd7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2de2d77c0fc0fe67304a9ee613fa4e38-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/19bf1554df6a36ef6495969d63111613-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fbf57bb5fd8bd615d33cf24aaa802f67-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/16f9c2e05cee4465dfe8efd0b188f83d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/721058f43778eb533c95a514f697091d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b3b76c5be7f6aeec7c2dd95cdb624f31-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/17345cda98bd6759648df62d9bf64168-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e1523140149baa9c5fb6138994107b03-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ffd1013c30ddc7dcb23de6f0f972b74a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ca17a5d86152f96e6501e7d99e7e7be9-cc_ft_1536.jpg,575 days,729,25,Lovely vegetable garden|Walk in closet|Stainless steel appliances|Cathedral ceilings|Corner oasis|Back splash,"This detached move in condition corner oasis is nestled in the Edgewater Park Community & right across from parking lot. Layout: Front yard & side yard for entertaining & BBQ cooking plus lovely vegetable garden. Entrance foyer, Living rm, EIK with stainless steel appliances & back splash plus fits two chairs for dining, Dining rm with built in cabinets for plenty of storage, 2 BR'S (Jack/Jill style) & full Bathroom. 2nd floor: Primary bedroom with cathedral ceilings & skylight (can put 2nd bathroom) plus walk in closet & two add'l closets. Basement - additional storage, workshop area, heating system & laundry -with access door to yard. New hot water tank, 2-zone heating, new roof, electric, Anderson windows, Sun Setter Awning with screens & lights & outside storage closet. Enjoy the many amenities this community offers: Beach, Security & Cameras, Playground, Track, Basketball Court, Fire House, Deli, Corp on Premises & Express Bus pick up & drop off in the community & local buses." +443237090,1100000,1965,458 Swinton Ave #1,7,4,https://photos.zillowstatic.com/fp/ac5bbbc3117c74d6827208967fe6d768-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fc1a728b6d670b19baa761ab855fb911-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/72926ddb44cad433fcd5013b739ea995-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1513c8527629dab612a28cb6ce8139e8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dbab4a097069e434f98d6e97f0daecc9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9f70e655c050e748f7b7a235ae62ac14-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/eb14122266d2043e53b58d73a542115c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ab531c465c09879f9279c1e6f5c9644f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/526c8a41c5c03ab7b2b150ac1cb580f7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e14de111927a254faf1f35c722024a69-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/61e55bca8de037a7de1e7443dca506fd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/222c73d5891bfa136b700dfa7da3813a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2ff01777b5c18cbfa4b916e96c51a350-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c158e1a7e9e707dee8e8ae65700aa1e9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ee9d4678a45a3b340083fe5eff1701d3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c396a97446524d0a41dfc6a36984d943-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/222604a1831bc663941ab748e00de9f2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3c8bb9224bf3a7addb5fcb07dc1f53c8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4d5f83ff7507880d71403fde94852458-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6e9fa5b175b27b3a7147f961d1595921-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f2124b1ec26a5de3d4b4ad16ed22d0a3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fb51bf0bf10f5087add29cb2264994d8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d45127397bb4fa85e45bade634c2075d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5cd1ed769e10bda5312de109a0856948-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/22f107182e16f9955bc89f9b98af607e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d9250e8bb3d2863fc4e0ebd05b079a7b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b16c8f997d87972476a3bdc9a1685805-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/49cacb4b7b5c0fb05fdc45bc48e89abe-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5ce116af9ed261e276ebe0d7b54ef0fb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/14b7668218f5d2013d36c2af1526d819-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cf2ed58d36170fd78dbfdef606d3225f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d15186605c9f7fe558c27b7a52520c6e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/07aded421357ef5f65e28bff6cc2d20f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/22c24b560254aa943b0bef4881912376-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0b35992f7b7d891910a2361b14bd9c63-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a64238fe107307dfb92146ab6f157e73-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0cccb2c4dcd00e6cbf99443456006846-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4e75520f42d01a274f33654089675d19-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dea91aee5e3bc7fe504bd958d44678dd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/adbe8a074688b36d158be7e075a5066f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/997346deb48f7b027756d7dff1ad52ad-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e07ef674113c3fab9d38edd4e3c550fa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/994c7008453c51f76db42739ef98cff8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5d859d866a105218531155cad88a2cb3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f3e34651b8f3e2ecb7f30106d050f42e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/65e8710a1e6ad4a31d7e45eb0fe61925-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0b3388763f543221d6f1bc6a414e28a8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/82f9397e08ae46b682f7b8a1a3cee0df-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e7b6c6320b7e761ffe55dd1c9996288e-cc_ft_1536.jpg,81 days,780,37,Tree-lined block|Full finished walk-out basement|Open floor layout|Private garage,"Make 458 Swinton Ave a cornerstone of your real estate legacy! This well-designed legal two-family is comprised of three independent units. Two identical 3 BR/1BA units feature a classic floorplan with two of the there bedrooms facing a quiet area in the back while an open floor layout in the kitchen, dining room, and living room presents a great flow of space. Ground floor 1BR apartment features a walk-in entrance, still right in - no stairs are involved. A spacious sun-drenched living room in this unit makes it very appealing to a potential renter. The full, finished, walk-out basement is accessible through a common foyer thus making it easy to use. Very convenient parking is located in a private garage on the premises as well as in the driver. Located on a quiet tree-lined block, this rare find is only steps away from Throggs Neck commercial corridor, featuring famous NYC eateries and all types of shopping. Quick access to Manhattan via Bruckner Blvd and NYC Ferry stop at Ferry Point Park. The property will be delivered fully vacant, start building your cash flow on day one. Call us for a showing today!" +418964161,699000,1948,1189 Morris Park Ave #1,3,2,https://photos.zillowstatic.com/fp/60f2552f33705fc895d0c8af56da33c2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c5cbe89234d8f63ccd4ea1d29b226c58-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3d8e7ddda82f86996d3e37a9d2f290c2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a0896693c5afca142d4ca8abfe13e1c1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4de59b693e5a9982b66151b15152e6fa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d07a10ee0f1bb480220b9579cdd1bbd8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/33fdd8820ef08ee68de28d89ed9fc85c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0da2b1dd72723d0f7c8edf6b8de9f6d0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fe3d8f2c5777824cb958c986ddae7a78-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e75f692b75e168e9aec8010e599b2a83-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7021b1af31d92c142dfc9ec507e0e0ff-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b916def81751904bfb3d240b81601afe-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/46d020c5f946d0b593acb71683976f6e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/69d56e17c0f6adc550d69fca26324ed7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c54ee68e28e947e7ff1944fa98c505a5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/893ccacfc29cd68e9db7e4ad30fdb1a0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0aab8e733575efcb3bb41a0e8d87e2a6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1011ee0197ba835e5eaed98ecdd1c5cc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d94c9bbe2b5f32cf63accfd8f67f4406-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ba793a3fc7777e1e53696d33f363bb02-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8c20c45f75037de911abcfb63d9f857a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7cd84397a83d2e93aa36ab43833228c5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/532859318bc0a664d447c8cbf4666ca4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bbfd74d0f7d9e4d84533462f57fab0cc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f6e4e5d3e52ce08fe4b30e86363867e0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/96fd4d03be6938d62535576afbd8cc5b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2999864166e6122ebeda8c2f31806250-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6275f15192d8fdef93f49ce1797d22a6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/51ef0050d45fde94d579a50a961d125d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f13f69f597b1bbf1c31e49e9b9373ef7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/001e61b4618a5d3777ecd13f8cf7b505-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/006ddc97c4f77d722ebbc807bbe584e5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/563103b4f218192473a5977443f5cd18-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3ecfbe0a98712e973743437e11eb02d6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f578a01a0c6f867ad50b805271d27397-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f00828035a3504caa162fc801b89a2e4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/485aeda8c149648e87ddd1b1dabfe96c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dbfe38b0a5d7f6bb9401bef606ed5e21-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d62cf904fef3da6840987d4c137a0a4c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e6f27fcde066911e92e8bf32b9fbce66-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/96652e184413b8859f249233bd0eaa48-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a45573e8b2168e82e13e79f3acdb999c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ae921f445176393c1f8e161ab5c93ca6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ab5be7c93f1f900c683afd8d8f1e31a0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cffbdb086d278317b382f7eef104b79c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fb8c2a914e55c609c2838cbd8845ed15-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/daef20c2d2c69bb239a6fc070d4a6ff6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/44abdc96681ca662a61563fcfa7aa8d7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2b3b0aa716478b345f07f9f08fa55241-cc_ft_1536.jpg,206 days,1529,44,,"Check out this well maintained single family house in the sought after Morris park / Indian village section of the Bronx. Walking distance to Albert Einstein hospital and Montefiore. The property is in walking distance to all transportation and shops. This brick semi attached home offers 3 bedrooms, 1 full bath, hardwood floors, great size bedrooms with plenty of closet space. First floor offers a big living, dining room and kitchen. Second floor offers 3 bedrooms, and 1 full bath. Fill unfinished basement. Boiler was changed a few years ago, and the roof is only a couple years old. Give us a call for more info." +29854467,3795000,1853,5247 Independence Ave,9,8,https://photos.zillowstatic.com/fp/d2f36cf2dd01bace288ef583dd05782b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/35b6ecbeecab3357211a66c3f2767162-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1bf017053935b64a61c92b7a6ecc5b67-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f9431122835c6aa5d80ce40d2f6919f7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a25f3cb0a69b3690b331369af2cc6d99-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7067c41f39df926f971719ee213c666d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f612f1161691139b81e9c03392fd7583-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a35cf6caf93e5d9278e90352eac17fb6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0fffc4f6cbd420695d4cfea109f7aa89-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/abbc958835767b739ed37f85083bf87d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0245080eae823421a387bc08e76f7c7f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/01ef81ad21021f00e7459aeea4a0c501-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5aa81249099a368649030d94018fc1e1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0b244d3968cd820236e1e5942506f84c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/34e6cf07bfb0622cc86f279f6a018528-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4490372fcf5d9fb83e3980e761cfa6ac-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2b182ce44a0b6b7031bc6a0389730900-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fd926d12f0ac769ea251ff653bff9baa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9c5d55f0fb2eb86998d2b16c837e95b6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/df312f4732289312ebcc408abcc6dd75-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4572adb498eace6518e7dd85c0de6892-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/31c0356ee1cc6ed1e447846d21c891fa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8cc6d03cbb7f800dec181c78eb963f28-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/46f0fe01ba0817aa9084f3e3b46d824b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fb1534bb5eda7628c8f90c79891ed246-cc_ft_1536.jpg,99 days,1489,79,Wood-burning fireplaces|River-view terrace|Colonial revival enhancements|Spacious deck|Beautifully landscaped parks|Oversized balcony|Luxurious master suite,"Discover a rare and exquisite “Gold Coast” estate, nestled in the prestigious Riverdale Historic District—one of the few remaining neighborhoods in NYC where grand homes are surrounded by lush grounds. This property, the Henry L. Atherton Villa at 5247 Independence Avenue, is among just 34 distinguished residences in this historic enclave, where even a young JFK once resided nearby in 1928. Conceived in the mid-19th century as an exclusive “suburban summer community” by affluent businessmen, this magnificent estate showcases a stunning blend of Gothic Revival architecture with refined Colonial Revival enhancements, completed in 1910 and 1914. + +Spanning a stately 10,000 square feet, this impressive home offers 9 bedrooms and 8 bathrooms on a serene 0.61-acre lot. The exterior preserves its rich historical character with striking features such as two chimneys, gabled slate roofs, elegant Doric columns, and a porte-cochere. Inside, the exquisite original millwork, gleaming hardwood floors, and generous windows exude timeless charm. + +Enter through a grand open parlor with a fireplace, once used to greet guests in sophisticated style. The first floor includes a formal dining room, a well-appointed kitchen, and two refined libraries with bay windows and fireplaces. The expansive living room opens through glass doors onto a stunning veranda, offering uninterrupted views of the Hudson River year-round. + +The home’s split-level staircase leads to 9 well-proportioned bedrooms, thoughtfully arranged for privacy. The second floor features 5 bedrooms, including a luxurious master suite with a river-view terrace. The third floor houses 3 additional bedrooms, perfect for family or guests. Several bedrooms boast wood-burning fireplaces, adding to the home’s grandeur. Enjoy breathtaking views of the river and Palisades from the spacious deck and oversized balcony. + +The Riverdale Historic District, designated as NYC’s 54th historic district by the Landmarks Preservation in 1990, is home to notable attractions such as the Perkins Estate at Wave Hill. This area offers beautifully landscaped parks, winding tree-lined streets, and an array of cafes, restaurants, and top-rated private and public schools. Located just 15 minutes from Manhattan by car, subway, or Metro-North, this exceptional estate provides a seamless blend of historic elegance and modern convenience." +117451332,1645000,2008,129 W 123rd St #3,2,3,https://photos.zillowstatic.com/fp/eaf78e5ed8ac038cc46613827ef54d31-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3b3bd3cd57788f25430ee25bc02f5fa6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6a5187babaae5f57b012ec742211b65d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/69f226fc9979f303f0d237f50f87d8a0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4961b067cb0c5b966ad8f62211d257cc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/834b3b0397a79ea70a8124156390c7a2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f45134383305f983bc57c04a45c0f52f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e1024de45808bbf60b5e8e641afe8a90-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6ea03baa58221f821453593b94cb378a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bf502fa10908769beefb7c07b1c90c93-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/95b5c6ca0894865614d2d15617fc280b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d82a7d865a26f0d5ab275abb8b31ea31-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/94d08cf15cb188ceb873cc7835b53172-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dd429b17f04d77d6971a7124cff7db28-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dca9e54022df84af1057eff2c5423ec9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3ad64a9e6b048ff6eb1be2b2297aa85a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9e87708e293561ca7e3f9300bddafb74-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/badd63b5c5ee5a03f112c0eef002c276-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bfd26fc319e0ba2a51f8a5b080e2628d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2007932f74dd4526a5f1b2a1866c87a0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/538ed0b3310c7d93703ead7daad6fb95-cc_ft_1536.jpg,4 days,164,8,,"Stunning 1,715 SF Loft with Private Elevator, High-End Finishes & Private Outdoor Space + +Welcome to this beautifully renovated 1,715 SF loft, a full-floor residence with direct elevator access, in-unit laundry, expansive south-facing windows, and a private 100 SF outdoor space. + +From the moment you enter, you’ll be captivated by the chef’s dream kitchen. The 16-foot white quartz island features a built-in seating area at one end, comfortably accommodating five stools. This one-of-a-kind kitchen includes: + +- Viking gas range with Miele hood +- Wolf induction range and hood +- Viking oven +- Wolf Professional convection oven +- Sub-Zero refrigerator +- 150-bottle Sub-Zero wine fridge +- Gaggenau Barista built-in espresso machine +- Porcelanosa backsplash +- Custom cabinetry with pull-out drawers, glass compartments, and a built-in device charging station +- Kohler touchless electronic kitchen faucet & deep kitchen sink with --- Garbage disposal +- Bose surround system with SoundTouch Amplifier +- Stylish pendant lighting with recessed electric wiring in the ceiling + +The living and dining areas flow effortlessly into the kitchen, creating an inviting space perfect for hosting. + +Living Room Features: +- Floor-to-ceiling windows filling the space with natural light +- Porcelanosa-tiled fireplace +- Bose surround sound system, providing an immersive entertainment experience +- Samsung 75” flatscreen, linked to the Bose system +- Soffit lighting in the ceiling for ambient lighting + +Dining Area: +- Comfortably accommodates a six- to eight-person dining table +- Juliet balcony with new tiles +- Oversized chandelier with recessed electric wiring in the ceiling + +This floor-through loft boasts two spacious bedrooms and three hotel-style bathrooms (two en-suite) with deep soaking tubs and Hansgrohe fixtures. + +Primary Suite: +- Spacious enough for a king-sized bed and home office area +- Custom walk-in closet +- Spa-like en-suite bathroom with: +- Hansgrohe fixtures +- Radiant heated floors +- Double marble vanity +- Deep soaking tub & walk-in shower +- Soffit lighting for reading in bed +- Private balcony, recently renovated with new tiles, water spigot for plants, and a BBQ setup + +Second Bedroom: +- Comfortably fits a king-sized bed +- Large closet +- En-suite bathroom with deep soaking tub & radiant heated floors + +Custom Laundry Room +- In-unit laundry room, custom-built to match the kitchen +- Bosch washer and vented dryer +- Ample storage cabinets & shelves +- Deep sink, folding area & clothing rack + +This boutique condo features only eight residences, each occupying an entire floor—meaning no shared walls with neighbors. Additional highlights include: + +Rooftop terrace with stunning Central Park & NYC skyline views +Virtual doorman for security & convenience +Central HVAC & radiant bathroom heating, both included in monthly common charges, offering significant savings. + +Located in the heart of South Harlem, this home is surrounded by the best the neighborhood has to offer: +- Easy transportation: Close to the A/B/C/D & 2/3 subway stations, getting you to Midtown in 15 minutes +- Supermarkets: Trader Joe’s & Whole Foods, just two blocks away +- Outdoor space: Marcus Garvey Park (including a dog park) is just two blocks away—and yes, this building is pet- + friendly +- Dining & coffee: Around the corner from Harlem’s top restaurants—Barawine, Settepani, Archer & Goat—and great + coffee shops like Pastitalia and French Pâtisserie" +94641563,7500000,2009,5000 Grosvenor Ave,7,8,https://photos.zillowstatic.com/fp/c4d64816cf1a1ffb49b232c9ca64c4bd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3742e51f8656a22717982659c0b23e0d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1851493e9f9d12595649dd882ef4ecb1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/05dd9475afce9aa1b7654c950d47bc5c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a0cd0d05d7eb43ff1444d9ffed2278e9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/db2a1977b77979abdcc15cbbd230e22b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2a37d1bcb9dc93dc8ab9a68bbac6d94f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c4078764933f30e397a1cd370f218705-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1d1a8426aa7523d33c5314deb2267f16-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3d8c54c3bd4a283fd317bf11f5339808-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4bdca6912a67a009083950c75f722d7b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f169fd5362fc0600092b8b695f21dd09-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8ae65a92cdc1350832e3c2d537595d15-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2aa9ab1ecc2eba23a132086cbe582d32-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/39c0684a7354ad5a4c7e8e134fa4dae8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9e1af938b5cefe9eca810affbea1b953-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4b21011dd6bad4dbcc8643377e0642df-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0ba1f2687902d988591610652abe4340-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0a387311cba62d3ed951bfaa65cab226-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7faf534b969354b1ff259ccd167ab969-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/41c5b3f52aa3e53b29dfdd336ae1e353-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f5ec38854d19db093b4308c04af8555f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3c40612b1860d153610088011f32a8d2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/98de2a8a673f04897368afff724ab2ee-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/30a83c65e1ca3a37ada98b67db61f9ab-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a88cd13799aa74ba0088002f483b79ca-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9da89530801daef804b3728ea0d541e8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/eca88fb9551d6f7486ef6763a770268e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5eccc7e98159ae2dccbd895517d3de11-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/50d94ded1e9323287dbc60532e74fa21-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/94183aa0dff32be4b37cf02e80d3c01c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/588bb3c9c95f6751fca6de9b36ff865f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/85aa43886dbc06e4773b6819d489d748-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fc5e3f0cf419f73e3adddffc03d794ce-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1112d15e825c2291f8816298dc37dfaa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/983bd8c9df11c2882a844ccefb0d4c11-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/835c46b0dfc9034d291ebc621949be4d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e4d117522ced0ed2dc011a14be982ab8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/212b1bf261bbe771b55bfe11e1cb4ab1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/34dddfad339ab6a4df7f8324f533029e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cce624211ee10f5135f22420a298e4ed-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/faaa03d8148528031b5890ee53280bb6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b8c0f784da8a2d32871efacc5954513e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/74ece2b6b16e0479ea17e2a571ba1dbe-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/df85f17bbd1e022dbedcda28a2597617-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b8010babe630b48204c45833d2829ad1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c30bd846cf74a297f695fdedc0366449-cc_ft_1536.jpg,86 days,2103,116,Walls of windows|Columned entry porch|Large level south lawn|Brick patio|Inground swimming pool|Private sunrise porch|Stone wood-burning fireplace,"Exceptional & Grand 7-Bd. Shingle-Style Mansion with Pool & Large, Level, Grassy Grounds + +This exceptional and grand 7-bedroom, Shingle-style, mansion has 6 full and 2 half bathrooms and was built in 2009. Extending over 14,000 sq. ft. on four levels, it enjoys exquisite details and luxurious amenities, including an inground swimming pool and large, level grassy back and side yards. + +Set on more than three-quarters of an acre, the home, designed by Robert A. M. Stern Architects, sits along a leafy street in the exclusive, private community of Villanova Heights, adjacent to Riverdale’s Fieldston Historic District. + +The house is graced with a columned entry porch leading to a mahogany front door with glass sidelights. An impressive double-height center hall connects to a living room with a massive wood-burning fireplace, walls of windows and glass doors out to an inviting wraparound porch. The formal dining room with coffered ceiling leads through a butler’s pantry to the center-island eat-in kitchen, which is outfitted with marble and granite countertops, 2 sinks, 6-burner stove, 2 dishwashers, built-in microwave and warming drawer. There is an open family room with a gas fireplace and a door out to a broad and deep back porch and steps down leading to the rear yard and pool. The main floor also includes 2 powder rooms, a large office with pocket doors and a mudroom with a walk-in closet. + +The second floor has 3 en-suite bedrooms, including a master suite with a sitting room, fireplace, private sunrise porch, 2 walk-in closets, master bathroom with radiant-heat floor. There is also a 2nd-floor laundry closet. + +The third floor has 3 additional bedrooms (one with its own gabled terrace) and 2 full bathrooms, plus a windowed office/storage room. + +The finished lower level includes recreation, fitness, laundry, storage and powder rooms, plus a huge family room (it’s 27 by 45 ft.) with a stone wood-burning fireplace, oversized picture window and glass doors out to a brick patio and large, level south lawn. + +There is central HVAC and an elevator with access to all floors. The roof is natural slate. + +The private multi-car driveway leads to an attached 3-car garage. The property is a corner lot of approximately 0.88 acres. + +Conveniently located for well-known private schools (Horace Mann, Fieldston and Riverdale Country School), the vast greenery of Van Cortlandt Park, and transportation to Manhattan (including express buses and the No. 1 subway train)." +337631961,299000,1951,3840 Greystone Avenue #2S,1,1,https://photos.zillowstatic.com/fp/d52b77bdf515c34cd8bab82e9475f016-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/25d85b74eb8467ae8a5ef661f0a32ea1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e32d32b42b45d70f601847248a981b1f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9d66712fc38dd64701fdd0cb2f30da5d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/35a2fb50a9a50da10fe0b1172de28dfa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7ddb1d7596a51a090998e0a1f6da6e92-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f38e4020ea4c7ddb57a0c90c6f01939b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a3b4c9716cb82f96dac0541b27269b6e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/621e7be208e6008a219437c2ea72a0c1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/16fb8306077ae808cd90f21efd950407-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f4d8ae64e47391eeecbd0f4c1b6f9860-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3567e709d2ac2d7a284325629ac57087-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d553e37d937fea6569cb72869c7d18be-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/04a3ef6ab0973dce331fa227b8f6bb7e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/783d95badd849ccccab69677f2f4ca9f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/daee20eae035e86c849547cf70b47e79-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7a3315a57f247a1321dddcbf82a6c812-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ef7427f7d34c01f76e6873d9b39eef39-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/64f33a9828036228798e21606e3503a0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/10f5240c20d38a9407939b4e95587095-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1850bd60e9ec00923d5822335e131ac7-cc_ft_1536.jpg,43 days,1279,99,Stainless steel appliances|Brand new windows|Ample closet space|King sized bed|Tree-lined streets,"Riverdale New York only 15-20 minutes from midtown. Near Fieldston Private community including a few prestige schools including Ethical Cultural Fieldston School, Horace Mann, Riverdale School, various Yeshivas and The Manhattan College. Restaurants of various cuisines around the corner, including the post office, dry cleaners, hardware, pharmacy, cafes, pizzerias, bars and gym. Take a leisurely walk down the tree-lined streets to the playground directly in front of the building, Riverdale stables at Van Courtland Park, or to one of the many locations mentioned above. Nearby transportation includes the subway (#1 train @ 242nd St station), BxM3, BxM2, Bx7, Bx10, Bx20 and the Metro North with a shuttle service to the Spuyten Duyvil stop. If you prefer to drive, jump onto the Henry Hudson Parkway, Major Deegan expressway (both are 3 minutes away) to Manhattan, Westchester, Queens or Brooklyn (south, to go onto the George Washington Bridge into NJ or north, towards Rockland). A pet friendly co-op building with an attentive Superintendent/General Contractor and a handful of porters keeping the building well maintained. Enjoy a clean on-site laundry room with various machine sizes to fit all your needs. Additional perks include a storage room for bikes and personal belongings, elevator, and a parking garage (wait listed). If you are anticipating a package and not home, be reassured it will be waiting for you in the package room. The building has a connection to both Verizon FiOS and Optimum. The building finances are impeccable and are available upon request. Light filled, well-maintained 1 bedroom apartment with stainless steel appliances. The bedroom can easily fit a King sized bed and has ample closet space. Brand new windows. Come and see for yourself!" +215954720,204900,1964,2390 Palisade Ave APT 4K,1,1,https://photos.zillowstatic.com/fp/aac5c4d06f226a7a059156419abf2d23-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/caba6b6b3bb8eb6eabf0e116d377ae3b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/731f2f2e195114d89af23831cd785449-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/373f5be3e006e76bb0499fb8368088e4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7f2a426b19a95ad38c63fd032c369467-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2a699780d34f515b8d0a56b27b60ec76-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e1043f24484c1649a08fe62e46ec70fc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/20347ed50444f7ca8538281da7b69851-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d02a75ef75563b4f501b4fd56c4e2018-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/37e8f98d08509902518850996801f361-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/393a5bcf4872851273cfaf9b7c94ca7a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/03cba720d307ce54d4b10934ec99f4f6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8713032bafd3dd6e0a71e349e4f38406-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c7d42478bf9c8ef242b2de5b58f1bb2e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7211eb8935dec9bc12f43c1c085db183-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/71f1dc892a99b54fe0d4549a962a4c6a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0bd56d96e1ecdf2861d342d47d0e0b36-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bd9a376736aeb2bab80e990f24029f72-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bec6faa53c95dd35df33d83a76e44c0c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2f9d2072628d06650e7d8295f8d9d3a0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7095c2d1f0c4ba09d0e9fcf2d6b9c35c-cc_ft_1536.jpg,795 days,394,12,,"Located in the heart of Riverdale this 1 Bedroom features a generous size living room, a fully equipped kitchen, a spacious bedroom, and a dedicated alcove dining area (bonus space) that can be used as a home office or guest room providing a comfortable and versatile living space. The unit also boasts ample closet space and features hardwood floors throughout, amazing sun exposure. The building offers a range of amenities that include seasonal pool, 24 Hr. Gym, Laundry Room, Storage, Bike Room & Parking available. Short walk from schools, public transportation, restaurants, shops, and entertainment venues. Located just steps away from Spuyten Duyvil Metro North Train Station, 22 Min To Grand Central. Don't miss out on this opportunity to live in the heart of the South Riverdale. Also, available for rent. Contact us today to schedule a viewing of this incredible Jr. 4 unit." +331449456,140000,1926,1372 Shakespeare Ave APT 4C,1,1,https://photos.zillowstatic.com/fp/6067321cf80773e478d84b467b12428c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/085c5b245f1c3a6a761d351e0cf22b3d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7f03bb42e239a956b7e2b92fd9e02e25-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/275f6a8e697b2b55e098a95d6809d71a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dcc5337e85da689a2344459c85ed978e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bae230aa4e78425c834bc9f8968af661-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3553aa8dd7145dae5f1de8dc227bfd22-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5802dd3b8ce26ce6752e8ee20efac09e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3067362c20d58919c8719e07385c3a7e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b76347203870f10e2f3adbfb49305490-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d094da296d1f59dd31163c7eb06ce6e5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/347eb731825dc9fc47e65b2e1ddbc508-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6a525afb3dc8e26dd7448bc1836bc8f7-cc_ft_1536.jpg,1 day,247,13,Walk-in closet|Thoughtfully designed layout|Gleaming hardwood floors,"Welcome to 1372 Shakespeare Ave #4C, a recently updated 1-bedroom, 1-bathroom HDFC co-op in the Mt. Eden section of the Bronx. Offering a blend of comfort and convenience, this well-lit unit features gleaming hardwood floors, a thoughtfully designed layout, a walk-in closet, and a renovated kitchen with stainless steel appliances. The unit is located on a 4th-floor walkup and requires primary residence; sorry, there is no subleasing. Limited financing & first-time home buyer grants may be available; eligibility required. Own for less than the average NYC rental. This is a fantastic opportunity to own, located near public transportation, shops, and parks." +352286586,989000,2024,3167 Ampere Avenue #A,3,3,https://photos.zillowstatic.com/fp/e7eb123ea269222a838448df6f9ff833-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/34eb8e71c1ca3f5541a73475e620a05b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b2d8d7cfc301d5a34cb405a90a0ac6ca-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e1bef4b2dae1b4c11077035c3d810d01-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b05a1c1db9e541c9fff061a924dca9a0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b791e38a9b81d272d8a78d0544661dc6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e9cbe81ad6e291e403976a8a273f93a2-cc_ft_1536.jpg,258 days,401,8,,"Additional Information: Amenities:Storage," +29784373,850000,1901,506 E 183rd St,7,3,https://photos.zillowstatic.com/fp/209d82f0a2c5e9e60c7276f0d4a3d738-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8acb0bc63696f5472f21975e04df2ada-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/47945e698a286b84d1a380ec92b743a4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bdce714072599a9338816b662df6a207-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/55151009f222306a27b67a6fcc9a899b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6703ea78b463d06ad958234d69a623a0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f8bbfc9914b57bd12eb1d708106f1abf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/52e6e246b1d6a507c91e2f78981d16e3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/69c3756a919c19b52e081f1fb8d64e38-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/aad332e4131c617d734e48afd8576a6a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5d9ab6a25b7f9820e1ee1ec5f05b9b4c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fecac44f20f1d56546516c090b6d5dd6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f837b4acfb6227e5abb57b877b025dc3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b320cac7d1a3cc1071c5f0b512cdd93e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/136b80a33ddaf6032000edeb081878fe-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d7bf5a71f423acc3e97ed842e75eb8fa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c13f07ceeb4e7f684e0fef9ac19cd727-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/405957a5493f4c94e8b40e30b11ab762-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a5d0e0823eedc824e4860694fafe0d8e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6c48e627337c3a347f2f545653b117f0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6e97adc49b771f22a2490b49340604bc-cc_ft_1536.jpg,267 days,676,35,Timeless charm|Open floor plan|Contemporary design,"Welcome to 506 E 183rd St, your gateway to refined living in the exclusive Fordham Heights neighborhood! This newly renovated 2-family home is not just a residence; it’s a testament to modern elegance and comfort. Step into a world of sophistication as you explore this attached gem, boasting 7 expansive bedrooms that redefine the meaning of spacious. Each room is a sanctuary of tranquility, perfect for creating your haven. With full bathrooms, convenience and style harmonize seamlessly, making morning routines and evening escapes a luxurious experience. The attention to detail in the renovation is evident throughout the house, with a careful blend of contemporary design and timeless charm. The living spaces are bathed in natural light, creating an inviting atmosphere that beckons you to unwind and entertain. The open floor plan ensures that every corner of the home is utilized efficiently, providing both functionality and a sense of fluidity. The kitchen is a chef’s dream, equipped with top-of-the-line appliances and stylish finishes. Whether preparing a casual meal or hosting a dinner party, this space will surely inspire your culinary creativity. Location is key, and 506 E 183rd St offers proximity to the best that Fordham Heights has to offer. From charming local shops to vibrant cultural attractions, this neighborhood celebrates community and convenience. Don’t miss the chance to make this meticulously crafted residence your own. 506 E 183rd St, is more than a home; it’s a statement of your success and an invitation to a lifestyle of unparalleled comfort. Welcome home!" +447651114,1030000,2025,953 Tilden Street,4,3,https://photos.zillowstatic.com/fp/7ef93183d55464237a95b5afbf3e1440-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f2b868bab8e18511a2d1c4b5b4a24435-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0f500851b99f7d90df3e2574c4cfc647-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a5bfdbba1c39803066e1275ecdb83100-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ad6e39b8ae3f4af12a5bc021becec442-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/290babf1a154be84bb64aa810779e9d9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/eae53796e044d393699b58d4f36dee3f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1dbfd778a9d4669ec39f72870f2b9e86-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a1545d341d463ddf918680612ada2638-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d5b9231a7a9a68bf67c34ecb90a1967f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fa4ac8f37217a3f221026f817ea794c7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bb7a2b884fb6ae62b4f957a8e7a1edc8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b69727754864084d7fb7fc8ddefe351b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1f50ca97bded69b8d0d037bd21207fdc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ffd312da4b2bb23f5e3767fbd4de6bd7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c10431e3a2907adfb8641eeeb9b1025d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b4a5b23ab2fe238af7bf1975b1312b83-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/542e85c98c84f05549c1e81d3b4e1e4f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a2598a8bd006e94664ce51b8dfc9db4c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4010984da4a1a8a1b6e4c39b1d134423-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/053120671f5f083805c41d47cb6c54a7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/217783b840ddd7cd3eb9cba754fa0197-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7dcfbb7c98d3ea16cd2426d76f088a99-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/da1a6b01412517c2cb4adaece5fab484-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d9f846649fd622cf22227d0bc94e321c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e59fa80f0f64abeed634f094230bea1a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e29ab74663309dd0d54cf21f5db44c1b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e48bcae4b815594112dba6d5187ac80f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6fd0ce4c61ecc9520d986abb10620ec4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8fe94656cffcd6c14876124e0c77a602-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b2397a023e57239c385983fba22226f2-cc_ft_1536.jpg,4 days,671,23,Abundant natural sunlight|Finished basement|Second bathroom|Recessed lighting|High ceilings|Utility room|Top-of-the-line materials and appliances,"This newly constructed two-family home offers the perfect blend of luxury and functionality. Featuring a 2-bedroom over 2-bedroom layout, the first-floor unit includes a finished basement, a second bathroom, and a utility room, providing additional space and convenience. Built with top-of-the-line materials and appliances, this home boasts high ceilings, recessed lighting, tall windows, and abundant natural sunlight, creating a bright and airy atmosphere. Each unit comes with its own dedicated parking space, adding to the home’s practicality. Whether you’re looking for a great investment opportunity or a place to call home, this property offers flexibility—live in one unit while renting out the other or maximize rental income as a full investment. Ideally located near public transportation, major highways, and all daily essentials, this is a rare opportunity to own a modern, move-in-ready home in a prime location!" +346784856,799000,2015,68 Island Point #68,3,4,https://photos.zillowstatic.com/fp/22132ec15c05603cfe297355ab5cd914-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f44eeb174f2e5f09209bce06222a465f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/911fbbe011ad2a6f06a7b3d6d47c8845-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/42ff5d0ddc9e7cc19f00be07affe3c7e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9259690865afe93b9daed25aaff95873-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d38a8495671ec7e786d727ea9639121b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8afe0ce9a90b039e2488ea21daa99c35-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d940e1fcc8e646b3edb8432053a27ec0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fd9b52c1b201047233125e2a9d243e07-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/95d48d41beac9af073a3189d3a3db4ea-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8a4d00bc33f8d70e3067709aaf13387d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3d09022880458e1be058155b0bf936f4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a22fb640f91837f0a24127bcf8534ab6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c7386bd00c558ac43ea870c090cc0ca2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/78e1bcf605b65a56265a3fac0547864a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/532b170b3c805f1021a76ce9f6ffb975-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bc6e4153867a66db6c8046c1255eb5dd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6c5543530465f97a0347d755bfbbb0ab-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9eb88a8e236550e248be44fd4930527a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8addef9961c8ad7dcb6199cee54cdd59-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9e06a3a3fdd96348a963008306971084-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dafce750298716f1456cec7b0886d51b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c5ce95e596d31ea832df2860afd42c0a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0efab87111c08f8bb5f7a88d4d61db0d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6f77843f6048e146d87e1b526f0f84d7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/741c09943539ac50602016d2efba27ab-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0d679d5f6693dd155e433557a375d35c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/376315be1a4367323c9aa27c8b825169-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/58cc2febfb4a3db7cb0839a46632f2fd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bb600b0a31a15c9a3b9fbf487b2cc5b0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/25b95d6890551dca7d9bffed17469180-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e2f96cdc2c0d0f509209653584e8fe03-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dc4d56e344d5ec8c1fb8049fa93ab565-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4e6224c20fc7fc043d7b5daaf98957aa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c0e5d1b0bfaaa552937c13b3c1340f36-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2d4ea48a637f9c39a4874ecb36a32254-cc_ft_1536.jpg,3 days,241,16,,"Enjoy life to the fullest in this 3 bedroom 3 + bath condo corner unit with eastern views of the Long Island Sound from a private third floor 35' x 18' deck and a 12' x 5"" balcony acessible from all the main rooms. You will enjoy the year round dramatic sunrises overlooking the Long Island Sound. High ceilings, Andersen windows, full size washer/dryer, gas fireplace, central air, GE Profile appliances, abundant closets and lots of natural light all make your life better! This home features an attached one car garage plus a driveway for a second car. Located at the pet friendly ON THE SOUND gated community which boasts a waterfront esplanade, guest parking, a pool, a gym, and a party room for your use. Low monthly taxes of $534 and monthly condo fees of $1,161 includes all amenities, exterior maintenance, snow removal and trash. Easy stroll to the main street of City Island Boulevard to take advantage of restaurants, cafes, art galleries, street fairs, beach clubs, salons, and all the services you may need. Perfect to live in or rent out if needed." +29846246,850000,1925,835 Dean Avenue,4,3,https://photos.zillowstatic.com/fp/c89829c030cd4bffbe2e711ede649d27-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2bee648aebe7e01d1f16168f06795a8a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ce40367ee3396bda67614ef0c057b65d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0c96a5f2afd2353707c2cfb48eab82b0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/36bfa9c607b9e7dd88dfc02a7893672f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b982f73bee1d5f38654227181765f9c5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ba1f89ec1f239fb939234a031f8aefa0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6806c9d59a10cd268429f4ae601e006d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/76a15ceb3a0ec9c30be773e30f8b5b1e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/846e14c9712ec800379642616652efcc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bbea52d85142868a9c60e460259d50c2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/01c556d934086361df311f6d19cff7f7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f5a42a85c2a2718b263c010b32a84687-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1fe23a4dcc60ac0fe83a9f0a1e511177-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/240bc824811d56c1f6e37b9702b7bba1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f3f69598fb3c8bc04cb24adddf9661c0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/67635dd166a4a75b9aa54ee1b582d67a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/919371524aa56ca084c3cbfe0208138f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6ad65ae60461dbb413a5bcdaf0c21d52-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/740dc0e15937bd3961bfb888f4df13ac-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3e1bc85ecf3eef5b2bc830a99e11972a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fc0b3486ce74c7f2896df0abae159b47-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6ce26e292c561b49c49494c9cb7d9a48-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ebc45aaee7da072fd212f0b4ea3c496a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/23146dc274dd9683f39df66c67d5ef68-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4586770bbf90b8624fa984c608cbece6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ff0fa90506ae8b6bbf96cbefef79e678-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1fa4e7cf8feaa08213f250c7c6219775-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8fe95342400929e462f6327c657e52bc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1a5c2e6653c6fe87bfa2706767a1f5ee-cc_ft_1536.jpg,38 days,471,22,Lush backyard|Finished basement|Ample workspace|Beautiful bedrooms|Laundry area|High ceilings|New stainless steel appliances,"Exclusive Country Club Paradise! Natural Daylight from Sunrise to Sunset! This Gorgeous New England Style Gem is Perfectly Situated on an Oversized 3375 Sf with Serene Water Views of The Long Island sound! This Comfortable & airy Sun filled Home has Historic features: From The Authentic wood Floors to High Ceilings and Original Millwork! The First floor Features A three-season sitting room, Modern full Bathroom, beautiful Living room, Dining room, & updated Kitchen with Ample workspace, stone Countertops, & New stainless steel appliances. off the Kitchenis access to backyard. The 2nd Flr ascends to 3 beautiful bedrooms and Full New Bathroom & Then to the top Floor in Nautical taste a Large Overlook Bedroom with incredible waterviews! The Finished Basement Includes Full Bathroom,Laundry area, & Storage with Access to the Lush Backyard! In addition, The home has detached 2 car garage. A Must See!" +29821923,825000,1945,2555 Morgan Avenue,3,3,https://photos.zillowstatic.com/fp/2d524a7ef9bc2e5474a5ca02ac6e01b7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6449648ff1896a89ac1faf215efb568c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d8e17fba2359bdcf2ec5a325abdbc898-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/312808bb57d1c9eaf63ddf34521ab1d9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/59e910069e6831eead68aeb9f199e531-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/75a8148942053fb86fe814497f880f55-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ea258fffd887438b196ff6c5471d3841-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b40e8154e40b6398f381ca0943c30014-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4092b8d14abd7030671c036e0957bdc7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7e0af8b0eb569d20aeb97b841ef5d2e0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8fe7a565dfffa5ff2f30fac17b0765b0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/184c7f805efd8dbf7417c0a00b9cf3d3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/efacce8923d6f3b1e8644e3ee27736b1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/aa45ad2118a05ae319c51c2a4f933a75-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bc68daca20e66ea5704bea3b4c61c9c1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/19d1f6a4e3ee67e6b14efbef34e9223c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/54bc65c1a443ec7764318c324ae580ac-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8f6aacb20ab5a219d0b8a2187b802b18-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/123af7d4af621f3d68e441996562f88f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/112189ca3d394e5a68a3154ca5a7d1e4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/008e2c5602a0c2a9f46c26377e05d8ed-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e4f3171a68dc337ec05fb3283411176d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cdfdc1bf7044d3147a8e28a2bebe978e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d63d321667d8ebb3629e020aac4a9281-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/37dae4218c216b02c5d12219e88666a1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/27844ae8de4b1e565dc5881f2b39ca5d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0037d9e04df66a0b817d5569328dd2d9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/607852c9508f35bd474a351a9fd004c4-cc_ft_1536.jpg,56 days,1609,38,In-law suite|Modern features|Laundry room|Access to a balcony|Summer kitchen|Storage room|Updated kitchen,"Welcome to this charming Colonial duplex located in the desirable Pelham Gardens. With over 2,500 sqft of living space, this home offers a perfect blend of charm w modern convenience, ideal for multi-generational or rental potential. The 1st floor features a foyer, bright living room, formal dining room, powder room, updated kitchen w modern features and access to a balcony and yard. The level also boasts a bonus room that can be used as a home office or bedroom. 2nd floor features 3 bedrooms w ample closets and a full bathroom w tub and separate shower. The lower-level includes an in-law suite w summer kitchen, family room, full bathroom, and additional bonus room. This level also offers a laundry room, storage room, and access to a 1-car garage. Situated near Pelham Bay Park, City Island, and Orchard Beach, this home is positioned to enjoy outdoor and recreational activities and close to shopping, dining, and transportation. Schedule your showing and make this exceptional home yours!" +97528691,850000,1900,807 Riverside Dr APT 5B,3,2,https://photos.zillowstatic.com/fp/3b64dd66ed13cefd79721fcf76e44ed6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6b3daa555928f509caa640cf149cc8d7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/09ead353d114db84c1bc568e4a7477f9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/15ca3fc62ec6a152e492c61675163809-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/95a8996ad9deec704c1915d0f05b745e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e761a84a9f087e3886cbae058fcb70b6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/435079d4f1f55088ddf3d811e257faff-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/aa75655f286dfd29b1cd5e7d5506d391-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9fdf2ec3de05e8c11d4dd90c4bb00007-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1566b1da4a5b73ed035071f47bb77b22-cc_ft_1536.jpg,274 days,1415,68,Abundant natural light|Open sky views|En-suite windowed bathroom|Bathed in sunlight|Recessed lighting|Peaceful ambiance|Granite countertops,"807 RIVERSIDE DRIVE | APARTMENT 5B | PRIME WASHINGTON HEIGHTS +FULLY RENOVATED | IN-UNIT W/D | OPEN SKY VIEWS | D/W | PASS THRU + +Please note, OPEN HOUSES ARE BY APPOINTMENT ONLY. Please email the listing agent directly with any questions or to schedule an appointment to view + +This is a tremendous opportunity to own this serene and beautifully renovated 3-bedroom, 2-bath pre-war condo in the historic Audubon Park district of New York. Situated on the 5th floor, this unit offers a peaceful ambiance, open sky views, and abundant natural light throughout the day. With its modern finishes and charming appeal, this 1220 square feet home is sure to captivate you. + +Step inside to discover the stunning hardwood floors and recessed lighting that enhance the living space. The well-appointed pass-through windowed kitchen boasts crisp, white Shaker cabinetry, granite countertops, and stainless-steel appliances, including a dishwasher. You can enjoy a view from the kitchen into the great room, a combined dining and living area. Adjacent to the living space, there is ample room to place a dining table, offering you a flexible layout to suit your needs. The apartment is also equipped with a brand new, stackable, vent-less, Bosch W/D. + +The three bedrooms at the back of the unit are bathed in sunlight and face the west, providing a bright and airy atmosphere. The corner bedroom just off the living room has beautiful, fully custom, French-styled black metal glass doors and currently serves as a library, home office, or additional living space, adding versatility to the space. It can easily be converted to the third bedroom and can include a large armoire, if needed, for additional closet space. The primary bedroom features an en-suite windowed bathroom with a bright, white-tiled, stall shower and a large armoire for additional closet space. Each bedroom is spacious enough to comfortably accommodate a king-size bed, allowing you to create a cozy sanctuary. + +807 Riverside Drive is an elevator building located on Riverside Drive in the breezy neighborhood of Washington Heights. Laundry facilities are conveniently situated in the building's downstairs area, and a live-in superintendent ensures prompt assistance. Immerse yourself in the vibrant community and take advantage of the nearby Broadway cafes, restaurants, and easy access to the 1 Train. The Hudson River Greenway offers picturesque views and recreational opportunities for outdoor enthusiasts. Pets are allowed with board approval. An assessment for 411.76 dollars through July 2025 has been paid off." +2059020220,149000,1912,2024 Hughes Avenue #2B,1,1,https://photos.zillowstatic.com/fp/32c31d3a6d2bb80a21f6dbd552ff88a5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6559aa8680f875e8ef0d8c33d231e627-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7034d609a39ab97d599e2473b6de63f9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/687e0b8bc5b9a07ee2ab87d02ee03990-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/36ca1cc905feb15f7e1d64a47dae49bd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f61fbef8b971de4d9a3463a39e59dbc6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/475c50488b418d54417c81c2afb0814b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e711fa11a92a1441da73c68f9dfdff7a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9808f8af6ae6b7e9ec47b688ac31b706-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/99fb7637a9421a4831e32855b1986bbb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f8d54975ac587ef74d1a2d48067db072-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/61b0be3a6d292ef280dc18bfb03764e3-cc_ft_1536.jpg,154 days,196,6,Stainless steel appliances|Hardwood floors|Granite counter tops,"Welcome to 2024 Hughes Ave. This well cared for 1 bedroom co-op features a living room that opens to the kitchen with a pantry, and a full bath. There are hardwood floors, granite counter tops, and stainless steel appliances. The building includes a very handy elevator and has a live in super. Close to shopping, bakeries (with the best olive bread I ever had), and restaurants. It's also close to the Botanical Gardens, Bronx Zoo, and my alma mater, Fordham University. It's also close to public transportation. Experience all the great things the Bronx has to offer in this very affordable co-op. Additional Information: HeatingFuel:Oil Above Ground," +2056979745,99998,1953,3235 Barker Avenue #2F,1,1,https://photos.zillowstatic.com/fp/17dd91358d3e68d7a397d19356b0418d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bad7973db23b63819cdb2d4e0276a5ff-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/93cd8cb78786507c6501f4336be4aa96-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cc2d498fae2af4e55a2aa55098ef51f4-cc_ft_1536.jpg,1 day,366,19,Abundant natural light|Tranquil bedroom|Newly modernized bathroom|Original hardwood floors|Dedicated dining area|Large windows|Galley kitchen,"This bright and spacious unit boasts abundant natural light and beautifully maintained original hardwood floors, adding warmth and character throughout. The generous living room is illuminated by large windows, creating a welcoming ambiance. A dedicated dining area, conveniently located next to the galley kitchen, makes mealtime effortless and enjoyable. + +The tranquil bedroom offers a peaceful retreat, while the newly modernized bathroom enhances comfort and style. Enjoy easy access to nearby amenities and public transportation, making this an ideal urban oasis with seamless city connectivity. + +Motivated seller—offering money incentives to help make this home yours! Don't miss this incredible opportunity!" +29790520,750000,1945,110 Husson Ave,3,2,https://photos.zillowstatic.com/fp/1a5740b9ed0dab23458a28d0dfc04286-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/20c1fa7b9bddfc1f4d0803412ea3d3b2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c31cad38a0bfd4ce2c578d4a53af3c0a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/19ab173539f80ca4f25fbc45476e29a9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/eaf2599fcc296af1fceb1ed6571f2545-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a9e96c51d61362010a9eb2ce71ae11f2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/83b2a0ebb1d05c231824e6f386744ae7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/01adc7b421ba738f96eaf849ef2d4113-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8a21c40f18b3bb43def9b10c43effb4b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/63227fc7cf6d26098c3f5aa3dc447059-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/647ac3d80e37ca95ee3c4c9f5be017f6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e7e2c140624f9e252e03e3fc5ac54f3c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/103c5ba04f74f0712e5d731490acbe41-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6bfabb30344b85096474bf67307eea7a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3128cabac98845aa55744b753969897b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/72a1acce647a004a1eea3a93773d2016-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/66bfc533c77c94de6e15170941b32ee2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a8f7d4df3a8957e23cecd6bf590aca26-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5a3b05ca0f93922bd933be58d9027f3a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ae96a606324e2ee445188ad9fa17c473-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/87362c55a94e87411587ac755ed36186-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ec6855ac8315729e51dd5522e7582c5f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c8fdef100a530a1d85eb39e0fbdbf870-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5b83095306b01be5c5985ca5caae90ec-cc_ft_1536.jpg,5 days,374,17,Spacious backyard|Three-bedroom and two-bath layout|Fully finished walkout basement|High ceilings|Hardwood floors|Water-resistant materials|Raised outlets,"Welcome to 110 Husson Ave, a single-family home located in the Bronx's Soundview/Clason Point section. This fully detached bungalow-style property has a list of perks, including 2000 sq ft of living space, 2 car parking, a fully finished walkout basement, a spacious backyard, and a rear dwelling. Did we mention you also have unobstructed water views of The East River? The entire house was rebuilt in 2008 and offers a three-bedroom and two-bath layout. It is fitted with hardwood floors, high ceilings, and recess lighting. The finished basement was also fitted with flood resistance in mind and features raised outlets and water-resistant materials. The eat-in kitchen opens into the backyard and the rear building, offering limitless ways to use it, including ideas like extra storage, a home gym, or an office. A five-minute walk to the BX27 or The Soundview Ferry, which can have you at 90th St. in 20 minutes. Parks, schools, and supermarkets are within walking distance or a 10-minute drive to Bruckner Commons Shopping Plaza & major highways." +29849764,569000,1935,267 Robinson Ave,3,3,https://photos.zillowstatic.com/fp/5b2e3f1dd47ec70d7a9e9784346e99fd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ad72aefc295403e1aeee7983ec26c779-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/20f299c0be5fbe056080186561113a33-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c16771f5b475fcd996f024375f07ac78-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/05a35c960dfee1961141612128f58250-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e9fbc72d35acb456d76428bf743b906e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0cabf931fd3f3d1bc3fd796f235789d4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d111ef0837e49beef024be72c6cbfcaf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bad81c24ddb9fbd5ce4a9e039f31a5a0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/838dd7b07a2c32da76f18fc1b009ee19-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c0b32c37998a860a9fd56f04284b84e6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/eeed8be7bb2a3935a8027b944da78cd1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/81200136ca463abd1dba43a4306d64f9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2ea90ddfea128d79b0331e796cd21dc9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/26c3e17de56aff3cede6a61ed056fcb0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/448a6540fbbf8f8432958956e9228b92-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f0d22c63f554bee8b4cc4ad42fbb2672-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9a4f440938fc7a17b50a74f7e044dd5e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/907c09195b3d802dd5ac214c3d950110-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9ca24fe0df8022cc94bfacb1abd665cf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5c93571bb3a89546d67e2002dfd3fed7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/80904b48546a06146e7aa3dbc3eb4601-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9f8b04454d849aa50f716cf170f2f67e-cc_ft_1536.jpg,461 days,2044,112,Backyard oasis|Vast finished basement|Serene tree-lined block|Delightful breakfast nook|Luxurious red wood cabinets|Abundant closet space|Unparalleled outdoor dining experience,"Indulge in the grandeur of this exquisite detached single-family residence, gracefully situated on a serene tree-lined block in the highly coveted Throggs Neck locale. A journey through the white gated fence and brick-floored patio leads you up the stairs and through the door, unveiling a sprawling open-concept living area that sets the stage for opulent living. + +The generously spacious living room, embellished with an abundance of space, invites you to host gatherings and unwind in moments of pure relaxation. Continuing seamlessly, the expansive open-concept kitchen stands as a culinary masterpiece, showcasing a fully equipped space with luxurious red wood cabinets and appliances that cater to your everyday needs. A delightful breakfast nook adds a touch of coziness to this culinary haven. + +Completing the picture-perfect floor is a strategically placed bathroom with direct access to a deck, creating an idyllic space for both entertaining and unwinding. The deck seamlessly extends to the backyard oasis, offering an unparalleled outdoor dining experience surrounded by ample space for guests to rejoice in the splendor of your private retreat. + +Ascend the stairs to the upper level, where three generously proportioned bedrooms await, each boasting abundant closet space to effortlessly accommodate your wardrobe and belongings. The master bedroom, in particular, is a capacious sanctuary, redefining the concept of luxury living. Completing this upper level is an additional well-appointed bathroom. + +For added convenience and privacy, a separate entrance to the basement awaits through the back door in the backyard. The vast, finished basement provides endless possibilities for recreational pursuits, from leisurely lounging to engaging in various activities. This floor completes itself with another bathroom. + +This residence stands as a testament to luxurious living, offering a harmonious blend of elegance, practicality, and the promise of a lifestyle beyond compare. Prepare to be captivated as this home transcends mere living and evolves into a living masterpiece. + +Don't miss the chance to make it your own! Showings are only through open houses; private viewings are not an option. To stay informed about showing times, please bookmark the property online. Brokers/Agents can pre-register their clients by texting or emailing their buyer's information if they can't attend the open house together. Disclaimer: All information provided is deemed reliable, but is not guaranteed and should be independently verified." +29787342,999888,1910,3087 Heath Ave,7,5,https://photos.zillowstatic.com/fp/b31c9cc6d674dd0e9c3a79d2ee123598-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e8b0394c45b5e877ae8565eb128ac5f0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2ae3bb6c88481d2a02a86989987231ab-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7fe9f75e6230736c2eaa0f8905f8de3e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7ffefdd489d5de4d4767ff5c34c775d5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e4b88ac89b72afe0f5a33e82585c4422-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3af3b588e27b6cd9da206eafa5f8ec39-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/22031cb475305cbd509c8190c7220852-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dac02afd8021b8171cbb3619b6d12200-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7428ce787ae0d7599c5b620e60b2861a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/81a46682d3507dfe176bd6535e4e4fc1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a352583de47e49b0cbd676ee17c826aa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6aa1077156e854f72f2c711d92aa9740-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/eb8c1f5f91b886336077e05433771e4d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f9cfcc3da1eb37a0471a69ee047182f1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9ef8b4753f4084301ec35fb260ace076-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/393c9c387a555f5fb1f05c690c913288-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/54f5af9f7c8c86bd147a7020ff142c8b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/74d11760a31d6631360ab1a571a2c4e5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/eee9b9a1502cf6509c8c7003bedadd3f-cc_ft_1536.jpg,266 days,444,27,,"vacant, lockbox, easy to show. all-new renovated 7 bedroom 4 full bathroom 2-family that is 3342 sq. ft. including the fin basement with a sep entrance. completely redone from the inside & out with central air. both units feature a 3 bedroom & 2 full bathroom setup. private laundry hookups in each apartment. separate central hvac forced air heating units installed. very high ceiling finished basement with private entrance, full bath & laundry/kitchenette hookup. low taxes. prime location in kingsbridge heights / jerome park / marble hill area. 7th bedroom is the fully fin basement." +447356507,2097000,1889,129 W 131st St #A,3,4,https://photos.zillowstatic.com/fp/1ea70fb18e327b220ed524464abd4c1a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/065274d78fdeda96d1715be753dcc84b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/45672f1d7e9fef1f7e8f88de04f1b852-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1481a54fa688b551cbeb1f62ec70ae26-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d504914c6a0908989d10a4b23e6e14e8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ce93a8e5e03704de2525e2963a26e738-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d1cf998e6ec38cce73928e422b3076cc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c9665ac368e5fb7212fa9d50255798e2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/77b74ca6a9b79a4423c4ae150fc932b4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2b9f6e22252f9fa7243a916990a90a05-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8bdfd1830ab7ec578383ea62f5c6dc58-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/388b880ceadd60941a0a55b0a2e0be58-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/83749ac4d8a80003ca4e8950d382f006-cc_ft_1536.jpg,15 days,538,52,Stately harlem brownstone|Private backyard|Expansive deck|Central hvac|Serene bedrooms|Pella architectural windows|Primary suite,"Tucked within a stately Harlem brownstone on a storied landmarked, tree-lined street, this 2,400-square-foot triplex sanctuary blends timeless beauty with modern sophistication. Sunlight pours through south-facing Pella architectural windows, illuminating oak floors that flow throughout the space. The home features three serene bedrooms that offer a tranquil retreat, complemented by 3.5 artfully designed bathrooms showcasing thoughtful aesthetics and modern elegance. A custom iron entry door welcomes you home, where Italian marble countertops shimmer in a bespoke kitchen fitted with sleek custom cabinetry, a dishwasher, and a Bertazzoni stove, ready to inspire culinary dreams. The primary suite is a haven unto itself, with a walk-in closet and a spa-like shower featuring a double vanity, perfect for quiet moments of reflection. Central HVAC with Google Nest thermostats ensures year-round comfort, and a washer/dryer adds convenience. + +Beneath the sky, a private backyard paved in Cambridge bluestone invites gatherings, while the expansive deck offers a stage for twilight dinners under the stars. The spacious family room invites relaxation, with soft LED lighting above and ample space to gather, unwind, and create lasting memories. + +With the hum of the city just steps away via the 2,3 and A, B, C, D trains at 125th Street, this home is a symphony of elegance, comfort, and convenience." +29818885,1450000,1950,1090 Pelham Pkwy S,4,3,https://photos.zillowstatic.com/fp/7e11d298ec183a7075c623257064d330-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/837df6528313ffb92e80352f30665119-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d134f20f90a188552b3543d46632d1d8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/492cc40b7106945db54475a40aa4289f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fba543a4db1d731169e0c4671e3214e5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5e18c3ca5b22db044cf1b5d5fd96112c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8d7e6e26a7eb5e67c5090cd1d652ffa2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8ad2c72b90738f545285b583015e2104-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1fc890318b49ddec3762321984854ca1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f572c5918d856e9cc6fbc1ee5e7c572d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/15510834e831fe50c41ab802dc491b89-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/40fe33ae118e7aa82132607f1f9823ac-cc_ft_1536.jpg,47 days,874,32,,"Welcome to 1090 Pelham Parkway South, +This newly renovated, stand-alone 2-family home in the heart of Pelham Parkway combines style, comfort, and convenience. + +The spacious owner’s duplex features four exposures, allowing for an abundance of natural light throughout. + The first floor boasts a comfortable living room with an electric fireplace, a formal dining room, and a modern kitchen equipped with top-tier appliances, wine cooler, granite countertops, and a large island perfect for entertaining. +Upstairs, the spacious primary suite offers a generous closet and a private bath featuring dual sinks, providing a serene retreat. +Two additional well-sized bedrooms and a second full bath provide plenty of room for family or guests. Skylights add charm, and central air conditioning ensures comfort year-round. Wide stairs provide easy access to both levels. +Two balconies from entrances. +The first-floor rental unit is a separate 1-bedroom apartment with its own meter and water tank, paying its utilities independently. +An attached garage offers convenient parking, making this property ideal for those seeking generous space, modern amenities, and a prime location!" +29776897,998000,1910,446 E 142nd Street,4,7,https://photos.zillowstatic.com/fp/1476f48a08f96f3227aff8dfe843c1b3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/edeb39bb59d656565d3883e2fe3bee8f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e8a393a4b2a0475d64012da91ccf4ff5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/494b2f0ac306f7300476e446179b6eb4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7d07fb4ac66048529205e4e55c73b2b1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4173a577a30e46f1c2b531def0be7733-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/851e6a626ea24f4fb77c495c6f7bf617-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/713783021fa87e77328adf338eeadd87-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/692353002e671c5541b8c14b2acbb32d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6b496da7b26c2bf6a2cc6aa504b0e3b6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/195af3a741ffa2098c5bfc637cea6b3d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bfad40e93ee9b88f0f5ca09884934be9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/818718c43eb0c0063ca07ab49c5fd928-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/828fbcfd1af151d565a7ebf86d295aaa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1fec98d545be937a5ed19e38ff104575-cc_ft_1536.jpg,158 days,645,38,Rooftop deck|Architectural brick wall|Large playroom|Private patio|Custom craftsmanship|Open floor plan|Exercise area,"An exceptional investment and living opportunity awaits in the heart of Mott Haven just steps from the acclaimed science school. This elegant two-family brownstone features generous proportions, an open floor plan, soaring ceilings, elongated windows, and custom craftsmanship throughout. Elevate your lifestyle in this serene retreat, complete with a private patio. The spacious living and dining areas are accentuated by a striking architectural brick wall, while the open kitchen boasts a large center island, ample counter space, and brand-new stainless steel appliances—perfect for effortless meal prep. The primary bedroom includes double closets and a beautifully updated en-suite bath. Two additional bedrooms, a new bathroom, and a laundry area complete the second floor. Take the stairs to the rooftop deck for a perfect escape. The lower unit offers an open floor plan ideal for entertaining, along with a well-appointed kitchen featuring extra quartz counter space, stainless steel appliances, and ample storage. A large playroom on this level can serve as a home theater, exercise area, or additional entertainment space. This commuter-friendly residence captures the charm of a pre-war home, seamlessly blending it with modern luxury through updated kitchens, baths, and fixtures. It’s a perfect harmony of timeless elegance and contemporary convenience. Discover this hidden gem before it’s gone! Additional Information: Amenities:Storage," +119909375,1850000,1910,800 Riverside Dr APT 4A,3,2,https://photos.zillowstatic.com/fp/e98c15ab665f1880b4936044390ac9b9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dfe2f9d8fba3d168e66e5c57a8809504-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7952c44bf757081669738cb4bce6574e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/79ec83d45c4b00cb0e2cc5be9e2b1a49-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/21069c67737551d1803084f0fc683513-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1fc382a6e74865166c301733b61f5848-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b9ca86c48cf6d9d80c9543035f6a1229-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c779d322d11a72b00921ee52861b96c1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ac84eabe865fd1f63d3ff587a75afd8a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4ac9ea5470193f815a17f090cc7d9223-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4d132a2c165fd34a45c3f85045cf2b58-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/07be57eeb7145cc043c9dda2e97c01b2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0609a7d9cf47adc8ea067a50a8be0df0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ad36338ddc334369713b043a8a49f90a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a4fc0f16c044d281e96097cb6d20ee41-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/605a7abf24a6a20e3b6e1421dd721421-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0c1e45d3250ab3ea26de272d2a8d1a51-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2a3f0ba6396c5990530711c17c47a562-cc_ft_1536.jpg,18 days,676,55,Decorative fireplace|Original pre-war details|Three exposures|Corner apartment|Washer and dryer|Two additional bedrooms|Huge space,"Welcome to this exquisite, light-filled residence at the legendary Grinnell on Riverside Drive, where pre-war elegance meets modern living in the heart of Upper Manhattan. Apartment 4A, located on the fifth floor, is a fabulous three bed, two bath corner apartment with fantastic flow for gracious entertaining on a grand scale, as well as a perfect layout for day-to-day living. The opposite of cookie-cutter, this is a unique and special home that preserves many of its original pre-war details. + +Upon entering the apartment, you are greeted by a spacious lacquered entry gallery, with ample room for seating, and a large coat closet. The oversized living room has open exposures to the east and boasts high ceilings, hardwood floors, and a decorative fireplace. Originally 2 rooms, the former library/music room has been opened to create a huge space, and easily accommodates multiple seating areas and a grand piano. French doors separate the living room from the adjacent flame mahogany-paneled dining room - a beautifully proportioned space, whether seating 16 or an intimate dinner for 4. + +Across the hall, the windowed chef’s kitchen boasts white cabinetry, granite countertops, subway tile backsplash, and stainless steel appliances. A washer and dryer complete the kitchen. + +The oversized primary bedroom is a true sanctuary, featuring three exposures that flood the space with natural light, creating a serene and airy atmosphere. The two additional bedrooms offer ample space and flexibility, ideal for family, guests, a den or a home office. Completing this fabulous home are two beautifully appointed and renovated bathrooms and ample storage throughout. + +Built in 1910, The Grinnell, a stately cooperative and designated Landmark, was designed in the Beaux-arts style by Schwartz & Gross. Often called “The Dakota of the North”, the triangular-shaped full-block apartment house boasts elegant barrel-vaulted entrances and a unique interior courtyard. Amenities include a live-in super, doorman, common roof terrace with spectacular views of the Hudson River and George Washington Bridge, private storage units, gym, and bike room. HDFC income restrictions apply but are very generous. The crown jewel of the Audubon Park Historic District, 800 Riverside Drive is conveniently located near public transportation - just across the street from the #1 line - as well as the Hudson River Greenway and vibrant cultural, dining and recreational offerings of Audubon Terrace, upper Broadway, and the Washington Heights, Hamilton Heights and Sugar Hill neighborhoods." +29853060,950000,1901,5517 Fieldston Rd,3,2,https://photos.zillowstatic.com/fp/4bdc0ca65bfabb65ba88453e369e2476-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d3e3ed09ce16f03f64a4e54d30768014-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4957116e1d40a0e2ade881be8cfe1b65-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/179d3e3ed88e981b47b5670529f01899-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7926f88060baccb4a5cef9c4d3a13608-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5db8f801272beb0f176c4b8ddc30bff5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/08f658ea474c6e95433a125583d10ca7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f144b645d1e0386026d6cf4ed9c13770-cc_ft_1536.jpg,27 days,1396,57,Level grassy side yard|Finished basement|Partial split-system central air-conditioning|Storage room|Stained-glass and bay windows|Enclosed front porch,"RENOVATION OPPORTINUTY: 3-Bd. House on 4 Lots with Terraced Backyard & Level, Grassy Side Yard + +This 3-bedroom, 2-bath house, built in 1901, has 4 lots totaling nearly a quarter of an acre. It features a terraced back yard and a level, grassy side yard. + +Highlights include: an enclosed front porch; entry hall with coat closet; open-plan living and dining area with stained-glass and bay windows; kitchen with door out to a roof deck and bridge to the terraced yard; master bedroom with eastern bay windows. + +The finished basement has an office, full bathroom, furnace/laundry room and a storage room. The house has partial split-system central air-conditioning. + +Comprised of 4 adjoining lots (3 of them vacant), the property adds up to 0.23 acres. + +Block 5846: Lots 1692, 1690, 1687 and 1685. + +Close to schools, shops and transportation." +2053173383,950000,1989,300 W 110th St APT 16B,2,2,https://photos.zillowstatic.com/fp/cc17dbd62bdbc5c67bea98ce3ec8a1b4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bb610a1e4348e2901f8e06d91499b9b1-cc_ft_1536.jpg,54 days,704,24,,"Rare opportunity to own or invest in the largest two-bedroom unit on the 16th floor of Towers on the Park, offering stunning views of Harlem and Central Park's Northeast. Conveniently located near Columbia University, Barnard College, and Cathedral St. John the Divine. Easy access to B and C trains, plus various bus lines. This condo features 24/7 services, low common charges, and attractive amenities including parking, gardens, and storage. Leasing allowed with board approval after one year. Cats are welcome; no dogs allowed." +29779743,375000,1995,900 Union Avenue #C,2,2,https://photos.zillowstatic.com/fp/c461b6171fd15d533894450107086e67-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b533eb19c74d11930d5adef68710fa0a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/276015873c57c03efc723100e9b89298-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/957a9010fa4dbd278e02ed715f29fc5a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a523297ad2350f5c50d7581bf8c113ea-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/eabefff8d0a5d2ed46f46e68d971b22c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/728bcfe8de64dcfe75f983114bfb0228-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/094d6b304a7592d627db90021d5c5bbb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d2fb367664590344e4cddea39306418a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/89d3ef46ba408be64b185d2521e44f9e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e6ac25278734ca00639f5c5e7e5ea0ee-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/20ca9de28e6f00e9ccd5b018d52f0e1e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/81d1f5ce1e7cc16d4ea33c9eebd52cd3-cc_ft_1536.jpg,50 days,1721,54,Stainless steel appliances|Fresh paint|New designer kitchen|Updated bathrooms|New carpeting|Quartz counter,"Move right into this renovated 2-bedroom, 1.5-bathrooms, Condo, w/ new designer kitchen, quartz counter & stainless steel appliances, updated bathrooms, new carpeting, fresh paint, etc. Mid-block location. Close to local shopping and transportation. Don’t miss this opportunity!" +29796443,674999,1945,1981 Gleason Avenue,3,1,https://photos.zillowstatic.com/fp/b5f091fc184d0847a4e747b6aad07916-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/18f40fb076616727033b0cc8fd1a5b5c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ca1cf9ac96e1414e320d027c2f2dbd57-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8ca294285a10a58ef492afe1f69f0893-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/93839edfcc94d9810e958b1bea7eef18-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cc71b2e8f765fd60afc4d3b664fb2a03-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e08cf259ea9f1d1aec4638c7f52aa63b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a18bc24d9f48d657c2db6b04cbeb5986-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2ca1840fafabf95d4f055075bec2af49-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/725e40900a84bd4c3caa9659ce5e435a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d79f14ceb2d93b1cf14ebf69c9d4c9bd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ef3c85794fedc7d3340ff7ff8c0da675-cc_ft_1536.jpg,18 days,2471,110,Private backyard|Fully finished walkout basement|Modern kitchen,"Welcome to 1981 Gleason Avenue, a beautiful brick-attached 3-bedroom home in a prime Bronx location! This property features a fully finished walkout basement, offering additional living space or rental potential. Inside, you'll find a modern kitchen with a washer/dryer setup and a spacious living room perfect for entertaining or relaxing. Step outside onto the deck that leads to a private backyard, ideal for outdoor gatherings. Conveniently located near the Cross Bronx and Bruckner Expressway, this home offers easy access to everything you need!" +29849800,699999,1940,276 Emerson Avenue,7,4,https://photos.zillowstatic.com/fp/dcfbae843af59ec7b270e2744c253b02-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d9f3cdc8be6c66e53726a68a3abed961-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/599a717f34384e57a200af55ccd8b7fb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/559f1b192566dad6ca8eb4d2c5e8bd8e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0370c4029d22f3926183f3e4237d7459-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/21dd3075d165166b23a28bd20597184d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8c41e7ca8ffa96cef1cbce550fcf2c5f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/191eae37c13945f46171fa29bb65cd05-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/130f15c77ccad48e79039ba4062aa9ea-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1462f7139e987ce935a36e14bccd332d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d6f952c66cb416b373a8396bc0ea44b2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/daa66f7e1a8cfa6a5c2866622aead2fd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7e04f200808a6b9c5cdd22d86242c4ea-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/55d5ec8cdcf2b21807ff940d7a605aeb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/66fcf732ab732c729bb6523c8e1df0b7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ee3a592030d7b656756c57e8d721474-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f6c21d2fb7d8642d661c719b779e980b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/aaff8fb0f310757dc74be89d0500b11e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c6970f9ca6edcc82e2a80c7ce9ce2b9b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/27b59f11aae1fea3ceb85e28c27b41a5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b13f49d308fdea4470ba9517b20bb8ba-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5267a424b03fcbfa77fc0f7111958baf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d0e4efd73a9ab5603bda1a2459937f67-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f9352ec7d6ff0e2cb27afc21de54b8ca-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1d645fbb361b611cd9b00fa342b38abf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0af9785e648edd38854fc0c6e32a9aaf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a8e4010836867f1c2c205a3b6ff1b93f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b4408cdce3aa2da262bfabea6c6f3293-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/69af88d2c3084714c5ac339de0347f38-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/103bb1969c091abf6063129bfc973589-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/aaed8facf8da3707a8ae843345f34fad-cc_ft_1536.jpg,2 days,1235,72,Lovely backyard|Big principal bedroom|Spacious duplex|Hardwood floors|Huge bedroom,"Welcome to the BEST PRICED 2 FAMILY IN Throggs Neck! This LEGAL 2 Family home is the perfect option for a first time home buyer or a new investor!!! The first floor flaunts 3 Bedrooms and 1.5 Baths!! This unit has a BIG principal bedroom with a half bath and as well as direct access to the backyard! + +The 2nd floor unit is a spacious DUPLEX with 3 Bedrooms (with room for a 4th). Hardwood floors throughout the first floor. The second floor of the duplex is set up as a HUGE bedroom or 2 nice size bedrooms that come equipped with another full bath! The principal bedroom has a beautiful and VERY large terrace that overlooks the lovely backyard so BOTH tenants have easy access. + +This house may need minor upgrading but is in GOOD condition. Totally move in ready if someone so chooses. The street is FULL of parking and the area speaks for itself! Don't miss this opportunity of a lifetime!" +447635811,699000,1925,637 E 241st St #PENTHOUSE,6,3,https://photos.zillowstatic.com/fp/b861d220781b5ae2955b693c395c024b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/86d02cd3d1324bc4880a6fa11eee0215-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0817e58715727a7f3bb7efd06a62ccf4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/70f9871201e1e4500c525300877823f7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7dc083247cb55b70601e752f4e2e20bb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cbb5e155e1b5a1471fef7020c2c35043-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/33af9f47dc3c67ab7a9fa07474af850d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6eeef6bb7b6361974a8b45b9e97602e8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/89281d3a151154e7c908d2ca4060a568-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/19e9a7caab6aed46af787c4afdac2401-cc_ft_1536.jpg,7 days,477,3,,"Welcome to this exceptional Two-Family Home – Ideal Investment or Residence. With additional income! Discover this beautifully maintained two-family property, perfect as both an investment and a place to call home. The upper level features a spacious three-bedroom unit, 2nd floor has a stylish two-bedroom apartment, both boasting updated kitchens with granite countertops, stainless steel appliances, and custom cabinetry. Enjoy newly renovated, luxurious bathrooms, generously sized bedrooms, and inviting living areas. The first level includes a well-appointed one-bedroom accessory unit—ideal for guests. Move-in ready and meticulously cared for, this home is conveniently located near trains, buses, shopping, and major highways. Great investment opportunity!" +29818829,799999,1940,2116 Paulding Ave,4,2,https://photos.zillowstatic.com/fp/cce1244c317638525c4d7a127f7b4528-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/86701187469756abe34ad1953958e299-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5bbb19ce489fb87c010af849cb47fa20-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/67401a1d2482b3e5ae3329c50e3cc836-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dbb1123bc98fd6e77cd6bbd1f1978a5c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bba29a50af6925d101090cabb3ec4671-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1e9f909ec58f46294034f1ecbb570fd7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/098cfffeb60a058d7952b485b6ebec1e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/aa147dded42ba501656d486a848d59b9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b5d49580de29791e1ebfae3ed8647a58-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/274ed19cba2eff07ce65e9da10fe0bb3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0545c004cbe7b942448c69cf334d8865-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/24c470dc1181f443345d37bf9225ddae-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d478e29a714e47ea6aa59a26a477d149-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cec0035512a688375b3ca43ceb3717b7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2ddae917b579bde514663eda85b249b5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/458a8465e96c2bcaff6821f21e8d5f76-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/65f1e97dc0a4f1ce601677d90e80577e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6ab37a83fd14bd14f5d0e6885b869fb6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fc0861710c6442322ae46fef9468bb69-cc_ft_1536.jpg,6 days,1614,70,Beautiful backyard|Private driveway,"All brick legal 2 family house, +Located in the beautiful Pelham Parkway section, +Beautiful backyard + 1 car garage, +private driveway, + One minute from subway station 5 Train, + lots of potential. + 2300 square feet, +Priced for a quick sale" +443075534,339000,1941,2033 McGraw Avenue #MH,2,1,https://photos.zillowstatic.com/fp/5a830faa5718ce4c8bfbb2504d72dcff-cc_ft_1536.jpg,89 days,1091,11,Abundance of natural sunlight|Spacious bedrooms|Front windows|Refinished hardwood flooring,"2-Bedroom Condominium For Sale Located in the Parkchester South Condominium Residential Community. This charming unit has 2 spacious bedrooms, large living room with front windows that allow for an abundance of natural sunlight to enter the room with refinished hardwood flooring throughout. HOA includes: Gas, Water, Heat, Garbage, Common Area and Exterior Maintenance. Just minutes away from the #6 Parkchester Train Station, shopping area, restaurants, schools, playgrounds and so much more! Currently occupied but will be delivered vacant upon closing. Call for your private showing." +29819026,299000,1957,610 Waring Avenue #2W,2,1,https://photos.zillowstatic.com/fp/4ed840a7940cccb671ac904f9a46ddc7-cc_ft_1536.jpg,3 days,268,6,Elevator access|Common laundry room|Tree-lined streets,"Welcome to 610 Waring Avenue! +Nestled just off the Bronx River Parkway near Bronx Park East, this condo offers peaceful, tree-lined streets and the perfect blend of urban convenience and quiet enjoyment. +Neighborhood Highlights: +• Parks just one block away Ideal for spring and summer outings +• Minutes from the Bronx Zoo Fun-filled weekends for the whole family + Building Features: +• Elevator access for easy mobility +• Common laundry room adding everyday convenience + Location Perks: +• Located off Pelham Parkway East with access to shops, local stores, and restaurants +• Proximity to major hospitals, including Jacobi, Albert Einstein, and Montefiore +• Easy commutes to Manhattan and Yonkers + Ready to make your move? Contact Millie for more details and a personalized showing!" +29827339,580000,1950,3828A Barnes Ave,4,2,https://photos.zillowstatic.com/fp/d46712d92134a44271ad31bbde73e0d0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5ece59ccf8623bdb6b430c2bb5eea45f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d03954a3e78878a723994b2e4db20afd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bfd19445505b4f32ba44b8d6ba1ea7f9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6850df6d4afa5e8e521eed21bc83248f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0dfb46eaa0f47bbc55c08fb50c774c25-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6cc084f385e23e0bc5525b12f9a136c6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bdfc6db370cc533141c792e1bdc7aaf7-cc_ft_1536.jpg,1 day,110,9,,"Welcome to an exceptional investment opportunity! This end unit semi attached home nestled on a spacious lot, this captivating two-family property is a prime canvas for savvy investors or forward-thinking homeowners ready to embark on a transformative journey. + +This property showcases a versatile layout across two units, offering ample room for customization and creative adaptation. The main unit features 3 bedrooms and 1 bath, while the second unit includes a studio apartment and 1 bath. Whether you're looking to capitalize on the rental market or envision your dream home, the possibilities are endless. + +Embracing a blank slate approach, the property is being offered in as-is condition, inviting prospective buyers to explore its untapped potential. This is your chance to roll up your sleeves and breathe new life into this diamond in the rough through a comprehensive renovation project. + +As you embark on this exciting venture, with careful planning and a discerning eye, you can reimagine this space and craft a masterpiece that reflects your unique vision and style. + +Don’t miss out on this remarkable opportunity to transform a hidden gem into a shining beacon of possibility. Embrace the challenge, and let your creativity flourish!" +29819171,310000,1960,2385 Barker Ave APT 5L,1,1,https://photos.zillowstatic.com/fp/6095ca8df2eb9a3ea8a89208b80416b8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/169404bf8df9f0dcd815a0a9cc76eae4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/39e5bbb0150b082f5262dd169c3678dd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/21db040272cf2df0d99c62dea3cc35ea-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9e6958c60f56af5e5201654959446378-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/24f20fcce0b5567ee8e53c71b756ed6e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/707652c04025869323177055aa5338e2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f7788a7d652e479e960e6df398f7c9d5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a40c26167383038c0576bb4be36a0ad5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5824138363416710eb9d28f06559cbf9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f1a3b235f5d9ab5a245de4dae96db2d9-cc_ft_1536.jpg,40 days,351,3,Large primary bedroom|Tree-lined street|Updated windowed bathroom|Dining area|Updated kitchen|Beautiful hardwood floors,"New to the Market! Move-in ready Jr. 2 Bedroom unit in Pelham Parkway. The property is situated on a tree-lined street and has two elevators, a digital intercom system, security cameras, laundry on premises, an indoor garage (waiting list), and a live-in super. This apartment features an updated kitchen, a large living room combined with a dining area, a large primary bedroom, a second bedroom/den or office, an updated windowed bathroom, and beautiful hardwood floors. This well-maintained building is conveniently located near the world-famous Botanical Garden, Bronx Zoo, Fordham University, Arthur Avenue, shopping, and restaurants. Easy commute to Manhattan with the BMX 11 express bus, and the #2 and #5 IRT subway lines. The Barker Hall Condominium has an INVESTOR-FRIENDLY sublet policy. Pieds-a-terre, guarantors, and parents buying for children are allowed. This is truly a gem and will go quickly." +29832926,749000,1960,963 E 225th Street,7,3,https://photos.zillowstatic.com/fp/4b24f406719497b60c3d24fe5492afb2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5cbd5e99b42602690aac30653926d97a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a6515e1d893649e7994e1e4aa4eec189-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a407a4c80fb174f615f1e399b7ffea81-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1e96ac11237155284f8fc07fd0a9088e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3fa22939df08b854511c447a446e84f0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9f65fa90a1bd0879df44f8ed640875dd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/669571b2040f6c5735825731ab8a25b9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f912bb87f0819071efe4e4b89e46e7f4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f67e087e6b18fe05846cfdabc70dc37f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/671e9bb90edd1a3ba2d53fc7faf4dd1a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/867b0a639105a492173edb0565b4253a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7756cacd5d5db8a9a566961794a51b6f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/98dc25ad2a45485fb4efc15b117c8ec0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f62dbe6e71f4a56db35615d365065b8c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b01c3614f1d710a60adb2091f5c853ae-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e6ad1374d88be3bea6a07f60263e052e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4855db6781b42229eb380fe6db0c107f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bd24b5b74a6147ab023def45ec5e5af7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/19b5b0b17d604600e555dcdb05272ae6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/83e5aee4f81518b40b6b802ed421483c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ba89b1c3f6e030f914190990c9786bae-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3c152155666a7545ba91fd71a6466bef-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d2c7dba2e0aa169c64f230f29eae6856-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d2c2857bb40425a809404a85bd0b157b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/eea5ce3b4ff3e21ce4b1238ece80d440-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5e6be4503107ea1073bfed2c97ec8bf7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2e6407d526212139f2f17219cb53dd7e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/23364542f542e7832ab3e43d9eaa2c66-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4b8a07eb9b6f6bb28f5a703c7650b653-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9ed74ca5ab33f63637c71813e4a3a440-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/40a96d9af9611b6d27f52ea5df350ce9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7be18fb681fbf40e3957611fff07322f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d1d6a354582d4b8acd72e727be31e1b3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9dc37d44d72ad4021dd3b62f2b5dbd7d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c28ae03ad9c5d040057d076c3517affe-cc_ft_1536.jpg,2 days,767,63,Spacious yard|Separate boiler room|Large storage rooms|Long driveway,"Highest & Best By March-5-2025 Turnkey Investment Opportunity – Fully Renovated Property with Guaranteed Income! +This beautifully renovated property offers everything you need for a worry free investment. With a completely new roof and brand new 2025 renovations throughout, this home offers immediate income generation. +The top floor offers a spacious 4 bedroom 2 bathroom duplex. +The bottom floor offers a ground level 2 bedroom 1 bathroom apartment. + +Key Features: + + • 6 Long-Term Parking Spaces rented at $150 per car, providing an additional $900 in monthly rental income + • Spacious Yard perfect for outdoor expansion + • 2 Large Storage Rooms for added convenience + • Separate Boiler Room for easy maintenance + • Long Driveway with room for up to 3 additional cars + • 2 Floors with modern updates and a smart layout + • 2 Income Producing Tenants already in place with top-tier rents, funded by the government and paid on time every month: + • Upstairs Tenant: $3,868/month + • Downstairs Tenant: $3,027/month + +With a total monthly income of $7,795, you’ll never have to worry about missing a mortgage payment or late rent. This property is 100% turn key with tenants already secured—no time wasted searching for tenants or managing renovations. It’s ready to start generating income immediately! +Whether you’re a first-time investor or looking to expand your portfolio, this property offers a hassle-free opportunity to earn reliable, government backed rental income every month. + +Don’t miss out on this fantastic opportunity—buy today and start earning tomorrow!" +89029336,436000,2008,837 Washington Avenue #5H,2,1,https://maps.googleapis.com/maps/api/streetview?location=837+Washington+Ave%2C+Bronx%2C+NY+10451&size=1536x1152&key=AIzaSyARFMLB1na-BBWf7_R3-5YOQQaHqEJf6RQ&source=outdoor&&signature=ZuW5z_uNyJki07ex2nAaE4NxDQY=,11 hours,45,3,,"Spacious 5th-floor Two-Bedroom at The Aurora. + +This south-facing two-bedroom unit offers 10-foot ceilings, hardwood floors, and an open kitchen with an extended island, and granite countertops. The unit also features air conditioning and heating, with rent covering heat and hot The freshly painted unit has generously sized bedrooms that easily accommodate your furniture + +The building offers amenities that include a courtyard, gym, laundry facilities, two elevators, and a community room. The video intercom system integrates with your smartphone for added convenience. Storage is available for a fee. + +Prime Location +Situated directly across from the 42nd Precinct, this apartment is just a 5-minute walk from Yankee Stadium, the 2, 4, 5, and D subway lines, the Melrose Metro-North Harlem Line, and Lincoln Hospital. With easy access to Third Avenue’s restaurants, bars, and grocery stores, plus Harlem and downtown Manhattan just a short train ride away, you’ll be close to everything. The Bronx Terminal Market and Major Deegan Expressway are also within easy reach." +29838009,849000,1955,4252 Monticello Avenue,4,3,https://photos.zillowstatic.com/fp/f0383bfecfdbb1627cc847912bcb3fe0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3f327fd870d7ed50df4a2aafa5b8673e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1681c18f2ab8e78ba4a16445e542c582-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/50ac2130350a01d79d51f18a90bb39e5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/eb39cd8345688e2c4ceb794663d08d18-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/739013566c833a8395908631480f489c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c9074ca68b25c3634bf58c324d7066f5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ee916022dd4907e6632c9e75722c1128-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5b53bde89e4bbd3f94975b2eb218710d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/de952d93ae286fd5ca7785348340de74-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9dd2eb7030aa66ed05c85e33597bd9cf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b6672c87547f9077b49db3d9b2a6b8d7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4bd51bcf664f2f1afcb95290a78dfa12-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/74c2985d944f3f31af20498d3ab54e25-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9a5c3c8cb547a6f7012225bda0c50bfd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bb0d0598167e57ec72f42bba266e2b09-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9f905c886825c41762afdb8edcf91af4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1f1cbae137cea5a8d42b5cd61e7bb085-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/318a4c094730999c63d0f8f8a99d5b74-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c0f53f73bbe07b9c2467b5906100c01f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/63fc6779115a7ebef90241d2c09dabee-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/20e8ed8756f8ac138aced0d2f60cc4ee-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fb28647f94937e2408452c5f7373b36d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/336b9045abfda96ece2c5939b5748a5f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2b481eeec56b0a87ce322daf625ceec6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6bd558282a79b425f61a5b21b83ca572-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b578481dc2e6c7d6924210b8c2e9556f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ecb5bb0afdd124bbd8a895b8b781624a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/881f3539ff42882ab078203b9d1f605d-cc_ft_1536.jpg,1 day,394,31,Access to the backyard|Versatile basement|Spacious back porch|One-car garage|Abundant closet space|Spacious three-bedroom unit|Well-appointed one-bedroom unit,"Nestled on a generous 99 x 49 lot, this fully detached two-family residence offers a perfect blend of comfort, convenience, and investment potential. Featuring a spacious three-bedroom unit with access to the backyard and spacious back porch above a well-appointed one-bedroom unit, plus a versatile basement, the home provides ample living space and endless possibilities. With a stately brick façade, abundant closet space, and a one-car garage, this property is designed for both practicality and charm. Ideally located near parks and transportation, it offers the perfect balance of tranquility and accessibility. +Schedule your private tour today." +2053005716,149000,1962,3531 Bronxwood Avenue #3F,1,1,https://photos.zillowstatic.com/fp/b4d67edcda4a3dec4f240e811c028b0f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/75dcee1e0558f2621da2672a09d88049-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/64e3e18fb93395ddfeb69005efa60d93-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/838d7716bc71652f5bb65a5f8f25266e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2c11bcdc176756cfdf5659f6e76f9c89-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ea6f82ce9b258ed2f67e36e0a67b5c3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/864ae3f908f13850eb84b909b8da5762-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ff4316d1978c6f343d2c48da8377ed40-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/032f983841141b7f8ffb862e8f559944-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b15ef3dd7438bb673b7c426f43252e6f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/28756d106db42a8f474a2b41ab4551d7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9b92d5a0cd6bfada03ed02886b59c3c5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/96560ef9aadec6cb6f6dff1cfec8b7ed-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/db9a7e8628481109669d3ced76e04b58-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/51b4e25ad51c5d9b5124960fcae45b2b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/00ecc145fdecae032b43fc2117c143fd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/37a07abca26376d170713645a1acf530-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d463a06100f0395550f37462705d5d7e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e2939081af19e9ada8c308a775eb947f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dca5ca764db5c540d84331f7a0465fbd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/03b2918e37dd9cd0442e80fed600d9c3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c7804bf144a2c12892e4913903653684-cc_ft_1536.jpg,289 days,1444,100,Spacious bedroom|Common laundry|Spacious unit|Natural hardwood floors|Great closet space|Great size kitchen,"Welcome to 3531 Bronxwood Ave Unit 3F in the Williamsbridge section of The Bronx. Immaculate 1Bedroom 1Bathroom unit with a beautifully distributed layout that gives you the best use of the great space thats offered. This spacious unit offers a foyer, great closet space throughout, spacious living room, formal dinning room, great size kitchen, spacious bedroom and full bath. Natural hardwood floors throughout. Common laundry with new washer & drying machines. Conveniently located steps away from the #2 & #5 Subway station, multiple bus lines, shopping hubs, schools, hospitals, major parkways and restaurants." +29829052,749000,1950,3482 Mickle Ave,4,3,https://photos.zillowstatic.com/fp/d7a6430dec70f2ddfc0c33a5633f862e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cc347d004ba071797df938ff23d3d52c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c5d69566a5a40e5a64520d76a95e5b9a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/12cb434d5e00aff8d98d6022e1b7d980-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/999bff82049a57b113059040e06675a2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/575bfdd9248edd89357f8e2e5ce62276-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e15e6cd3f489d58444f94d9303edb918-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1a45238cb7e3537184d9d2d051e4d0d3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/610878a6cc26afa0db573879cc4be871-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/abfee0f010273bcb2c64eefe9d610150-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dd8ed7cccc21eaf3f0f8532e9a28a7d7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f1f0f51b25000daaa778a161d551758d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/177e4b74f88a02c2c87f0d5878376c92-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/20b40246703c0cf4529d6a22e1bbaeab-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6589dbef861e8cfae9f9721fde847e7c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fca3eb27d3449be0576173210d4dec9b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0f79d8d2147d980707b4b19f516a4602-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/46588f31559a2b8c1f1b32917901442b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cbeb078b5a3d7c0d9f87d0d3d8eccf9d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7bcb6942cd876155e0d657b281ba589e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a35e063d3aa144edab923c9a14089dcc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4425189b4013cdd98c3a7797963adffe-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/adfd71bccd7d3dee4053620577e31de9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e63ac357e35f8c09a8b56a1c969a4444-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/820ccbbc65e929f85bf22e7d9f314c36-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d29101fd9b52740182364b8cf9170c21-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ca46775f6aaa9100e85124a81f7e94e9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d714aab8ac273a46859955aea4776d20-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/20efd5dde953b400c42c789a10116fd5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ff99553def519640cd61b618861d7801-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2333acfac77c68fd5191dc67817d719b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b66f42ce26543098d791c36b9c42df6e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0d23f429e67642690582c0509dd65c61-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6ec8b8e85223172092f6045b761e50ef-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ac697d54d4ee624b6a474644e22b584a-cc_ft_1536.jpg,2 days,286,14,,"Immaculate Newly Renovated Brick semi attached 1 Family Home with high end finishes and a very spacious walkout basement unit with separate front & rear access. Private driveway with parking for up 2-3 cars. The main unit features a spacious 3 Bedroom 1.5 Bath duplex, large beautiful balcony off the kitchen with great space for BBQ & to entertain, newly renovated kitchen with custom cabinets, stainless appliances, Quartz counter tops, recessed lighting throughout, beautiful hardwood floors throughout, newly renovated bathrooms, beautiful wainscoting panel on the main level that offers a touch of elegance, 3 huge bedrooms, Walkout basement unit offers a spacious living room, dining room full bath, large bedroom, separate laundry room, central heat. Spacious back yard. Great opportunity to own this one of a kind unique home. Conveniently located steps away from Subway stations #5 & #2 lines, multiple bus lines BX8 & BX31, major highways, shopping hubs, schools, restaurants and public parks." +83178236,2899900,2008,640 W 237th St #20B,4,5,https://photos.zillowstatic.com/fp/b48f0810c9fd5ea92129f1a730315410-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8e63732b6ce38dd9f759c472281db411-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4c366d6fe3b31d030e5228428f31223c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c3175f53587e03118a009792bce7f842-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/68da521ccc8628612c10c8d5b929f47c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/95b0eb045e08005259a22bcba4cd3708-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/84dae65ea81de063925dac98d49b84ee-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/57992b28c3018f8adc599486cbef0542-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/38f19aabe4fae9f8c5a89b9375a2da72-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8cec1de425562e980b1e77a4f34722ca-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6f205ad2205c9657eb971a6a44756c0c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/31a9ac6cf2a49bb6d0f8e0af5d2d5a7e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/72778300cfdaa05bab723dd6ec9d865e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7592763228b872c6420c300e94a63e08-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e656c36e9e1e67e9fa05c281305294bf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ff194a53ff966febcee3485d4242da3e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ef7426f3739c57c251873d17d20c11b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bf08a1b8ec806e5e8eade49910954dba-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/16dd8edd2fd58db75c46797072104cba-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ffdb1095252afdece3c05aa22bf893ca-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fa0d9b8b16aa3ef8765b2d1070079498-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/45543643ab8befd2ec30e5084951a5fc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f03f4ad109474bd7cdc58ff804a144d2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/36cb51c2ca969c1f8cd23e9b66bb1798-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fdf9689a143d02a204010163fb8bd24a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b1e596c90915e2e7bdad2c56970f199a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fb5e751ce98aec1a45d6417630e9542d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/acde1a60a3bd2501aaa113fc93ee4370-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bd13a9bcc0a63a85e535a6f63174397b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b17dc91451fdf9eb2ce00026b7bfdf02-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/25be66c60e8167222e6d4aca6571f675-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c5f1bc399b92bb7cef58ec38393c3872-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cac3be8d337e73102e0c68db6621e56e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6d74b83c39a718f028ee2f690cfec424-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bffa471702080a8eaeaff5b54a7b7ab0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/64d7f3bdb25ef8423b179d8f71e5bd2c-cc_ft_1536.jpg,234 days,842,33,Floor to ceiling windows|European shaker-style cabinetry|Private rooftop terrace|Luxury living|Landscaped roof deck|Deep soaking tub|Radiant heated floors,"AMAZING NEW PRICE! Imagine that you are on top of the World at The Solaria Condominium PENTHOUSE. Everything at your fingertips with top of the line appliances and warm wood finishes on the European Shaker-style cabinetry in this windowed Chef’s kitchen. This large 4 bedroom, 4 and a half bathroom Condo has over 2700 sf of luxury living with beautiful appointments throughout the home with 10 foot ceilings and floor to ceiling windows. Closets are California closet designed. Enjoy spectacular views of the city and non-stop vistas of the Hudson River and the Palisades from a PRIVATE ROOFTOP TERRACE WITH A PRIVATE GALLERY. You will love the Primary Bedroom with an ensuite bathroom with radiant heated floors and deep soaking tub and separate glass shower, to just relax and enjoy. There is a washer/dryer in the apartment. The Solaria has a 24 hour Concierge, state of the art fitness center, lounge & entertainment center, landscaped roof deck with extensive views, and a children's playroom. Local and express buses a half clock away with access to #1, #4 and A trains, express buses to Midtown East and West Sides, a Wall Street Express bus and Metro North Station Rail Link to the Spuyten Duyvil Metro . Central Riverdale shops just 4 blocks away. OWNER FINANCING AVAILABLE WITH CONDITIONS. +There is an Elevator Repairs Assessment in place." +29833329,825000,1955,1019 E 222nd Street,4,3,https://photos.zillowstatic.com/fp/4d53d1997d8a77b4fc05c6f02f3f736e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/383928d43d516638456996ee9cade529-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4e84f81176b1037b048a2f562d5a9ebc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1176b4a3ffc261171dc9d8ab8a8645c1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/595dd1e7488f7b45a899969b58dbd3cf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/841fef5e9e6d53729595ac9bcb09858b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9139f704744b4547d580d1cf5f30d4c3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bbcee9123443f62df5f31eee931f80ff-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9e5bd2c4f5ca048fced3d84c7c1fbb4d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9d1381ed55636185866fb713cc9b2564-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/61bc0acd3e350aa251cadfa7fb8b2db3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7ba85a5fb64eef25890ee18aedc4366c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3e0163c511f2525ee7f691a119262acf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0be734a3d96d66348cf9c73b03167ca4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3dc600ee36973d6cb0b9b48b7b12deef-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ddf71260b0818218d718028a7824b891-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e0bbacbf7be84c7adae58aa94b37b62f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0b25feccff70df3d8761e569df8f45c0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c101080060893413cdea6c1de87c497c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7326b56554003d6a8d4ae1dd88e82e1b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/67cd73c452bac40bb7b747adc6333e2f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8e53297cfb38fac094595ced6ac9df48-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5ce388a1f57d267dc58575b107aa0ed5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/19902511568fedc480e910c8b89f1c39-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/642e8437b67c4d76aa3bef4356ef7bbe-cc_ft_1536.jpg,32 days,845,36,,"Step into this exceptional two-family home, a standout gem offering over 2,000 square feet of thoughtfully designed living space. Nestled in one of the Bronx's most desirable neighborhoods, this property is a rare blend of comfort, convenience, and potential—perfect for families, investors, or budding entrepreneurs. + +The main unit is a beautifully laid-out 3-bedroom duplex, boasting expansive living areas filled with natural light. Its spacious design provides ample room for relaxing, entertaining, or creating the perfect work-from-home setup. Downstairs, you'll find a cozy one-bedroom apartment with a private entrance, ideal for generating rental income, hosting extended family, or crafting a serene guest retreat. + +Practicality meets convenience with an attached garage and private driveway, making parking a breeze. Beyond its residential appeal, this property is licensed as a daycare center with the capacity to care for up to 16 children. Whether you’re ready to launch a rewarding business venture or enjoy the extra income potential, this home stands out as a truly unique opportunity. + +The location is unbeatable—just minutes away from vibrant shopping centers, a variety of dining options, lush parks, top-tier medical facilities, and major highways. Whether you're commuting, running errands, or exploring the neighborhood, everything you need is within easy reach. + +This remarkable property offers endless possibilities, blending versatility, style, and location. Don’t let this rare chance slip away—make it your next home, investment, or business opportunity today!" +79507461,1399000,1921,50 Morningside Dr #32,3,2,https://photos.zillowstatic.com/fp/d206d8db70879f306e2b0306a64f2619-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1538e740ad5326772b40e4620752b224-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/58152086d4456ddd508b3f8a98cb096a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4dea8a044dc71496fad2af0b1a062e86-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/167c8f94d4d30f4087ab95f1f0b871d2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dc2d64285d6bf5d5e251f1a6ecca2755-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/eb428d7f636ac7085fad2e15d2a63678-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8f8a63485887eb0c90c819484a23e8e1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/24cf80bceb53361db0a378c9c108b084-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/50714ccb4078ccab017de2997d61d970-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/35e8e19c9255b1bf5aa808615584c0f0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ed02b9267235b9f37f1b982449d8c30b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a634b6e25ecb25d97db6b2a40f5d5be1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/15cf59b09845415da7f2f8dae0ed477e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/07b1745e10133766fd442cbfb6c30ccb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/18548cae69b9e7602351fd5ff6c17ea4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4ac77616f64b0bbb7e5efd79ed891be4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/770687ac4fd6ec07a177e5492d89b91c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/96980eea0a6904e6d78b76f928533997-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e37e8f73a68f90368c3c2d122c5fb095-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/43884fc8ffb67bbcf3af0e534c87aac0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/88b46cedcdd6d8bc2dc4a8947e8b3605-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c997767d91aecd06a7fd262f3293e190-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1f613228f4a05e7259349da48eaadca1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e5d44a3236a9629e4baf2c3b47680e2d-cc_ft_1536.jpg,19 days,1804,148,,"Welcome to Residence #32 at 50 Morningside Drive, an exquisite 3-bedroom, 2-bath home in the heart of Morningside Heights. Located in La Touraine, a distinguished 24-unit pre-war co-op built in 1904 by renowned architects Schwartz and Gross, this residence offers the perfect blend of historic charm and modern updates. + +This gracious home features lush, unobstructed eastern views overlooking the 30-acre Morningside Park. Upon entering, a long picture gallery with closet storage leads to an expansive open living and dining rooms adorned with beautiful herringbone wood floors. Off the dining room, a charming balcony provides a perfect perch to enjoy your morning coffee while taking in the scenery and sunrise. + +The updated windowed kitchen is a chef's dream, complete with a Wolf gas oven/range, marble countertops, and abundant custom cabinetry. Each of the three bedrooms features wood flooring with the added comfort of ambient floor heating in the primary bathroom, and the primary and second bedrooms boasting impressive built-in storage. The third bedroom offers flexibility as a home office or cozy den. The primary suite includes a lovely ensuite bath with honeycomb tiling, while the second full bath has been tastefully updated. + +La Touraine is a pet-friendly building with an elevator, free common storage, free bike storage, and a shared laundry facility in the basement. Residents can relax or dine al fresco in the courtyard. The building's striking marble and paneled interior, wrought iron balustrades, and stained glass windows exude old-world charm. + +Ideally located just one block from Columbia University and near the B, C, and 1 trains, this home offers the best of city living with easy access to academics, culture, and green space. Morningside Park features a picturesque pond and waterfall, multiple athletic fields, playgrounds, an arboretum, a dog run, and jogging trails. + +Experience timeless elegance and urban convenience at Residence #32, La Touraine. + +1.5% flip tax paid by purchaser. Monthly maintenance of $1652 plus assessment of $558 for facade repair (repairs estimated to begin in 2026)." +29821817,839000,0,1427 Waring Ave,4,3,https://photos.zillowstatic.com/fp/6ca545b62bc0ab83f6d86bcf22094b30-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2ee069cdefdff529ed43b5a604f96d05-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b79051de3873a99e417bc2a58cdc5bf8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/db8395533f46c26795b41ab587b310ed-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/15af2a177b17e6102da11fa7645567ce-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1aafabbd02c31faf501ebd085319ba84-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/36edeca2382f11421dd8f0c04adbcebc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/43d91ca66a431c46410d71bf29d1c54f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ec5baf61087aaf96520eab83a7e61246-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/366a8364273a6d901d6f321315b729ea-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a50380e9aa481b14e7614643b87baa3c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/51773c034f179e04631789efd8a516b1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/67a4a38a75a733989997785e829cf61b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fadb46f9096f6970de9f41a83d2947e2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ac579a7541ae1a124d6a27bd287acea-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/50e09e5b5aca802e9b3e4d45dc02062a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5595438e8b555f85c8c2800c75aad240-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c94736f35886c292156ff69807ce0c08-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bd0de9bdb63e12cebafb12ff369e15f3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/abc77ce935ad2c413258f493107b2775-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/862b5981b3b45d53851bb91466e6d987-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0f9e655093af0b114952066d8159d3c5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e1b4a67ce409d1444d70124a9e7e09b2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/968625de32113b0e14249bb65198bf2c-cc_ft_1536.jpg,245 days,1618,40,,"The perfect blend of charm and income potential, this detached legal multi-family home is located in the much sought-after Pelham Gardens neighborhood. Featuring a picturesque gable roof, as well as four bedrooms, three bathrooms, front & back yard, and a private driveway & garage. You can also capitalize on the financial benefits with monthly income from the rental unit. Positioned ideally, the home is just a short drive from the Bronx Zoo, the New York Botanical Garden, with Albert Einstein and Jacobi Hospitals within walking distance. Very near trains and the Bronx/Manhattan express bus line. This home is a gem awaiting your personal touch. With some TLC, it can transform into a warm, inviting residence for a family or a profitable asset for an investor. Don't miss out-this must-see property offers both a prime location and significant income potential." +442154295,5250000,2015,5175 Goodridge Ave,7,7,https://photos.zillowstatic.com/fp/c9e348f7f74b19cedd7490215996d49e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d38ff2475e8aa3bc438274fb4c957e54-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a4da981b1d784b3c09664fb179f5a8a8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/15fbd24b7a9175585ac1f93c9a437177-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bdd3ab82857a30db0a24f22dfe5b6fbf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/76e5d04c47918d1a26e81600b39ddac6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5cf2e3da439ca7debb285a2533395ab9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cdffad65c9c33fca24d8f2d2cdfef330-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8d725825f5e0ed49ab96e0311891b503-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/33b61b1cac1dbf9c02e6b0f41dea66f8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3948c22277537333b1b26ea149b135f5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4d63c9f1299a60cf504b60c8b79452e0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c1e3ebefd27377a1c8ff5a40125ec74e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bbd7cba240d98357ad05640efdd06a67-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cbacd35f26f28d7de3b40b17547f00cb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/056256256218cf1f1e19baab66a892dc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a0b71d0dbf90fb4f8bc0a588ec601608-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/799373bf1159de2af5abf703d0b92a82-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f056926e2f3cc9a771a9274eb384cd62-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e9574eb2d53c2282df2faf9e57cf5d04-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5fa0f4b09116b1d6449bf4a09e7e1afe-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8af13b75dc0e74f6f08850fad460b01b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7616bf79679aa1336fcaaf6313992b2c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6ff7ab4828facb1d5dbbd7384cb3c0e0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fcea5372a3c4431e1e93225a6e0e62e9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0cf0fd19b344407ec11df8746a65a9fa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3c4889e796392cc61317e77739f5e580-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/869b43a3876df666bf211fec5fa7b0cc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/89358fcc50fb4ed83d49d44c1a22dfc7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/299fed9a5e45b1acb338cc723258eab4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/149bd1613e14a1f20ed6952d21052bbb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a415e313f4543694843266fe4580bb07-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8bd91164b4a5b92f4a4d04ff0ee701ff-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d09a64e63a85799ce68ce3ad30343b3d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c7f7989d7faed887e758c56937a03f46-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2b2251b2ed0c900cd44d226c2152b821-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/098f66da12146ae9c63f51a47e056b0c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4b61102b3113f2f09c6b7643e2229e57-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/57f0b9e032969d528e8f2c46c3e78ed5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d02758bd5d48048338d4780cb4f3f505-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6c707f01a507f557037a39d7fa5119b6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/469f6c2e731c90dc02c6705b29ec756a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2881cb412cf090f39ed68644fdaadd19-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5ac0b09144d316f0d231cf9cb973acf5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f28ecbbee9c4e1d05ee97b3ac8b0f87e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7c5ef2045acf46ab044d8959b7addc80-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ad9c37f61d16d8e3e7c7bc8d398aac79-cc_ft_1536.jpg,289 days,1365,55,Angled corner fireplace|Finished basement|Exercise room|Inground swimming pool|Private cobbled driveway|Private porch|Distinctive exterior,"NEW LISTING VILLANOVA HEIGHTS +Grand 7-Bd. Shingle-Style Mansion with Pool & Huge, Level, Grassy Grounds + +This picturesque 7-bedroom, 6.5-bath, 9,000-sq.-ft., American Shingle-style mansion was built in 2015. It enjoys exquisite details and luxurious amenities, including an inground swimming pool and a huge, level, grassy backyard. + +Set on close to an acre of land, the home sits along a leafy street in the exclusive, private community of Villanova Heights, adjacent to Riverdale’s Fieldston Historic District. + +Designed by architect Hans Roegele, its distinctive exterior is based on a prominent Gilded Age mansion by the venerable firm of McKim, Mead & White – the 1884 Robert Goelet House, Ochre Point, in Newport, Rhode Island. + +The house features a welcoming center hall connecting to wide and inviting front and back porches; living room with and angled corner fireplace; formal dining room; large center-island kitchen with breakfast bar and stainless-steel appliances; semi-circular breakfast room; family room with fireplace; and library/guest room. + +The second floor has 4 en-suite bedrooms, including a master suite with a cathedral ceiling, its own sitting room, 2 walk-in closets, and a glass door to a private porch. + +The third floor has 3 additional bedrooms, a full bathroom and a large storage room. The finished basement includes a recreation room, exercise room, mudroom, and a maid’s room with a full bathroom. Central HVAC. Elevator with access to all floors. + +There is a private cobbled driveway and an attached 3-car garage. The property totals approximately 0.88 acres. + +Conveniently located for well-known private schools (Horace Mann, Fieldston and Riverdale Country School), the vast greenery of Van Cortlandt Park, and transportation to Manhattan (including express buses and the No. 1 subway train)." +29849800,699999,1940,276 Emerson Avenue,7,4,https://photos.zillowstatic.com/fp/dcfbae843af59ec7b270e2744c253b02-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d9f3cdc8be6c66e53726a68a3abed961-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/599a717f34384e57a200af55ccd8b7fb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/559f1b192566dad6ca8eb4d2c5e8bd8e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0370c4029d22f3926183f3e4237d7459-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/21dd3075d165166b23a28bd20597184d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8c41e7ca8ffa96cef1cbce550fcf2c5f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/191eae37c13945f46171fa29bb65cd05-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/130f15c77ccad48e79039ba4062aa9ea-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1462f7139e987ce935a36e14bccd332d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d6f952c66cb416b373a8396bc0ea44b2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/daa66f7e1a8cfa6a5c2866622aead2fd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7e04f200808a6b9c5cdd22d86242c4ea-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/55d5ec8cdcf2b21807ff940d7a605aeb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/66fcf732ab732c729bb6523c8e1df0b7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ee3a592030d7b656756c57e8d721474-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f6c21d2fb7d8642d661c719b779e980b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/aaff8fb0f310757dc74be89d0500b11e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c6970f9ca6edcc82e2a80c7ce9ce2b9b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/27b59f11aae1fea3ceb85e28c27b41a5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b13f49d308fdea4470ba9517b20bb8ba-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5267a424b03fcbfa77fc0f7111958baf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d0e4efd73a9ab5603bda1a2459937f67-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f9352ec7d6ff0e2cb27afc21de54b8ca-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1d645fbb361b611cd9b00fa342b38abf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0af9785e648edd38854fc0c6e32a9aaf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a8e4010836867f1c2c205a3b6ff1b93f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b4408cdce3aa2da262bfabea6c6f3293-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/69af88d2c3084714c5ac339de0347f38-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/103bb1969c091abf6063129bfc973589-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/aaed8facf8da3707a8ae843345f34fad-cc_ft_1536.jpg,2 days,1627,91,Lovely backyard|Big principal bedroom|Spacious duplex|Hardwood floors|Huge bedroom,"Welcome to the BEST PRICED 2 FAMILY IN Throggs Neck! This LEGAL 2 Family home is the perfect option for a first time home buyer or a new investor!!! The first floor flaunts 3 Bedrooms and 1.5 Baths!! This unit has a BIG principal bedroom with a half bath and as well as direct access to the backyard! + +The 2nd floor unit is a spacious DUPLEX with 3 Bedrooms (with room for a 4th). Hardwood floors throughout the first floor. The second floor of the duplex is set up as a HUGE bedroom or 2 nice size bedrooms that come equipped with another full bath! The principal bedroom has a beautiful and VERY large terrace that overlooks the lovely backyard so BOTH tenants have easy access. + +This house may need minor upgrading but is in GOOD condition. Totally move in ready if someone so chooses. The street is FULL of parking and the area speaks for itself! Don't miss this opportunity of a lifetime!" +29782395,404900,1993,1737 Popham Ave,5,3,https://photos.zillowstatic.com/fp/b3ef5a5048d58b62e56895d26e682450-cc_ft_1536.jpg,8 hours,232,19,Cozy one-bedroom apartment|Open floorplan|Quiet tree-lined street|Spacious units|Large windows|Expansive unit,"**No Showings - Do Not Attempt Entry - Dangerous Conditions Exist** Located on a quiet, tree-lined street in the desirable Morris Heights neighborhood of the Bronx, this charming row-style two-family home offers a unique opportunity for both investors and homeowners. The property features two spacious units, each with its own distinct appeal. The first-floor unit is a cozy one-bedroom apartment with direct access to the private backyard - a perfect outdoor retreat. Ideal for a first-time buyer or as additional rental income, this unit offers great comfort and privacy. The second and third floors combine to create a spacious 4-bedroom, 2-bathroom duplex with an open floorplan. This expansive unit is perfect for a growing family, providing plenty of room for entertaining and everyday living. The open-concept design allows for flexible living arrangements, and the large windows fill the space with natural light. Set in a prime location, this property is just a short distance from major transportation options, making commuting to Manhattan and beyond a breeze. The neighborhood offers a variety of amenities including nearby parks, schools, and grocery stores, with a vibrant community feel. With great upside potential, this home is perfect for a buyer with vision and creativity. Whether you're looking to personalize the units or renovate for greater value, this property offers endless possibilities. Don't miss out on this incredible opportunity to own in a growing neighborhood with convenient access to everything you need!" +29808360,235000,1941,1936 E Tremont Avenue #5H,1,1,https://photos.zillowstatic.com/fp/60a667a94b7a898934d9c6eb7eec2ef0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/581d5175ce2835aa17d85ab5db444606-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/51b69a2eb3c46e46c897e704cd4a0dc1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/baa044ffd5e834bbb3b7ab8be411ecf1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1fca3817ff2cf6087762123f2848d0b0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5dda0cd02e826241e4023529523eaed3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/38715872a69123c6461a7defe1dab036-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5516358c77e35aa2feb6d80e7c11094b-cc_ft_1536.jpg,39 days,706,27,Modern finishes|Natural light|Spacious layout,"Discover this charming 1-bedroom condo in the heart of Parkchester, offering both comfort and convenience. The unit features a spacious layout with natural light and modern finishes, making it ideal for first-time buyers or investors. + +Located in a vibrant neighborhood, this condo is steps away from a variety of shops, restaurants, and essential services. Commuting is effortless with the 6 train just a short walk away and multiple bus routes nearby. The area also boasts parks, schools, and medical facilities, ensuring everything you need is within reach. + +Don’t miss this opportunity—schedule a viewing today + + + +A/O still accepting backup offers" +29801082,220000,,1439 Wood Rd APT 4E,1,1,https://photos.zillowstatic.com/fp/b201ac934f62c18404e9a351f55a8122-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a0465cab52069869e0fb4c84ad2b40a1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e85019284b5510a0916a1d1df8a72c25-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3ae8334dd3f5cd74d1109cf845c29961-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/749a4171f54ea78c09e563d3e85b5c11-cc_ft_1536.jpg,31 days,1459,42,Parquet hardwood floors|Xl primary bedroom|Window-filled home|Separate dining alcove|Windowed bathroom|Elevator building|Windowed kitchen,"HIGHEST & BEST OFFERS ARE DUE FRIDAY 2/7 AT 5PM + +SHOWS BY ADVANCE APPOINTMENT ONLY - no open houses - please contact seller broker to schedule. + +Brown Harris Stevens Presents: + +TOUCHDOWN! +Bronx CONDO asking $220,000 +Pristine Parkchester 1 bedroom / 1 bath condo awaits! + +Welcome to this 4th floor, elevator building, freshly painted, window-filled home. +‐separate dining alcove +‐XL primary bedroom +‐windowed bathroom +‐spacious living area +‐windowed kitchen +‐parquet hardwood floors + +-Parkchester South Condo has a no pets policy + +Located in the center of it all, the neighborhood boasts +‐proximity to the 6 train/Metro-north +‐129 acres of beautiful landscaped green spaces +Trees +Commercial/shops nearby includes: + +‐Marshalls +‐Starbucks +‐Foodtown Grocery +-USPS + +‐investor friendly +-CASH sale preferred + +Reminder: +Showings are available by advance appointment only . +Floorplan rendering/Square Footage is an informed estimate only. + + +Questions? +Answers!" +2066588001,535000,1969,4455 Douglas Ave APT 8A,1,1,https://photos.zillowstatic.com/fp/197f7a8a5d31c91790182afbbf0ce5c8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b59c1d3c0ef1c7181524f4f537c8f03c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b3a959f68c6b6496f692810f462e7447-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ee8306fdddc34a50d28d1127bab2f214-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1d937d496ae98061ec58a55c2d9c0d68-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ff5b9cbd675105958d3b0b73bb4ae1a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e09c6b4a1413cf3dd50c47b016711807-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ea7c0e80810a1b1894bd84b43254e7c9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c3e6bbfe2f4d1ec771a08453ab24549b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/66513608a1c922736c593c77998a0c43-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/515cd9ae132c073aaf7c4af3d6939afa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/49aaf732579a94f5090dbf6af66c77fd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9f3833fd2398e3a0a051f863c5a13025-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0fa632b4844756341ee5d2a8359cae17-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5cade88c3794760d0372021bae1e55bb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0bf8421377de74027609303615491abc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/849cf8c53927fa34fdd9e04ff25df9dd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a2ded27cc491f30ded89ab46f548b879-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/04c639aafd38ae7ce38c9fd3f01e3adf-cc_ft_1536.jpg,3 days,153,4,Tennis court|Bosch appliances|Seasonal pool|Garage with ev charges|Abundant huge walk-in closets|Granite spa bath|New windows,"MID-CENTURY MODERN IN RIVERDALE'S PREMIER CONDO + +Hayden- on - Hudson, circa 1969 -- the same year Man walked on the Moon! It is superbly managed and nestled into nature, with all the key features of a fabulous resort! + +Occasionally, an opportunity to purchase a condominium comes along in Riverdale in the shape of a fully renovated and sun-blasted large One Bedroom. Abundant huge walk-in closets and superb design choices ready-to-go for the next owner allow for a seamless transition to an amenity-rich lifestyle and limitless possibilities, including using the apartment as a full-time or part-time. Also, from an investment point of view, a viable income stream is possible now as Riverdale has gained in popularity tremendously, boasting many eclectic gourmet restaurants, cafes, food purveyors, shopping, Wave Hill, and Van Courtland Park. This gem also has easy access to Manhattan and all points north, making it a further opportunity for the perfect combination of city and country. + +Notable attributes of this offering include: +*New Windows +*Bosch Appliances +*Liebherr Refridgerator +*Granite Spa Bath +*Seasonal Pool +*Gym +*Storage Gages +*Garage with EV Charges +*Tennis Court +*Bike Room +*24 Hour Attended Concierge +*Pet-Friendly +*Peace and Quiet +*Near Walking Trails +*Easy Street Parking for Guests +*Condo Association Libary +*Active Board +*Superb Staff + +Call today to view this chic apartment !" +447136425,449000,1969,4455 Douglas Ave APT 5M,1,1,https://photos.zillowstatic.com/fp/7e731fd088593bc98fff1e26811f454d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b4c51bd49375421fd63473849fca2155-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/69d714b1e6ecf86d7b7222f6b75b0976-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b68026523172e4705fb5ab8a4e1c6bb4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cc9ffd8b994f6b70cba73e2cb4d6e1dc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9739b4fb44d38f08305b66d0bb73a40f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0ce8a745e817367be51c565c920c2721-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/873dff0f36053e1c5d1670a0bab23bad-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4ee96eea896b98cffd64d423c62ccd0a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/149a57e7b24bad07602247b88d8e4477-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9e60ec66cc7b52499f91b29e0f90ea1d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c94f1b977c7e2942dc15bc494e1d3b07-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/60ae861434ad4d6cd370ccfa4371b2fd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f129160d4fe36531e5bebb95400e398d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/40c205bf8a50803f9a779dbce3dad69f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cb1bde1a86d0731541782dade3a4ae55-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ca05ac257f2cd7e75c582370809bb95d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ad042009142589a2dad82830d5f555a0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6efa0b3c96fb99d4c6de5df79be109c0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e15b2a406953c21feddb1e6db62574b6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/30c041ea1a8e0d2834c60f39a463084c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f148b427d9d32f6f8f59ac7c40da9a34-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1e195b09ef881606bb36dfe8caea362f-cc_ft_1536.jpg,22 days,553,25,Expansive light-filled space|King-sized bed|Oversized closets|Multi-zone hvac system|New floor|Generous layout|Windowed kitchen,"A Rare Opportunity to Own in Riverdale''s Best Condo - 4455-65 Douglas Avenue! + +Discover an unparalleled living experience in Hayden on Hudson, Riverdale''s most sought-after condominium. You''ll enjoy this sun-drenched 1-bedroom, 1-bathroom residence offering a lovely view of the Riverdale Conservancy; a green and serene oasis while enjoying all the conveniences of city life. + +SOPHISTICATED AND SPACIOUS. +Step into an expansive, light-filled space where nature takes center stage. The windowed kitchen is a unique feature, elevating the home's brightness while a multi-zone HVAC system keeps every room at the perfect temperature year-round. Designed for both comfort and style, the generous layout easily accommodates full-size furniture- including a king-sized bed, without overwhelming the space. A lovely new floor was just added, and two oversized closets provide dressing area space and exceptional storage to ensure you''ll never run out of room. + +ABOUT HAYDEN ON HUDSON Timeless Design, Iconic Architecture +This building is a true Henry Kibel masterpiece, embodying classic mid-century modern design with an emphasis on clean lines and an organic connection to nature. Every detail has been thoughtfully curated to offer both aesthetic beauty and functional elegance. + +Living at Hayden on Hudson means access to exceptional amenities, including: +Tennis courts +Seasonal swimming pool (OPENING MEMORIAL DAY WEEKEND) +Fitness center +24-hour concierge +On-site parking garage with 24-hour private attendant - Available day 1 +20 EV POWER STATIONS +Laundry room (some apts. allow in-unit installation with board approval) +One of NYC''s most pet-friendly buildings +Hiking the Wallenberg Forest Trails from lower Manhattan to Wave Hill and points north. + +PRIME WEST-OF-THE- PARKWAY LOCATION +Only 29 Minutes to Midtown. +Enjoy the perfect balance of tranquility and convenience with multiple transit options +-Subway for easy city access +-Metro-North at Spuyten Duyvil for a quick commute +-MTA express & local buses + +This isn't just an apartment - it''s a lifestyle. Live where city vibrance meets the peace and quiet of nature, all within a stunning architectural landmark of this mid-century modern design. + +TOURS BY APPOINTMENT ONLY - BOOK YOURS TODAY!" +442865237,249000,1940,1541 Metropolitan Avenue #ME,1,1,https://photos.zillowstatic.com/fp/b7d30bc87bc903e9b8656d5066392e2b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/230ff4c36f9443d7950f391994476ea4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/db65e4831794b9e308c797e8bcc8a293-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/080896f4095be23c262605f891b99711-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/28a59800cd6ba840ac88a13e56a27283-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a9789050d2acc410d60062282e8a8c18-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1c219b3643c8a5aa88827f03a7d5d9d6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ce793c08aa5da8e529485057af379b07-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/756e1a22660d5a2f39ecfaa4254ccf5f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f7d06ce145fde8f81dba2424b918b814-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e4583bda6b996daa2263ecf098c33ba1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8eb336d26354f92043b7d89683033182-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cbe66b576f099f545bfbd124b2c316b9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1d27c96c9fb56b783685ae3f8ee3546d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2a09b1298c48d998321b3c687e833647-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bffe72cc4460cdf697148293f70fd84e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c110774e22808bea6e17e2e477587f96-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3621f20a828f0f162ed8a5de4fdb3ea1-cc_ft_1536.jpg,191 days,755,14,,"Immaculate Move In Ready 1 Bedroom 1 Bathroom Garden apartment located in the Parkchester North section of The Bronx. Gorgeous hardwood floor throughout, Offering a spacious living room with nice views, formal dining space ,sun drenched throughout, high ceilings. Private outdoor patio, unit on the main floor. Conveniently located steps from the #6 Subway station, multiple bus lines, Parkchester Oval park, Parkchester Shopping Hub, schools, restaurants and major highways." +443075534,339000,1941,2033 McGraw Avenue #MH,2,1,https://photos.zillowstatic.com/fp/5a830faa5718ce4c8bfbb2504d72dcff-cc_ft_1536.jpg,90 days,1098,10,Abundance of natural sunlight|Spacious bedrooms|Front windows|Refinished hardwood flooring,"2-Bedroom Condominium For Sale Located in the Parkchester South Condominium Residential Community. This charming unit has 2 spacious bedrooms, large living room with front windows that allow for an abundance of natural sunlight to enter the room with refinished hardwood flooring throughout. HOA includes: Gas, Water, Heat, Garbage, Common Area and Exterior Maintenance. Just minutes away from the #6 Parkchester Train Station, shopping area, restaurants, schools, playgrounds and so much more! Currently occupied but will be delivered vacant upon closing. Call for your private showing." +29819026,299000,1957,610 Waring Avenue #2W,2,1,https://photos.zillowstatic.com/fp/4ed840a7940cccb671ac904f9a46ddc7-cc_ft_1536.jpg,4 days,296,9,Elevator access|Common laundry room|Tree-lined streets,"Welcome to 610 Waring Avenue! +Nestled just off the Bronx River Parkway near Bronx Park East, this condo offers peaceful, tree-lined streets and the perfect blend of urban convenience and quiet enjoyment. +Neighborhood Highlights: +• Parks just one block away Ideal for spring and summer outings +• Minutes from the Bronx Zoo Fun-filled weekends for the whole family + Building Features: +• Elevator access for easy mobility +• Common laundry room adding everyday convenience + Location Perks: +• Located off Pelham Parkway East with access to shops, local stores, and restaurants +• Proximity to major hospitals, including Jacobi, Albert Einstein, and Montefiore +• Easy commutes to Manhattan and Yonkers + Ready to make your move? Contact Millie for more details and a personalized showing!" +89029336,436000,2008,837 Washington Avenue #5H,2,1,https://maps.googleapis.com/maps/api/streetview?location=837+Washington+Ave%2C+Bronx%2C+NY+10451&size=1536x1152&key=AIzaSyARFMLB1na-BBWf7_R3-5YOQQaHqEJf6RQ&source=outdoor&&signature=ZuW5z_uNyJki07ex2nAaE4NxDQY=,1 day,86,5,,"Spacious 5th-floor Two-Bedroom at The Aurora. + +This south-facing two-bedroom unit offers 10-foot ceilings, hardwood floors, and an open kitchen with an extended island, and granite countertops. The unit also features air conditioning and heating, with rent covering heat and hot The freshly painted unit has generously sized bedrooms that easily accommodate your furniture + +The building offers amenities that include a courtyard, gym, laundry facilities, two elevators, and a community room. The video intercom system integrates with your smartphone for added convenience. Storage is available for a fee. + +Prime Location +Situated directly across from the 42nd Precinct, this apartment is just a 5-minute walk from Yankee Stadium, the 2, 4, 5, and D subway lines, the Melrose Metro-North Harlem Line, and Lincoln Hospital. With easy access to Third Avenue’s restaurants, bars, and grocery stores, plus Harlem and downtown Manhattan just a short train ride away, you’ll be close to everything. The Bronx Terminal Market and Major Deegan Expressway are also within easy reach." +2053005716,149000,1962,3531 Bronxwood Avenue #3F,1,1,https://photos.zillowstatic.com/fp/b4d67edcda4a3dec4f240e811c028b0f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/75dcee1e0558f2621da2672a09d88049-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/64e3e18fb93395ddfeb69005efa60d93-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/838d7716bc71652f5bb65a5f8f25266e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2c11bcdc176756cfdf5659f6e76f9c89-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ea6f82ce9b258ed2f67e36e0a67b5c3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/864ae3f908f13850eb84b909b8da5762-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ff4316d1978c6f343d2c48da8377ed40-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/032f983841141b7f8ffb862e8f559944-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b15ef3dd7438bb673b7c426f43252e6f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/28756d106db42a8f474a2b41ab4551d7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9b92d5a0cd6bfada03ed02886b59c3c5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/96560ef9aadec6cb6f6dff1cfec8b7ed-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/db9a7e8628481109669d3ced76e04b58-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/51b4e25ad51c5d9b5124960fcae45b2b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/00ecc145fdecae032b43fc2117c143fd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/37a07abca26376d170713645a1acf530-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d463a06100f0395550f37462705d5d7e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e2939081af19e9ada8c308a775eb947f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dca5ca764db5c540d84331f7a0465fbd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/03b2918e37dd9cd0442e80fed600d9c3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c7804bf144a2c12892e4913903653684-cc_ft_1536.jpg,290 days,2266,140,Spacious bedroom|Common laundry|Spacious unit|Natural hardwood floors|Great closet space|Great size kitchen,"Welcome to 3531 Bronxwood Ave Unit 3F in the Williamsbridge section of The Bronx. Immaculate 1Bedroom 1Bathroom unit with a beautifully distributed layout that gives you the best use of the great space thats offered. This spacious unit offers a foyer, great closet space throughout, spacious living room, formal dinning room, great size kitchen, spacious bedroom and full bath. Natural hardwood floors throughout. Common laundry with new washer & drying machines. Conveniently located steps away from the #2 & #5 Subway station, multiple bus lines, shopping hubs, schools, hospitals, major parkways and restaurants." +29829052,749000,1950,3482 Mickle Ave,4,3,https://photos.zillowstatic.com/fp/d7a6430dec70f2ddfc0c33a5633f862e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cc347d004ba071797df938ff23d3d52c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c5d69566a5a40e5a64520d76a95e5b9a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/12cb434d5e00aff8d98d6022e1b7d980-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/999bff82049a57b113059040e06675a2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/575bfdd9248edd89357f8e2e5ce62276-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e15e6cd3f489d58444f94d9303edb918-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1a45238cb7e3537184d9d2d051e4d0d3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/610878a6cc26afa0db573879cc4be871-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/abfee0f010273bcb2c64eefe9d610150-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dd8ed7cccc21eaf3f0f8532e9a28a7d7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f1f0f51b25000daaa778a161d551758d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/177e4b74f88a02c2c87f0d5878376c92-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/20b40246703c0cf4529d6a22e1bbaeab-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6589dbef861e8cfae9f9721fde847e7c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fca3eb27d3449be0576173210d4dec9b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0f79d8d2147d980707b4b19f516a4602-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/46588f31559a2b8c1f1b32917901442b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cbeb078b5a3d7c0d9f87d0d3d8eccf9d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7bcb6942cd876155e0d657b281ba589e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a35e063d3aa144edab923c9a14089dcc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4425189b4013cdd98c3a7797963adffe-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/adfd71bccd7d3dee4053620577e31de9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e63ac357e35f8c09a8b56a1c969a4444-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/820ccbbc65e929f85bf22e7d9f314c36-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d29101fd9b52740182364b8cf9170c21-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ca46775f6aaa9100e85124a81f7e94e9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d714aab8ac273a46859955aea4776d20-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/20efd5dde953b400c42c789a10116fd5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ff99553def519640cd61b618861d7801-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2333acfac77c68fd5191dc67817d719b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b66f42ce26543098d791c36b9c42df6e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0d23f429e67642690582c0509dd65c61-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6ec8b8e85223172092f6045b761e50ef-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ac697d54d4ee624b6a474644e22b584a-cc_ft_1536.jpg,2 days,557,24,,"Immaculate Newly Renovated Brick semi attached 1 Family Home with high end finishes and a very spacious walkout basement unit with separate front & rear access. Private driveway with parking for up 2-3 cars. The main unit features a spacious 3 Bedroom 1.5 Bath duplex, large beautiful balcony off the kitchen with great space for BBQ & to entertain, newly renovated kitchen with custom cabinets, stainless appliances, Quartz counter tops, recessed lighting throughout, beautiful hardwood floors throughout, newly renovated bathrooms, beautiful wainscoting panel on the main level that offers a touch of elegance, 3 huge bedrooms, Walkout basement unit offers a spacious living room, dining room full bath, large bedroom, separate laundry room, central heat. Spacious back yard. Great opportunity to own this one of a kind unique home. Conveniently located steps away from Subway stations #5 & #2 lines, multiple bus lines BX8 & BX31, major highways, shopping hubs, schools, restaurants and public parks." +79507461,1399000,1921,50 Morningside Dr #32,3,2,https://photos.zillowstatic.com/fp/d206d8db70879f306e2b0306a64f2619-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1538e740ad5326772b40e4620752b224-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/58152086d4456ddd508b3f8a98cb096a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4dea8a044dc71496fad2af0b1a062e86-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/167c8f94d4d30f4087ab95f1f0b871d2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dc2d64285d6bf5d5e251f1a6ecca2755-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/eb428d7f636ac7085fad2e15d2a63678-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8f8a63485887eb0c90c819484a23e8e1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/24cf80bceb53361db0a378c9c108b084-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/50714ccb4078ccab017de2997d61d970-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/35e8e19c9255b1bf5aa808615584c0f0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ed02b9267235b9f37f1b982449d8c30b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a634b6e25ecb25d97db6b2a40f5d5be1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/15cf59b09845415da7f2f8dae0ed477e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/07b1745e10133766fd442cbfb6c30ccb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/18548cae69b9e7602351fd5ff6c17ea4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4ac77616f64b0bbb7e5efd79ed891be4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/770687ac4fd6ec07a177e5492d89b91c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/96980eea0a6904e6d78b76f928533997-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e37e8f73a68f90368c3c2d122c5fb095-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/43884fc8ffb67bbcf3af0e534c87aac0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/88b46cedcdd6d8bc2dc4a8947e8b3605-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c997767d91aecd06a7fd262f3293e190-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1f613228f4a05e7259349da48eaadca1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e5d44a3236a9629e4baf2c3b47680e2d-cc_ft_1536.jpg,19 days,2015,162,,"Welcome to Residence #32 at 50 Morningside Drive, an exquisite 3-bedroom, 2-bath home in the heart of Morningside Heights. Located in La Touraine, a distinguished 24-unit pre-war co-op built in 1904 by renowned architects Schwartz and Gross, this residence offers the perfect blend of historic charm and modern updates. + +This gracious home features lush, unobstructed eastern views overlooking the 30-acre Morningside Park. Upon entering, a long picture gallery with closet storage leads to an expansive open living and dining rooms adorned with beautiful herringbone wood floors. Off the dining room, a charming balcony provides a perfect perch to enjoy your morning coffee while taking in the scenery and sunrise. + +The updated windowed kitchen is a chef's dream, complete with a Wolf gas oven/range, marble countertops, and abundant custom cabinetry. Each of the three bedrooms features wood flooring with the added comfort of ambient floor heating in the primary bathroom, and the primary and second bedrooms boasting impressive built-in storage. The third bedroom offers flexibility as a home office or cozy den. The primary suite includes a lovely ensuite bath with honeycomb tiling, while the second full bath has been tastefully updated. + +La Touraine is a pet-friendly building with an elevator, free common storage, free bike storage, and a shared laundry facility in the basement. Residents can relax or dine al fresco in the courtyard. The building's striking marble and paneled interior, wrought iron balustrades, and stained glass windows exude old-world charm. + +Ideally located just one block from Columbia University and near the B, C, and 1 trains, this home offers the best of city living with easy access to academics, culture, and green space. Morningside Park features a picturesque pond and waterfall, multiple athletic fields, playgrounds, an arboretum, a dog run, and jogging trails. + +Experience timeless elegance and urban convenience at Residence #32, La Touraine. + +1.5% flip tax paid by purchaser. Monthly maintenance of $1652 plus assessment of $558 for facade repair (repairs estimated to begin in 2026)." +29821817,839000,0,1427 Waring Ave,4,3,https://photos.zillowstatic.com/fp/6ca545b62bc0ab83f6d86bcf22094b30-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2ee069cdefdff529ed43b5a604f96d05-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b79051de3873a99e417bc2a58cdc5bf8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/db8395533f46c26795b41ab587b310ed-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/15af2a177b17e6102da11fa7645567ce-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1aafabbd02c31faf501ebd085319ba84-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/36edeca2382f11421dd8f0c04adbcebc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/43d91ca66a431c46410d71bf29d1c54f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ec5baf61087aaf96520eab83a7e61246-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/366a8364273a6d901d6f321315b729ea-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a50380e9aa481b14e7614643b87baa3c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/51773c034f179e04631789efd8a516b1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/67a4a38a75a733989997785e829cf61b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fadb46f9096f6970de9f41a83d2947e2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ac579a7541ae1a124d6a27bd287acea-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/50e09e5b5aca802e9b3e4d45dc02062a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5595438e8b555f85c8c2800c75aad240-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c94736f35886c292156ff69807ce0c08-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bd0de9bdb63e12cebafb12ff369e15f3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/abc77ce935ad2c413258f493107b2775-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/862b5981b3b45d53851bb91466e6d987-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0f9e655093af0b114952066d8159d3c5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e1b4a67ce409d1444d70124a9e7e09b2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/968625de32113b0e14249bb65198bf2c-cc_ft_1536.jpg,246 days,1709,39,,"The perfect blend of charm and income potential, this detached legal multi-family home is located in the much sought-after Pelham Gardens neighborhood. Featuring a picturesque gable roof, as well as four bedrooms, three bathrooms, front & back yard, and a private driveway & garage. You can also capitalize on the financial benefits with monthly income from the rental unit. Positioned ideally, the home is just a short drive from the Bronx Zoo, the New York Botanical Garden, with Albert Einstein and Jacobi Hospitals within walking distance. Very near trains and the Bronx/Manhattan express bus line. This home is a gem awaiting your personal touch. With some TLC, it can transform into a warm, inviting residence for a family or a profitable asset for an investor. Don't miss out-this must-see property offers both a prime location and significant income potential." +442154295,5250000,2015,5175 Goodridge Ave,7,7,https://photos.zillowstatic.com/fp/c9e348f7f74b19cedd7490215996d49e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d38ff2475e8aa3bc438274fb4c957e54-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a4da981b1d784b3c09664fb179f5a8a8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/15fbd24b7a9175585ac1f93c9a437177-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bdd3ab82857a30db0a24f22dfe5b6fbf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/76e5d04c47918d1a26e81600b39ddac6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5cf2e3da439ca7debb285a2533395ab9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cdffad65c9c33fca24d8f2d2cdfef330-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8d725825f5e0ed49ab96e0311891b503-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/33b61b1cac1dbf9c02e6b0f41dea66f8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3948c22277537333b1b26ea149b135f5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4d63c9f1299a60cf504b60c8b79452e0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c1e3ebefd27377a1c8ff5a40125ec74e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bbd7cba240d98357ad05640efdd06a67-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cbacd35f26f28d7de3b40b17547f00cb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/056256256218cf1f1e19baab66a892dc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a0b71d0dbf90fb4f8bc0a588ec601608-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/799373bf1159de2af5abf703d0b92a82-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f056926e2f3cc9a771a9274eb384cd62-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e9574eb2d53c2282df2faf9e57cf5d04-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5fa0f4b09116b1d6449bf4a09e7e1afe-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8af13b75dc0e74f6f08850fad460b01b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7616bf79679aa1336fcaaf6313992b2c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6ff7ab4828facb1d5dbbd7384cb3c0e0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fcea5372a3c4431e1e93225a6e0e62e9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0cf0fd19b344407ec11df8746a65a9fa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3c4889e796392cc61317e77739f5e580-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/869b43a3876df666bf211fec5fa7b0cc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/89358fcc50fb4ed83d49d44c1a22dfc7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/299fed9a5e45b1acb338cc723258eab4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/149bd1613e14a1f20ed6952d21052bbb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a415e313f4543694843266fe4580bb07-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8bd91164b4a5b92f4a4d04ff0ee701ff-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d09a64e63a85799ce68ce3ad30343b3d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c7f7989d7faed887e758c56937a03f46-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2b2251b2ed0c900cd44d226c2152b821-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/098f66da12146ae9c63f51a47e056b0c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4b61102b3113f2f09c6b7643e2229e57-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/57f0b9e032969d528e8f2c46c3e78ed5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d02758bd5d48048338d4780cb4f3f505-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6c707f01a507f557037a39d7fa5119b6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/469f6c2e731c90dc02c6705b29ec756a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2881cb412cf090f39ed68644fdaadd19-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5ac0b09144d316f0d231cf9cb973acf5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f28ecbbee9c4e1d05ee97b3ac8b0f87e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7c5ef2045acf46ab044d8959b7addc80-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ad9c37f61d16d8e3e7c7bc8d398aac79-cc_ft_1536.jpg,290 days,1436,57,Angled corner fireplace|Finished basement|Exercise room|Inground swimming pool|Private cobbled driveway|Private porch|Distinctive exterior,"NEW LISTING VILLANOVA HEIGHTS +Grand 7-Bd. Shingle-Style Mansion with Pool & Huge, Level, Grassy Grounds + +This picturesque 7-bedroom, 6.5-bath, 9,000-sq.-ft., American Shingle-style mansion was built in 2015. It enjoys exquisite details and luxurious amenities, including an inground swimming pool and a huge, level, grassy backyard. + +Set on close to an acre of land, the home sits along a leafy street in the exclusive, private community of Villanova Heights, adjacent to Riverdale’s Fieldston Historic District. + +Designed by architect Hans Roegele, its distinctive exterior is based on a prominent Gilded Age mansion by the venerable firm of McKim, Mead & White – the 1884 Robert Goelet House, Ochre Point, in Newport, Rhode Island. + +The house features a welcoming center hall connecting to wide and inviting front and back porches; living room with and angled corner fireplace; formal dining room; large center-island kitchen with breakfast bar and stainless-steel appliances; semi-circular breakfast room; family room with fireplace; and library/guest room. + +The second floor has 4 en-suite bedrooms, including a master suite with a cathedral ceiling, its own sitting room, 2 walk-in closets, and a glass door to a private porch. + +The third floor has 3 additional bedrooms, a full bathroom and a large storage room. The finished basement includes a recreation room, exercise room, mudroom, and a maid’s room with a full bathroom. Central HVAC. Elevator with access to all floors. + +There is a private cobbled driveway and an attached 3-car garage. The property totals approximately 0.88 acres. + +Conveniently located for well-known private schools (Horace Mann, Fieldston and Riverdale Country School), the vast greenery of Van Cortlandt Park, and transportation to Manhattan (including express buses and the No. 1 subway train)." +29822587,699000,1965,2434 Tiemann Avenue,3,2,https://photos.zillowstatic.com/fp/e2d0774d4d7f6991d84fd1bc313e1c04-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5682ca631f6a7d1ab28cf31e2bb310c7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0cff4ba393cf327af888902ee1fa184f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c320a556470cc8aaaf5e845b81c19686-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/96d236b73a06aa9642d965cea9b930d0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f70ca102be8e64789efd90d1c109857c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/01a343e83896c5b82567bf8690ea0abd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4be1181af2f257648e1f6a4129d8cba8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0c5c23df34973b76f0dc0549e9d7fa9f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ecf8448bde48025262fe69cc4ba73004-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6a4a387a8b9338e2c3271e9455bb9ed4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/161c4e355125ea3aa2c70a18f17b24bf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8dae6fa58f791a429afb44249dbe1217-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f6e8e095c2504699d782097c9fafe082-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6ff4249b26ac28e6cfbb76a52dfc3823-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/efb8a2a6904ceae94ed98b386920d020-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dea90722a9092bcd6633e5869e271451-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cff85e9ffcd818b8291461239fb2cedf-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a2fbbb5f6e74fda83e60063144b890a4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b836bfa61619a3ced0705b2461f73659-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ba0d61b2019bdb7d122e9cbbb66b124-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/710c838b11cff4be122c2ac349750e7f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e79039a6642a15dfb5518b977ee74127-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9cbf73de3db0638cf0adf8a3f509ce25-cc_ft_1536.jpg,56 days,1529,55,,"Location, location, location, Welcome to the best The Bronx has to offer. This delightful residence features 3 spacious bedrooms and 1.5 modern bathrooms, making it perfect for families or those seeking extra room to grow. Located in the vibrant neighborhood of Pelham Gardens. You’ll enjoy easy access to local parks, schools, shopping, and public transportation; Some of the many highlights of this property are; a full finished basement, the private backyard and a porch. There is also a driveway that has 1 car parking space. This stunning property has it all. make it yours today! Easy to show! A/O" +442154188,686800,,1 Windward Ln UNIT 5,2,3,https://photos.zillowstatic.com/fp/23ec294e55a784bfe5b34f22d9273d33-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/83538aeef2f63178ce984c86d21262e5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/134bcaee1fdd93cf7fa82b09eeb5164c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2e651c6beba5e00b35108e1dc1fbd8dd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a03c8145181b3b06c9470a1b5609dfa4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d711c64ba8a3888b1722d76893f9d6b8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a2a5b02f39c350e3806ff3d565e6a76f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/093d8433d9f54fc12110bda8c2cdbb80-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4252202f59dddacd592fe323db873308-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b9fed8351f8f49cbc654904e01d3ee19-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/14bd6639c425f987cb3fba4605d32107-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d14d302f9e4036a1d004c3faaa213dc5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/de4cf493c58efc14d139528f4f95c408-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/33b82f4442f7dbac042efde58e1bc7d2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9f6a029c2034f8c9fe161d188b5f7cb0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7ef39b003b28f2210000164075085de4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7ca9b5b4cb450b8775e7111557e06bd0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d625d0d0e674334d34c59766737c913f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/399143a663f60134c24034ca1fee24d9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f1c263789fc9b0de96f9629b76e6ec2c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3484d30ecae25c387666da0b84de8c55-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6908690fe639e5c34511a41dc4961725-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/451016e75677701807d6cecde3a8ab0f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/19da910d8bd2aca9ed290aad32f1bda9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/32650ea0a49470c17fcbbeae5097b827-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b06e1c42eeb6e5e08bba788be0f100b6-cc_ft_1536.jpg,226 days,1031,49,Gas fireplace|Built-in office space|Central ac|Architectural details|Large attached storage space|Open water-views|Water views,"OPEN HOUSE IS BY APPOINTMENT ONLY - The condo association does not allow unattended entries at the gate so unless you have an appointment you will not be given access - PLEASE MAKE SURE YOU CALL ME TO MAKE AN APPOINTMENT. + +STUNNING WATER VIEWS 2 bed / 2.5 bath CONDO + +This exceptional waterfront condo offers one of the most artistic and high-end renovations I have ever seen! +- Curved walls, stainless-steel and plexi-glass architectural details, curved built-in closets, custom lighting, and a stunning floating staircase - a pure piece of art! +This quarter century renovation was designed with absolute innovative brilliance, and at a value that would be near impossible to recreate today. In addition, this condo has full open water-views from the well-appointed balcony, the master bedroom, and from the open concept living, kitchen, and dining space. This spacious 2-bedroom, 2.5-bathroom condo is brimming with architectural details and conveniences such as curved windows, a custom-built ensuite-master-bedroom, central AC, skylights, hardwood floors, a gas fireplace, and a built-in office space. The spacious second bedroom is complete with an artistically built-in loft. The serious chef's kitchen is fully equipped with double ovens, Sub-Zero fridge freezer, two sinks, a stainless-steel pull-out pantry, endless counter space, including a breakfast bar and an abundance of kitchen cabinets. Additional conveniences such as a second-floor laundry area, direct garage access, a large, attached storage space, and a Koi-Pond entrance complete this remarkable home. +Note that this condo has straight interior stairs from its private entrance to the second floor - which can be fitted with a stair-lift for convenience. These views are only attainable from the Boatyard's top floor condos, and this is one of the best! + +The Boatyard Condominium is the only 24/7 manned, gated complex on City Island. Truly unique with its meandering walkways, a large pool overlooking The Sound, and a stunning private pier and Captain’s house, exclusively available to its residents. +An easy MTA commute or short drive to Manhattan affords you this relaxed and friendly beach-lifestyle every day! City Island enjoys over 30 restaurants, multiple beaches & boat clubs, convenience stores, cafes, galleries, PS 175 City Island local school, public library, post office, Chase Bank, even a new Yoga and Pilates studio! Pelham Park at the entrance to City Island is New York City’s largest park – 2,772 square feet of golf courses, a horse stable, walking, biking, and running trails. Not to mention the infamous Orchard Beach, established in 1937! +Life doesn't get better!" +2057087117,199000,1957,730 E 232nd Street #1F,2,1,https://photos.zillowstatic.com/fp/ed619370afaf8cbe92dca1d4640c701b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4b792e815e82b9daf634572a5eb56d75-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bfca8b263cc0534fa5053c0b917d26aa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/74acff7fc582695c0ab0e2801e9c524a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b0606b4e82db1b78b0567fb34b1e6a21-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3f9c987d41c046319f28da843264eb40-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a8bc2cd4a0fd93610b66f1a262cff2d5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8ab79cbabad8e23328776814f46b5c7f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/272566233d10991d101c62848e241a81-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5109302bfeb52575a3ac8bef6be8094f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3b628bfde8fc4142a573a4f58a549d51-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fff76514b6507e0cf1584dd53d5b7957-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/47f54002a2d3a82f9414d0c00b65bad8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b1f4d31277441674a56cc9c948341567-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cbda3b5914b9742cba36ca2403758f70-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/41202484a2c72e6edea3ef5e9e190321-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9f2aead52c227a58599bb9e333f5baec-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e630d35e3234a95384461d030fa3622e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/468443f7952f1b0e9d3d77e9adee70a3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b998802e95eb61c0d8c22077e9d7ed29-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/69d3420d52ebed5a931b1680e3524955-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ffbc9f8d7996f72399ba2e1e080c8367-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5d9ec927d937a32bf3fe6fe08ed2db0f-cc_ft_1536.jpg,24 days,2194,175,Flexible furniture placement|Tons of closets|Hardwood floors|Ample cabinets|Beautifully updated bathroom|Updated eat-in kitchen,"Vacant. Ready for your touch. Large, Well-maintained, clean, affordable two bedrooms with one beautifully updated bathroom co-op located in the Wakefield Cooperative complex. Unit is conveniently located on the first floor with on-site laundry conveniently located a few steps below. Large, updated eat-in kitchen with ample cabinets for your storage needs. Tons of closets. Open Living and dining areas afford you flexible furniture placement and staging possibilities. Additional amenities include: hardwood floors; one-block walking distance to shops, schools, bus, train; 3 blocks to hospital; close proximity to parkways. Electric, Gas, Heat and Hotwater included. Additional $30 per month for each AC unit. Waitlist for parking. Parking fee is $150 per month. Bring your decorative skills and highlight your personal color scheme. Your family will love living in this home. VIDEO OF PROPERTY ATTACHED. +https://drive.google.com/file/d/1BYsXJKzli5W1UV4j6-Rj4fb4ma5dLN0f/view?usp=drive_web" +2087203269,215000,2009,150 Featherbed Lane #4B,1,1,https://photos.zillowstatic.com/fp/8da78542e1798541ed144d326b479c81-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c4bdbe617116ce1aee374f00b333d685-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9c80719a7e48ca9d45a473470c270700-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/774a9d08402af6e010ecab1680895d97-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/53fa9049ec618e0438b5604fdf141a9a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/eb5fed1e4ddbb506c9ba5c23c8a2e66b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9665cfad1daac16a03e86d3ad5ede28e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1484348034ff30463b3e897b9ff5aba3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8510d4141782a8abec0b1efe315d1a89-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8fcd615e916eec3fdedefdeb8b23c2ab-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1a56071fa3271a940865fc63cf9b8802-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/746db63cce7ded8aed9adb88b088a08b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d5819a950a18f44d75cc91a48e95f171-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/91b3d5b17b2775c9e82d1bdef0211526-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8d730ea5929186ef4534e39804d24ba5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/547e837131955465de37544451cb4d8f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/07f7873ecbaa038b43712937516d23e4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e993285e854cfc8a61b70a70fe0dc9e5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/36e330730496656c3bdc106a907feb67-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cc13ef8a8273a58709c3115e8c593007-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0865c147d2d24cacbfcb9e7adb7c6796-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4ccd709129a46af17189f38df166aee7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fd3c0d38cfc369ed23ca6f189001efa3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/465f28f81d6ef14f3fb9f967c3359835-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/149d7db7b8f3dfb2766885fade82bea2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2fcfc7f3e4257a17697f5f2134d55ff2-cc_ft_1536.jpg,50 days,589,47,,"Unique opportunity to own your very own apartment in the Bronx! Filled with all the modern conveniences you can ask for. It even has nice views from the large windows allowing for a ton of natural light. The apartment features hardwood floors throughout, an open kitchen with granite counters and ample cooking space. Location is a commuters dream for this unit. Close to major highways, George Washington Bridge and public transportation. The building was built in 2009 and it is extremely well maintained. Features a rooftop terrace, recreation room, part-time doorman, and state of the art entry system with security cameras. Don't miss out on this amazing 1 bedroom / 1 bath co-op. It will not last!" +2056147830,455000,,143D Edgewater Park #D,3,1,https://photos.zillowstatic.com/fp/f61598ac097acbcd72e782464e4b7adc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/af91f4cb261d03f6ae16539325281d4f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/136b690d97474909a8801d6ec9283396-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/204b34cc21522d43669670d6e19fcccc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/76884087f1643e035a77e827e0bfaa8e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8fb86af9bee83394d6f517c6b29da9ba-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ae94e6ffe1620c472f867f770e967ac5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/32e8e7e52237ff5db2161d8b219c612d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/917cc3ce1b029fbf4b06f0b58cb33758-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/33a9598dcb8f496b090362b6c40e1ed6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/89728c12011d42b23d35b3eb33ecc943-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fe9f8baf2d3f63e3a76d2a0259a04605-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4e8adb3988a1c1d4459d2df6f24cd829-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6f265f5148ed627855e0d8a7fc55dfb0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/20e003007775cb15d366cadcd86ab028-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e739103d35d41314455bcf59b272b0b7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3c2816c673e01797fe0711824d2ef2a1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/01b5bf45f0fdae4891fa105b9c2d6f28-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e265bca28ec6d5d82478af3ea50d6e82-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3db0dd07914ba62d9d79cc1be0ed1beb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d4389302a748a5f4e3bcef3590f857fb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fc784e0eb5a5dcf8054bb64c2f240265-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0728ecad39625c622a510a80e237f076-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3213c2020726b2aa282f6020ca344612-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9fb2ce18f679df551ed6ed96b7acd349-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/51482515d7692db8a26cea25154e6cd7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2de2d77c0fc0fe67304a9ee613fa4e38-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/19bf1554df6a36ef6495969d63111613-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fbf57bb5fd8bd615d33cf24aaa802f67-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/16f9c2e05cee4465dfe8efd0b188f83d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/721058f43778eb533c95a514f697091d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b3b76c5be7f6aeec7c2dd95cdb624f31-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/17345cda98bd6759648df62d9bf64168-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e1523140149baa9c5fb6138994107b03-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ffd1013c30ddc7dcb23de6f0f972b74a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ca17a5d86152f96e6501e7d99e7e7be9-cc_ft_1536.jpg,576 days,817,25,Lovely vegetable garden|Walk in closet|Stainless steel appliances|Cathedral ceilings|Corner oasis|Back splash,"This detached move in condition corner oasis is nestled in the Edgewater Park Community & right across from parking lot. Layout: Front yard & side yard for entertaining & BBQ cooking plus lovely vegetable garden. Entrance foyer, Living rm, EIK with stainless steel appliances & back splash plus fits two chairs for dining, Dining rm with built in cabinets for plenty of storage, 2 BR'S (Jack/Jill style) & full Bathroom. 2nd floor: Primary bedroom with cathedral ceilings & skylight (can put 2nd bathroom) plus walk in closet & two add'l closets. Basement - additional storage, workshop area, heating system & laundry -with access door to yard. New hot water tank, 2-zone heating, new roof, electric, Anderson windows, Sun Setter Awning with screens & lights & outside storage closet. Enjoy the many amenities this community offers: Beach, Security & Cameras, Playground, Track, Basketball Court, Fire House, Deli, Corp on Premises & Express Bus pick up & drop off in the community & local buses." +418964161,699000,1948,1189 Morris Park Ave #1,3,2,https://photos.zillowstatic.com/fp/60f2552f33705fc895d0c8af56da33c2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c5cbe89234d8f63ccd4ea1d29b226c58-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3d8e7ddda82f86996d3e37a9d2f290c2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a0896693c5afca142d4ca8abfe13e1c1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4de59b693e5a9982b66151b15152e6fa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d07a10ee0f1bb480220b9579cdd1bbd8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/33fdd8820ef08ee68de28d89ed9fc85c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0da2b1dd72723d0f7c8edf6b8de9f6d0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fe3d8f2c5777824cb958c986ddae7a78-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e75f692b75e168e9aec8010e599b2a83-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7021b1af31d92c142dfc9ec507e0e0ff-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b916def81751904bfb3d240b81601afe-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/46d020c5f946d0b593acb71683976f6e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/69d56e17c0f6adc550d69fca26324ed7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c54ee68e28e947e7ff1944fa98c505a5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/893ccacfc29cd68e9db7e4ad30fdb1a0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0aab8e733575efcb3bb41a0e8d87e2a6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1011ee0197ba835e5eaed98ecdd1c5cc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d94c9bbe2b5f32cf63accfd8f67f4406-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ba793a3fc7777e1e53696d33f363bb02-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8c20c45f75037de911abcfb63d9f857a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7cd84397a83d2e93aa36ab43833228c5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/532859318bc0a664d447c8cbf4666ca4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bbfd74d0f7d9e4d84533462f57fab0cc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f6e4e5d3e52ce08fe4b30e86363867e0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/96fd4d03be6938d62535576afbd8cc5b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2999864166e6122ebeda8c2f31806250-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6275f15192d8fdef93f49ce1797d22a6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/51ef0050d45fde94d579a50a961d125d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f13f69f597b1bbf1c31e49e9b9373ef7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/001e61b4618a5d3777ecd13f8cf7b505-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/006ddc97c4f77d722ebbc807bbe584e5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/563103b4f218192473a5977443f5cd18-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3ecfbe0a98712e973743437e11eb02d6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f578a01a0c6f867ad50b805271d27397-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f00828035a3504caa162fc801b89a2e4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/485aeda8c149648e87ddd1b1dabfe96c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dbfe38b0a5d7f6bb9401bef606ed5e21-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d62cf904fef3da6840987d4c137a0a4c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e6f27fcde066911e92e8bf32b9fbce66-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/96652e184413b8859f249233bd0eaa48-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a45573e8b2168e82e13e79f3acdb999c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ae921f445176393c1f8e161ab5c93ca6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ab5be7c93f1f900c683afd8d8f1e31a0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cffbdb086d278317b382f7eef104b79c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fb8c2a914e55c609c2838cbd8845ed15-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/daef20c2d2c69bb239a6fc070d4a6ff6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/44abdc96681ca662a61563fcfa7aa8d7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2b3b0aa716478b345f07f9f08fa55241-cc_ft_1536.jpg,207 days,1545,43,,"Check out this well maintained single family house in the sought after Morris park / Indian village section of the Bronx. Walking distance to Albert Einstein hospital and Montefiore. The property is in walking distance to all transportation and shops. This brick semi attached home offers 3 bedrooms, 1 full bath, hardwood floors, great size bedrooms with plenty of closet space. First floor offers a big living, dining room and kitchen. Second floor offers 3 bedrooms, and 1 full bath. Fill unfinished basement. Boiler was changed a few years ago, and the roof is only a couple years old. Give us a call for more info." +29854467,3795000,1853,5247 Independence Ave,9,8,https://photos.zillowstatic.com/fp/d2f36cf2dd01bace288ef583dd05782b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/35b6ecbeecab3357211a66c3f2767162-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1bf017053935b64a61c92b7a6ecc5b67-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f9431122835c6aa5d80ce40d2f6919f7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a25f3cb0a69b3690b331369af2cc6d99-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7067c41f39df926f971719ee213c666d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f612f1161691139b81e9c03392fd7583-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a35cf6caf93e5d9278e90352eac17fb6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0fffc4f6cbd420695d4cfea109f7aa89-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/abbc958835767b739ed37f85083bf87d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0245080eae823421a387bc08e76f7c7f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/01ef81ad21021f00e7459aeea4a0c501-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5aa81249099a368649030d94018fc1e1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0b244d3968cd820236e1e5942506f84c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/34e6cf07bfb0622cc86f279f6a018528-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4490372fcf5d9fb83e3980e761cfa6ac-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2b182ce44a0b6b7031bc6a0389730900-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fd926d12f0ac769ea251ff653bff9baa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9c5d55f0fb2eb86998d2b16c837e95b6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/df312f4732289312ebcc408abcc6dd75-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4572adb498eace6518e7dd85c0de6892-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/31c0356ee1cc6ed1e447846d21c891fa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8cc6d03cbb7f800dec181c78eb963f28-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/46f0fe01ba0817aa9084f3e3b46d824b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fb1534bb5eda7628c8f90c79891ed246-cc_ft_1536.jpg,99 days,1499,80,Wood-burning fireplaces|River-view terrace|Colonial revival enhancements|Spacious deck|Beautifully landscaped parks|Oversized balcony|Luxurious master suite,"Discover a rare and exquisite “Gold Coast” estate, nestled in the prestigious Riverdale Historic District—one of the few remaining neighborhoods in NYC where grand homes are surrounded by lush grounds. This property, the Henry L. Atherton Villa at 5247 Independence Avenue, is among just 34 distinguished residences in this historic enclave, where even a young JFK once resided nearby in 1928. Conceived in the mid-19th century as an exclusive “suburban summer community” by affluent businessmen, this magnificent estate showcases a stunning blend of Gothic Revival architecture with refined Colonial Revival enhancements, completed in 1910 and 1914. + +Spanning a stately 10,000 square feet, this impressive home offers 9 bedrooms and 8 bathrooms on a serene 0.61-acre lot. The exterior preserves its rich historical character with striking features such as two chimneys, gabled slate roofs, elegant Doric columns, and a porte-cochere. Inside, the exquisite original millwork, gleaming hardwood floors, and generous windows exude timeless charm. + +Enter through a grand open parlor with a fireplace, once used to greet guests in sophisticated style. The first floor includes a formal dining room, a well-appointed kitchen, and two refined libraries with bay windows and fireplaces. The expansive living room opens through glass doors onto a stunning veranda, offering uninterrupted views of the Hudson River year-round. + +The home’s split-level staircase leads to 9 well-proportioned bedrooms, thoughtfully arranged for privacy. The second floor features 5 bedrooms, including a luxurious master suite with a river-view terrace. The third floor houses 3 additional bedrooms, perfect for family or guests. Several bedrooms boast wood-burning fireplaces, adding to the home’s grandeur. Enjoy breathtaking views of the river and Palisades from the spacious deck and oversized balcony. + +The Riverdale Historic District, designated as NYC’s 54th historic district by the Landmarks Preservation in 1990, is home to notable attractions such as the Perkins Estate at Wave Hill. This area offers beautifully landscaped parks, winding tree-lined streets, and an array of cafes, restaurants, and top-rated private and public schools. Located just 15 minutes from Manhattan by car, subway, or Metro-North, this exceptional estate provides a seamless blend of historic elegance and modern convenience." +117451332,1645000,2008,129 W 123rd St #3,2,3,https://photos.zillowstatic.com/fp/eaf78e5ed8ac038cc46613827ef54d31-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3b3bd3cd57788f25430ee25bc02f5fa6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6a5187babaae5f57b012ec742211b65d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/69f226fc9979f303f0d237f50f87d8a0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4961b067cb0c5b966ad8f62211d257cc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/834b3b0397a79ea70a8124156390c7a2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f45134383305f983bc57c04a45c0f52f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e1024de45808bbf60b5e8e641afe8a90-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6ea03baa58221f821453593b94cb378a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bf502fa10908769beefb7c07b1c90c93-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/95b5c6ca0894865614d2d15617fc280b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d82a7d865a26f0d5ab275abb8b31ea31-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/94d08cf15cb188ceb873cc7835b53172-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dd429b17f04d77d6971a7124cff7db28-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dca9e54022df84af1057eff2c5423ec9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3ad64a9e6b048ff6eb1be2b2297aa85a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9e87708e293561ca7e3f9300bddafb74-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/badd63b5c5ee5a03f112c0eef002c276-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bfd26fc319e0ba2a51f8a5b080e2628d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2007932f74dd4526a5f1b2a1866c87a0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/538ed0b3310c7d93703ead7daad6fb95-cc_ft_1536.jpg,4 days,216,12,,"Stunning 1,715 SF Loft with Private Elevator, High-End Finishes & Private Outdoor Space + +Welcome to this beautifully renovated 1,715 SF loft, a full-floor residence with direct elevator access, in-unit laundry, expansive south-facing windows, and a private 100 SF outdoor space. + +From the moment you enter, you’ll be captivated by the chef’s dream kitchen. The 16-foot white quartz island features a built-in seating area at one end, comfortably accommodating five stools. This one-of-a-kind kitchen includes: + +- Viking gas range with Miele hood +- Wolf induction range and hood +- Viking oven +- Wolf Professional convection oven +- Sub-Zero refrigerator +- 150-bottle Sub-Zero wine fridge +- Gaggenau Barista built-in espresso machine +- Porcelanosa backsplash +- Custom cabinetry with pull-out drawers, glass compartments, and a built-in device charging station +- Kohler touchless electronic kitchen faucet & deep kitchen sink with --- Garbage disposal +- Bose surround system with SoundTouch Amplifier +- Stylish pendant lighting with recessed electric wiring in the ceiling + +The living and dining areas flow effortlessly into the kitchen, creating an inviting space perfect for hosting. + +Living Room Features: +- Floor-to-ceiling windows filling the space with natural light +- Porcelanosa-tiled fireplace +- Bose surround sound system, providing an immersive entertainment experience +- Samsung 75” flatscreen, linked to the Bose system +- Soffit lighting in the ceiling for ambient lighting + +Dining Area: +- Comfortably accommodates a six- to eight-person dining table +- Juliet balcony with new tiles +- Oversized chandelier with recessed electric wiring in the ceiling + +This floor-through loft boasts two spacious bedrooms and three hotel-style bathrooms (two en-suite) with deep soaking tubs and Hansgrohe fixtures. + +Primary Suite: +- Spacious enough for a king-sized bed and home office area +- Custom walk-in closet +- Spa-like en-suite bathroom with: +- Hansgrohe fixtures +- Radiant heated floors +- Double marble vanity +- Deep soaking tub & walk-in shower +- Soffit lighting for reading in bed +- Private balcony, recently renovated with new tiles, water spigot for plants, and a BBQ setup + +Second Bedroom: +- Comfortably fits a king-sized bed +- Large closet +- En-suite bathroom with deep soaking tub & radiant heated floors + +Custom Laundry Room +- In-unit laundry room, custom-built to match the kitchen +- Bosch washer and vented dryer +- Ample storage cabinets & shelves +- Deep sink, folding area & clothing rack + +This boutique condo features only eight residences, each occupying an entire floor—meaning no shared walls with neighbors. Additional highlights include: + +Rooftop terrace with stunning Central Park & NYC skyline views +Virtual doorman for security & convenience +Central HVAC & radiant bathroom heating, both included in monthly common charges, offering significant savings. + +Located in the heart of South Harlem, this home is surrounded by the best the neighborhood has to offer: +- Easy transportation: Close to the A/B/C/D & 2/3 subway stations, getting you to Midtown in 15 minutes +- Supermarkets: Trader Joe’s & Whole Foods, just two blocks away +- Outdoor space: Marcus Garvey Park (including a dog park) is just two blocks away—and yes, this building is pet- + friendly +- Dining & coffee: Around the corner from Harlem’s top restaurants—Barawine, Settepani, Archer & Goat—and great + coffee shops like Pastitalia and French Pâtisserie" +94641563,7500000,2009,5000 Grosvenor Ave,7,8,https://photos.zillowstatic.com/fp/c4d64816cf1a1ffb49b232c9ca64c4bd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3742e51f8656a22717982659c0b23e0d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1851493e9f9d12595649dd882ef4ecb1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/05dd9475afce9aa1b7654c950d47bc5c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a0cd0d05d7eb43ff1444d9ffed2278e9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/db2a1977b77979abdcc15cbbd230e22b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2a37d1bcb9dc93dc8ab9a68bbac6d94f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c4078764933f30e397a1cd370f218705-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1d1a8426aa7523d33c5314deb2267f16-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3d8c54c3bd4a283fd317bf11f5339808-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4bdca6912a67a009083950c75f722d7b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f169fd5362fc0600092b8b695f21dd09-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8ae65a92cdc1350832e3c2d537595d15-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2aa9ab1ecc2eba23a132086cbe582d32-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/39c0684a7354ad5a4c7e8e134fa4dae8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9e1af938b5cefe9eca810affbea1b953-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4b21011dd6bad4dbcc8643377e0642df-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0ba1f2687902d988591610652abe4340-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0a387311cba62d3ed951bfaa65cab226-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7faf534b969354b1ff259ccd167ab969-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/41c5b3f52aa3e53b29dfdd336ae1e353-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f5ec38854d19db093b4308c04af8555f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3c40612b1860d153610088011f32a8d2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/98de2a8a673f04897368afff724ab2ee-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/30a83c65e1ca3a37ada98b67db61f9ab-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a88cd13799aa74ba0088002f483b79ca-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9da89530801daef804b3728ea0d541e8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/eca88fb9551d6f7486ef6763a770268e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5eccc7e98159ae2dccbd895517d3de11-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/50d94ded1e9323287dbc60532e74fa21-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/94183aa0dff32be4b37cf02e80d3c01c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/588bb3c9c95f6751fca6de9b36ff865f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/85aa43886dbc06e4773b6819d489d748-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fc5e3f0cf419f73e3adddffc03d794ce-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1112d15e825c2291f8816298dc37dfaa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/983bd8c9df11c2882a844ccefb0d4c11-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/835c46b0dfc9034d291ebc621949be4d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e4d117522ced0ed2dc011a14be982ab8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/212b1bf261bbe771b55bfe11e1cb4ab1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/34dddfad339ab6a4df7f8324f533029e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cce624211ee10f5135f22420a298e4ed-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/faaa03d8148528031b5890ee53280bb6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b8c0f784da8a2d32871efacc5954513e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/74ece2b6b16e0479ea17e2a571ba1dbe-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/df85f17bbd1e022dbedcda28a2597617-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b8010babe630b48204c45833d2829ad1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c30bd846cf74a297f695fdedc0366449-cc_ft_1536.jpg,86 days,2105,114,Walls of windows|Columned entry porch|Large level south lawn|Brick patio|Inground swimming pool|Private sunrise porch|Stone wood-burning fireplace,"Exceptional & Grand 7-Bd. Shingle-Style Mansion with Pool & Large, Level, Grassy Grounds + +This exceptional and grand 7-bedroom, Shingle-style, mansion has 6 full and 2 half bathrooms and was built in 2009. Extending over 14,000 sq. ft. on four levels, it enjoys exquisite details and luxurious amenities, including an inground swimming pool and large, level grassy back and side yards. + +Set on more than three-quarters of an acre, the home, designed by Robert A. M. Stern Architects, sits along a leafy street in the exclusive, private community of Villanova Heights, adjacent to Riverdale’s Fieldston Historic District. + +The house is graced with a columned entry porch leading to a mahogany front door with glass sidelights. An impressive double-height center hall connects to a living room with a massive wood-burning fireplace, walls of windows and glass doors out to an inviting wraparound porch. The formal dining room with coffered ceiling leads through a butler’s pantry to the center-island eat-in kitchen, which is outfitted with marble and granite countertops, 2 sinks, 6-burner stove, 2 dishwashers, built-in microwave and warming drawer. There is an open family room with a gas fireplace and a door out to a broad and deep back porch and steps down leading to the rear yard and pool. The main floor also includes 2 powder rooms, a large office with pocket doors and a mudroom with a walk-in closet. + +The second floor has 3 en-suite bedrooms, including a master suite with a sitting room, fireplace, private sunrise porch, 2 walk-in closets, master bathroom with radiant-heat floor. There is also a 2nd-floor laundry closet. + +The third floor has 3 additional bedrooms (one with its own gabled terrace) and 2 full bathrooms, plus a windowed office/storage room. + +The finished lower level includes recreation, fitness, laundry, storage and powder rooms, plus a huge family room (it’s 27 by 45 ft.) with a stone wood-burning fireplace, oversized picture window and glass doors out to a brick patio and large, level south lawn. + +There is central HVAC and an elevator with access to all floors. The roof is natural slate. + +The private multi-car driveway leads to an attached 3-car garage. The property is a corner lot of approximately 0.88 acres. + +Conveniently located for well-known private schools (Horace Mann, Fieldston and Riverdale Country School), the vast greenery of Van Cortlandt Park, and transportation to Manhattan (including express buses and the No. 1 subway train)." +337631961,299000,1951,3840 Greystone Avenue #2S,1,1,https://photos.zillowstatic.com/fp/d52b77bdf515c34cd8bab82e9475f016-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/25d85b74eb8467ae8a5ef661f0a32ea1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e32d32b42b45d70f601847248a981b1f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9d66712fc38dd64701fdd0cb2f30da5d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/35a2fb50a9a50da10fe0b1172de28dfa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7ddb1d7596a51a090998e0a1f6da6e92-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f38e4020ea4c7ddb57a0c90c6f01939b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a3b4c9716cb82f96dac0541b27269b6e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/621e7be208e6008a219437c2ea72a0c1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/16fb8306077ae808cd90f21efd950407-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f4d8ae64e47391eeecbd0f4c1b6f9860-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3567e709d2ac2d7a284325629ac57087-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d553e37d937fea6569cb72869c7d18be-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/04a3ef6ab0973dce331fa227b8f6bb7e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/783d95badd849ccccab69677f2f4ca9f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/daee20eae035e86c849547cf70b47e79-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7a3315a57f247a1321dddcbf82a6c812-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ef7427f7d34c01f76e6873d9b39eef39-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/64f33a9828036228798e21606e3503a0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/10f5240c20d38a9407939b4e95587095-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1850bd60e9ec00923d5822335e131ac7-cc_ft_1536.jpg,44 days,1307,99,Stainless steel appliances|Brand new windows|Ample closet space|King sized bed|Tree-lined streets,"Riverdale New York only 15-20 minutes from midtown. Near Fieldston Private community including a few prestige schools including Ethical Cultural Fieldston School, Horace Mann, Riverdale School, various Yeshivas and The Manhattan College. Restaurants of various cuisines around the corner, including the post office, dry cleaners, hardware, pharmacy, cafes, pizzerias, bars and gym. Take a leisurely walk down the tree-lined streets to the playground directly in front of the building, Riverdale stables at Van Courtland Park, or to one of the many locations mentioned above. Nearby transportation includes the subway (#1 train @ 242nd St station), BxM3, BxM2, Bx7, Bx10, Bx20 and the Metro North with a shuttle service to the Spuyten Duyvil stop. If you prefer to drive, jump onto the Henry Hudson Parkway, Major Deegan expressway (both are 3 minutes away) to Manhattan, Westchester, Queens or Brooklyn (south, to go onto the George Washington Bridge into NJ or north, towards Rockland). A pet friendly co-op building with an attentive Superintendent/General Contractor and a handful of porters keeping the building well maintained. Enjoy a clean on-site laundry room with various machine sizes to fit all your needs. Additional perks include a storage room for bikes and personal belongings, elevator, and a parking garage (wait listed). If you are anticipating a package and not home, be reassured it will be waiting for you in the package room. The building has a connection to both Verizon FiOS and Optimum. The building finances are impeccable and are available upon request. Light filled, well-maintained 1 bedroom apartment with stainless steel appliances. The bedroom can easily fit a King sized bed and has ample closet space. Brand new windows. Come and see for yourself!" +215954720,204900,1964,2390 Palisade Ave APT 4K,1,1,https://photos.zillowstatic.com/fp/aac5c4d06f226a7a059156419abf2d23-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/caba6b6b3bb8eb6eabf0e116d377ae3b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/731f2f2e195114d89af23831cd785449-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/373f5be3e006e76bb0499fb8368088e4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7f2a426b19a95ad38c63fd032c369467-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2a699780d34f515b8d0a56b27b60ec76-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e1043f24484c1649a08fe62e46ec70fc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/20347ed50444f7ca8538281da7b69851-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d02a75ef75563b4f501b4fd56c4e2018-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/37e8f98d08509902518850996801f361-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/393a5bcf4872851273cfaf9b7c94ca7a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/03cba720d307ce54d4b10934ec99f4f6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8713032bafd3dd6e0a71e349e4f38406-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c7d42478bf9c8ef242b2de5b58f1bb2e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7211eb8935dec9bc12f43c1c085db183-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/71f1dc892a99b54fe0d4549a962a4c6a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0bd56d96e1ecdf2861d342d47d0e0b36-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bd9a376736aeb2bab80e990f24029f72-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bec6faa53c95dd35df33d83a76e44c0c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2f9d2072628d06650e7d8295f8d9d3a0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7095c2d1f0c4ba09d0e9fcf2d6b9c35c-cc_ft_1536.jpg,795 days,408,12,,"Located in the heart of Riverdale this 1 Bedroom features a generous size living room, a fully equipped kitchen, a spacious bedroom, and a dedicated alcove dining area (bonus space) that can be used as a home office or guest room providing a comfortable and versatile living space. The unit also boasts ample closet space and features hardwood floors throughout, amazing sun exposure. The building offers a range of amenities that include seasonal pool, 24 Hr. Gym, Laundry Room, Storage, Bike Room & Parking available. Short walk from schools, public transportation, restaurants, shops, and entertainment venues. Located just steps away from Spuyten Duyvil Metro North Train Station, 22 Min To Grand Central. Don't miss out on this opportunity to live in the heart of the South Riverdale. Also, available for rent. Contact us today to schedule a viewing of this incredible Jr. 4 unit." +331449456,140000,1926,1372 Shakespeare Ave APT 4C,1,1,https://photos.zillowstatic.com/fp/6067321cf80773e478d84b467b12428c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/085c5b245f1c3a6a761d351e0cf22b3d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7f03bb42e239a956b7e2b92fd9e02e25-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/275f6a8e697b2b55e098a95d6809d71a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dcc5337e85da689a2344459c85ed978e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bae230aa4e78425c834bc9f8968af661-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3553aa8dd7145dae5f1de8dc227bfd22-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5802dd3b8ce26ce6752e8ee20efac09e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3067362c20d58919c8719e07385c3a7e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b76347203870f10e2f3adbfb49305490-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d094da296d1f59dd31163c7eb06ce6e5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/347eb731825dc9fc47e65b2e1ddbc508-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6a525afb3dc8e26dd7448bc1836bc8f7-cc_ft_1536.jpg,1 day,347,22,Walk-in closet|Thoughtfully designed layout|Gleaming hardwood floors,"Welcome to 1372 Shakespeare Ave #4C, a recently updated 1-bedroom, 1-bathroom HDFC co-op in the Mt. Eden section of the Bronx. Offering a blend of comfort and convenience, this well-lit unit features gleaming hardwood floors, a thoughtfully designed layout, a walk-in closet, and a renovated kitchen with stainless steel appliances. The unit is located on a 4th-floor walkup and requires primary residence; sorry, there is no subleasing. Limited financing & first-time home buyer grants may be available; eligibility required. Own for less than the average NYC rental. This is a fantastic opportunity to own, located near public transportation, shops, and parks." +352286586,989000,2024,3167 Ampere Avenue #A,3,3,https://photos.zillowstatic.com/fp/e7eb123ea269222a838448df6f9ff833-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/34eb8e71c1ca3f5541a73475e620a05b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b2d8d7cfc301d5a34cb405a90a0ac6ca-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e1bef4b2dae1b4c11077035c3d810d01-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b05a1c1db9e541c9fff061a924dca9a0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b791e38a9b81d272d8a78d0544661dc6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e9cbe81ad6e291e403976a8a273f93a2-cc_ft_1536.jpg,259 days,422,8,,"Additional Information: Amenities:Storage," +447651114,1030000,2025,953 Tilden Street,4,3,https://photos.zillowstatic.com/fp/7ef93183d55464237a95b5afbf3e1440-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f2b868bab8e18511a2d1c4b5b4a24435-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0f500851b99f7d90df3e2574c4cfc647-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a5bfdbba1c39803066e1275ecdb83100-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ad6e39b8ae3f4af12a5bc021becec442-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/290babf1a154be84bb64aa810779e9d9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/eae53796e044d393699b58d4f36dee3f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1dbfd778a9d4669ec39f72870f2b9e86-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a1545d341d463ddf918680612ada2638-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d5b9231a7a9a68bf67c34ecb90a1967f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fa4ac8f37217a3f221026f817ea794c7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bb7a2b884fb6ae62b4f957a8e7a1edc8-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b69727754864084d7fb7fc8ddefe351b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1f50ca97bded69b8d0d037bd21207fdc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ffd312da4b2bb23f5e3767fbd4de6bd7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c10431e3a2907adfb8641eeeb9b1025d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b4a5b23ab2fe238af7bf1975b1312b83-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/542e85c98c84f05549c1e81d3b4e1e4f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a2598a8bd006e94664ce51b8dfc9db4c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4010984da4a1a8a1b6e4c39b1d134423-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/053120671f5f083805c41d47cb6c54a7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/217783b840ddd7cd3eb9cba754fa0197-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7dcfbb7c98d3ea16cd2426d76f088a99-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/da1a6b01412517c2cb4adaece5fab484-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d9f846649fd622cf22227d0bc94e321c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e59fa80f0f64abeed634f094230bea1a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e29ab74663309dd0d54cf21f5db44c1b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e48bcae4b815594112dba6d5187ac80f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6fd0ce4c61ecc9520d986abb10620ec4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8fe94656cffcd6c14876124e0c77a602-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b2397a023e57239c385983fba22226f2-cc_ft_1536.jpg,5 days,715,24,Abundant natural sunlight|Finished basement|Second bathroom|Recessed lighting|High ceilings|Utility room|Top-of-the-line materials and appliances,"This newly constructed two-family home offers the perfect blend of luxury and functionality. Featuring a 2-bedroom over 2-bedroom layout, the first-floor unit includes a finished basement, a second bathroom, and a utility room, providing additional space and convenience. Built with top-of-the-line materials and appliances, this home boasts high ceilings, recessed lighting, tall windows, and abundant natural sunlight, creating a bright and airy atmosphere. Each unit comes with its own dedicated parking space, adding to the home’s practicality. Whether you’re looking for a great investment opportunity or a place to call home, this property offers flexibility—live in one unit while renting out the other or maximize rental income as a full investment. Ideally located near public transportation, major highways, and all daily essentials, this is a rare opportunity to own a modern, move-in-ready home in a prime location!" +29822588,750000,1965,2436 Tiemann Avenue,3,2,https://photos.zillowstatic.com/fp/cba8d071c38cbc4f22a8dbba8509eda1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/574013993a47dde9ced0fc614bc27a45-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f33cf3537c2da70ab7d89a0fc0433983-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bb4aed86a4a7549f8b5c9662c2034cd0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4b2ff23c0cb9b19b0e8b787a3a149756-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/102cfbaa69a719b1dd33c9e5b8b7b62f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/77220a525a3467cf9cfc0028da216d91-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1e6f11d6e295b598fe955b046702bb5b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9a4a2cdc8f3045abe14e1c4570f6fb92-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/33475426703430e446f39a05eb783fc1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0396beaf71536404f9e57ef6152fddbe-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/03f4a74537832ea841ba6af1a32b2d80-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a111185612163d66a8269a419eb91dc0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/be46377d6592f8a5e3beb6f1babc9426-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/851a4b791d312ef56f4b239c975d9076-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8fdeef0611af72d56127282ff1576d62-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/95c76743a84a12f647484e0ffbe9c172-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/226c88b908d0a806f8ba935141458c6e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/52405b6cb4d4a4a7269d762e0f923b31-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4a1493cf0f553f9793d813adf01449e2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/01230dd4048a47a5c3390c3fb8cc5d17-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b7ecbc1109917e1ee1c56380f869a55a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1ba0d61b2019bdb7d122e9cbbb66b124-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a94ac172c17c53a547aaa29f2887ef9b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/710c838b11cff4be122c2ac349750e7f-cc_ft_1536.jpg,48 days,682,26,Modern bathrooms|Private backyard|Spacious bedrooms|Full finished basement,"Welcome to the best The Bronx has to offer. This delightful residence features 3 spacious bedrooms and 1.5 modern bathrooms, making it perfect for families or those seeking extra room to grow. Located in the vibrant neighborhood of Pelham Gardens. You’ll enjoy easy access to local parks, schools, shopping, and public transportation; this location is just perfect. Some of the highlights of this property are; a full finished basement, the private backyard and a porch. There is also a driveway that has 1 car parking space. This stunning property has it all. make it yours today!" +346784856,799000,2015,68 Island Point #68,3,4,https://photos.zillowstatic.com/fp/22132ec15c05603cfe297355ab5cd914-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f44eeb174f2e5f09209bce06222a465f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/911fbbe011ad2a6f06a7b3d6d47c8845-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/42ff5d0ddc9e7cc19f00be07affe3c7e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9259690865afe93b9daed25aaff95873-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d38a8495671ec7e786d727ea9639121b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8afe0ce9a90b039e2488ea21daa99c35-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d940e1fcc8e646b3edb8432053a27ec0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fd9b52c1b201047233125e2a9d243e07-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/95d48d41beac9af073a3189d3a3db4ea-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8a4d00bc33f8d70e3067709aaf13387d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3d09022880458e1be058155b0bf936f4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a22fb640f91837f0a24127bcf8534ab6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c7386bd00c558ac43ea870c090cc0ca2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/78e1bcf605b65a56265a3fac0547864a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/532b170b3c805f1021a76ce9f6ffb975-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bc6e4153867a66db6c8046c1255eb5dd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6c5543530465f97a0347d755bfbbb0ab-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9eb88a8e236550e248be44fd4930527a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8addef9961c8ad7dcb6199cee54cdd59-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9e06a3a3fdd96348a963008306971084-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dafce750298716f1456cec7b0886d51b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c5ce95e596d31ea832df2860afd42c0a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0efab87111c08f8bb5f7a88d4d61db0d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6f77843f6048e146d87e1b526f0f84d7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/741c09943539ac50602016d2efba27ab-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0d679d5f6693dd155e433557a375d35c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/376315be1a4367323c9aa27c8b825169-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/58cc2febfb4a3db7cb0839a46632f2fd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bb600b0a31a15c9a3b9fbf487b2cc5b0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/25b95d6890551dca7d9bffed17469180-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e2f96cdc2c0d0f509209653584e8fe03-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/dc4d56e344d5ec8c1fb8049fa93ab565-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4e6224c20fc7fc043d7b5daaf98957aa-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c0e5d1b0bfaaa552937c13b3c1340f36-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2d4ea48a637f9c39a4874ecb36a32254-cc_ft_1536.jpg,4 days,290,17,,"Enjoy life to the fullest in this 3 bedroom 3 + bath condo corner unit with eastern views of the Long Island Sound from a private third floor 35' x 18' deck and a 12' x 5"" balcony acessible from all the main rooms. You will enjoy the year round dramatic sunrises overlooking the Long Island Sound. High ceilings, Andersen windows, full size washer/dryer, gas fireplace, central air, GE Profile appliances, abundant closets and lots of natural light all make your life better! This home features an attached one car garage plus a driveway for a second car. Located at the pet friendly ON THE SOUND gated community which boasts a waterfront esplanade, guest parking, a pool, a gym, and a party room for your use. Low monthly taxes of $534 and monthly condo fees of $1,161 includes all amenities, exterior maintenance, snow removal and trash. Easy stroll to the main street of City Island Boulevard to take advantage of restaurants, cafes, art galleries, street fairs, beach clubs, salons, and all the services you may need. Perfect to live in or rent out if needed." +29846246,850000,1925,835 Dean Avenue,4,3,https://photos.zillowstatic.com/fp/c89829c030cd4bffbe2e711ede649d27-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2bee648aebe7e01d1f16168f06795a8a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ce40367ee3396bda67614ef0c057b65d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0c96a5f2afd2353707c2cfb48eab82b0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/36bfa9c607b9e7dd88dfc02a7893672f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b982f73bee1d5f38654227181765f9c5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ba1f89ec1f239fb939234a031f8aefa0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6806c9d59a10cd268429f4ae601e006d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/76a15ceb3a0ec9c30be773e30f8b5b1e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/846e14c9712ec800379642616652efcc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bbea52d85142868a9c60e460259d50c2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/01c556d934086361df311f6d19cff7f7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f5a42a85c2a2718b263c010b32a84687-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1fe23a4dcc60ac0fe83a9f0a1e511177-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/240bc824811d56c1f6e37b9702b7bba1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f3f69598fb3c8bc04cb24adddf9661c0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/67635dd166a4a75b9aa54ee1b582d67a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/919371524aa56ca084c3cbfe0208138f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6ad65ae60461dbb413a5bcdaf0c21d52-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/740dc0e15937bd3961bfb888f4df13ac-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3e1bc85ecf3eef5b2bc830a99e11972a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fc0b3486ce74c7f2896df0abae159b47-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6ce26e292c561b49c49494c9cb7d9a48-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ebc45aaee7da072fd212f0b4ea3c496a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/23146dc274dd9683f39df66c67d5ef68-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4586770bbf90b8624fa984c608cbece6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ff0fa90506ae8b6bbf96cbefef79e678-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1fa4e7cf8feaa08213f250c7c6219775-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8fe95342400929e462f6327c657e52bc-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1a5c2e6653c6fe87bfa2706767a1f5ee-cc_ft_1536.jpg,38 days,525,26,Lush backyard|Finished basement|Ample workspace|Beautiful bedrooms|Laundry area|High ceilings|New stainless steel appliances,"Exclusive Country Club Paradise! Natural Daylight from Sunrise to Sunset! This Gorgeous New England Style Gem is Perfectly Situated on an Oversized 3375 Sf with Serene Water Views of The Long Island sound! This Comfortable & airy Sun filled Home has Historic features: From The Authentic wood Floors to High Ceilings and Original Millwork! The First floor Features A three-season sitting room, Modern full Bathroom, beautiful Living room, Dining room, & updated Kitchen with Ample workspace, stone Countertops, & New stainless steel appliances. off the Kitchenis access to backyard. The 2nd Flr ascends to 3 beautiful bedrooms and Full New Bathroom & Then to the top Floor in Nautical taste a Large Overlook Bedroom with incredible waterviews! The Finished Basement Includes Full Bathroom,Laundry area, & Storage with Access to the Lush Backyard! In addition, The home has detached 2 car garage. A Must See!" +29815205,775000,1920,1847 Haight Avenue,3,2,https://photos.zillowstatic.com/fp/ccb4d70c4cd8ecd1a4ab599df2391d70-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/848890fe8c4a6cd915da501a569c46a6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d91addb4e45bc2cb675ebf3ef3aea1dd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5262441145ca9b5977e10e304f172c3f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/916321a56408afabad29db4411b1a6d2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f4b251680e9a2e9f8c8266cfe2437b83-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3ebe0bca392e175e8d636d08c6538cb3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/3523e839d6752ef57af326d4792c14a6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d74f8b4a12da813433dc324c6b47367c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ceb50ca20ded8ae21fcc1bf41e3c46fe-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5c89c63a1331d21df6cca5ec1a087dde-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/2b6315e4cb86c4c3ff85be39d8b8c5db-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d7073c1df095da9253e8237dc6fd6737-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6e83acf86a088854e30d60198f2dcf1d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f384e67a90cd0eae493d952e2a3f0056-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/685b9990af24d8b69d6d239ae38f034d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/fcf2c6de8b78cfa203b9bba8d63456e3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b0d1c7f31e569dbdbb53e301fe946de1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9105cb8f7eb8d37229a5df16ff22a07c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/a885161445ebefc23fb06343e8c69cc5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/72660198db499c5e4d2ce5a4b1b39f8a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/86705a0f3ef4f78d17daaa083996205b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4cc311ddc41c58e3d65b731aea8b41df-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/06a71886bd8ffb494eba737ee5568bf2-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cb3335d519d1fae00af7ad3a6e34f031-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/5107f961eca87b22217064a9d56286df-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7a8d2a82dc0bd4c67be18a9e1d5a7f97-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/c16a6d555c6f3fcf84176ce009a16871-cc_ft_1536.jpg,133 days,1243,62,,"Morris Park frame detached single family with finished basement share driveway 1 car detached garage. 3 bedroom duplex with Sun room, Living room, formal dining room and EIK. 1.5 bath. Full finished basement Additional Information: ParkingFeatures:1 Car Detached," +29821923,825000,1945,2555 Morgan Avenue,3,3,https://photos.zillowstatic.com/fp/2d524a7ef9bc2e5474a5ca02ac6e01b7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6449648ff1896a89ac1faf215efb568c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d8e17fba2359bdcf2ec5a325abdbc898-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/312808bb57d1c9eaf63ddf34521ab1d9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/59e910069e6831eead68aeb9f199e531-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/75a8148942053fb86fe814497f880f55-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/ea258fffd887438b196ff6c5471d3841-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/b40e8154e40b6398f381ca0943c30014-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/4092b8d14abd7030671c036e0957bdc7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7e0af8b0eb569d20aeb97b841ef5d2e0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8fe7a565dfffa5ff2f30fac17b0765b0-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/184c7f805efd8dbf7417c0a00b9cf3d3-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/efacce8923d6f3b1e8644e3ee27736b1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/aa45ad2118a05ae319c51c2a4f933a75-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bc68daca20e66ea5704bea3b4c61c9c1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/19d1f6a4e3ee67e6b14efbef34e9223c-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/54bc65c1a443ec7764318c324ae580ac-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/8f6aacb20ab5a219d0b8a2187b802b18-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/123af7d4af621f3d68e441996562f88f-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/112189ca3d394e5a68a3154ca5a7d1e4-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/008e2c5602a0c2a9f46c26377e05d8ed-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e4f3171a68dc337ec05fb3283411176d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cdfdc1bf7044d3147a8e28a2bebe978e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/d63d321667d8ebb3629e020aac4a9281-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/37dae4218c216b02c5d12219e88666a1-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/27844ae8de4b1e565dc5881f2b39ca5d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/0037d9e04df66a0b817d5569328dd2d9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/607852c9508f35bd474a351a9fd004c4-cc_ft_1536.jpg,57 days,1574,36,In-law suite|Modern features|Laundry room|Access to a balcony|Summer kitchen|Storage room|Updated kitchen,"Welcome to this charming Colonial duplex located in the desirable Pelham Gardens. With over 2,500 sqft of living space, this home offers a perfect blend of charm w modern convenience, ideal for multi-generational or rental potential. The 1st floor features a foyer, bright living room, formal dining room, powder room, updated kitchen w modern features and access to a balcony and yard. The level also boasts a bonus room that can be used as a home office or bedroom. 2nd floor features 3 bedrooms w ample closets and a full bathroom w tub and separate shower. The lower-level includes an in-law suite w summer kitchen, family room, full bathroom, and additional bonus room. This level also offers a laundry room, storage room, and access to a 1-car garage. Situated near Pelham Bay Park, City Island, and Orchard Beach, this home is positioned to enjoy outdoor and recreational activities and close to shopping, dining, and transportation. Schedule your showing and make this exceptional home yours!" +97528691,850000,1900,807 Riverside Dr APT 5B,3,2,https://photos.zillowstatic.com/fp/3b64dd66ed13cefd79721fcf76e44ed6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6b3daa555928f509caa640cf149cc8d7-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/09ead353d114db84c1bc568e4a7477f9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/15ca3fc62ec6a152e492c61675163809-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/95a8996ad9deec704c1915d0f05b745e-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e761a84a9f087e3886cbae058fcb70b6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/435079d4f1f55088ddf3d811e257faff-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/aa75655f286dfd29b1cd5e7d5506d391-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9fdf2ec3de05e8c11d4dd90c4bb00007-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/1566b1da4a5b73ed035071f47bb77b22-cc_ft_1536.jpg,275 days,1461,67,Abundant natural light|Open sky views|En-suite windowed bathroom|Bathed in sunlight|Recessed lighting|Peaceful ambiance|Granite countertops,"807 RIVERSIDE DRIVE | APARTMENT 5B | PRIME WASHINGTON HEIGHTS +FULLY RENOVATED | IN-UNIT W/D | OPEN SKY VIEWS | D/W | PASS THRU + +Please note, OPEN HOUSES ARE BY APPOINTMENT ONLY. Please email the listing agent directly with any questions or to schedule an appointment to view + +This is a tremendous opportunity to own this serene and beautifully renovated 3-bedroom, 2-bath pre-war condo in the historic Audubon Park district of New York. Situated on the 5th floor, this unit offers a peaceful ambiance, open sky views, and abundant natural light throughout the day. With its modern finishes and charming appeal, this 1220 square feet home is sure to captivate you. + +Step inside to discover the stunning hardwood floors and recessed lighting that enhance the living space. The well-appointed pass-through windowed kitchen boasts crisp, white Shaker cabinetry, granite countertops, and stainless-steel appliances, including a dishwasher. You can enjoy a view from the kitchen into the great room, a combined dining and living area. Adjacent to the living space, there is ample room to place a dining table, offering you a flexible layout to suit your needs. The apartment is also equipped with a brand new, stackable, vent-less, Bosch W/D. + +The three bedrooms at the back of the unit are bathed in sunlight and face the west, providing a bright and airy atmosphere. The corner bedroom just off the living room has beautiful, fully custom, French-styled black metal glass doors and currently serves as a library, home office, or additional living space, adding versatility to the space. It can easily be converted to the third bedroom and can include a large armoire, if needed, for additional closet space. The primary bedroom features an en-suite windowed bathroom with a bright, white-tiled, stall shower and a large armoire for additional closet space. Each bedroom is spacious enough to comfortably accommodate a king-size bed, allowing you to create a cozy sanctuary. + +807 Riverside Drive is an elevator building located on Riverside Drive in the breezy neighborhood of Washington Heights. Laundry facilities are conveniently situated in the building's downstairs area, and a live-in superintendent ensures prompt assistance. Immerse yourself in the vibrant community and take advantage of the nearby Broadway cafes, restaurants, and easy access to the 1 Train. The Hudson River Greenway offers picturesque views and recreational opportunities for outdoor enthusiasts. Pets are allowed with board approval. An assessment for 411.76 dollars through July 2025 has been paid off." +2059020220,149000,1912,2024 Hughes Avenue #2B,1,1,https://photos.zillowstatic.com/fp/32c31d3a6d2bb80a21f6dbd552ff88a5-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/6559aa8680f875e8ef0d8c33d231e627-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/7034d609a39ab97d599e2473b6de63f9-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/687e0b8bc5b9a07ee2ab87d02ee03990-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/36ca1cc905feb15f7e1d64a47dae49bd-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f61fbef8b971de4d9a3463a39e59dbc6-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/475c50488b418d54417c81c2afb0814b-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/e711fa11a92a1441da73c68f9dfdff7a-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/9808f8af6ae6b7e9ec47b688ac31b706-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/99fb7637a9421a4831e32855b1986bbb-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/f8d54975ac587ef74d1a2d48067db072-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/61b0be3a6d292ef280dc18bfb03764e3-cc_ft_1536.jpg,155 days,204,7,Stainless steel appliances|Hardwood floors|Granite counter tops,"Welcome to 2024 Hughes Ave. This well cared for 1 bedroom co-op features a living room that opens to the kitchen with a pantry, and a full bath. There are hardwood floors, granite counter tops, and stainless steel appliances. The building includes a very handy elevator and has a live in super. Close to shopping, bakeries (with the best olive bread I ever had), and restaurants. It's also close to the Botanical Gardens, Bronx Zoo, and my alma mater, Fordham University. It's also close to public transportation. Experience all the great things the Bronx has to offer in this very affordable co-op. Additional Information: HeatingFuel:Oil Above Ground," +2056979745,99998,1953,3235 Barker Avenue #2F,1,1,https://photos.zillowstatic.com/fp/17dd91358d3e68d7a397d19356b0418d-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/bad7973db23b63819cdb2d4e0276a5ff-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/93cd8cb78786507c6501f4336be4aa96-cc_ft_1536.jpg|https://photos.zillowstatic.com/fp/cc2d498fae2af4e55a2aa55098ef51f4-cc_ft_1536.jpg,2 days,445,29,Abundant natural light|Tranquil bedroom|Newly modernized bathroom|Original hardwood floors|Dedicated dining area|Large windows|Galley kitchen,"This bright and spacious unit boasts abundant natural light and beautifully maintained original hardwood floors, adding warmth and character throughout. The generous living room is illuminated by large windows, creating a welcoming ambiance. A dedicated dining area, conveniently located next to the galley kitchen, makes mealtime effortless and enjoyable. + +The tranquil bedroom offers a peaceful retreat, while the newly modernized bathroom enhances comfort and style. Enjoy easy access to nearby amenities and public transportation, making this an ideal urban oasis with seamless city connectivity. + +Motivated seller—offering money incentives to help make this home yours! Don't miss this incredible opportunity!" diff --git a/web/zillow_com/getInfo.py b/web/zillow_com/getInfo.py new file mode 100644 index 0000000..ea3ecad --- /dev/null +++ b/web/zillow_com/getInfo.py @@ -0,0 +1,283 @@ +import csv +import os +import time + +import requests +import json +import re + + +class Zillow: + + def __init__(self): + self.baseurl = "https://www.zillow.com" + self.proxies = { + "http": "http://127.0.0.1:7890", + "https": "http://127.0.0.1:7890", + } + self.cookies = { + 'zguid': '24|%24e835e7de-1e03-40a2-9e0b-ea6557fce975', + 'zgsession': '1|5a92d272-1f0a-4eab-aad9-0b01bfc4e12e', + 'pxcts': '4efbe577-f671-11ef-944c-1da0cdd7af45', + '_pxvid': '4efbd04b-f671-11ef-944a-e6989223c886', + 'zjs_anonymous_id': '%22e835e7de-1e03-40a2-9e0b-ea6557fce975%22', + 'zg_anonymous_id': '%224b8a74fb-12d3-4dd5-b453-91d2f059cc5c%22', + '_ga': 'GA1.2.1116450831.1740815202', + '_gid': 'GA1.2.1210142068.1740815202', + '_gcl_au': '1.1.1930799100.1740815207', + '_scid': '3cxthBM96c4ODxO1v0Al3ufRKQFwF0wr', + 'DoubleClickSession': 'true', + '_ScCbts': '%5B%5D', + '_pin_unauth': 'dWlkPU4yRmtNVGhtTmpVdE5tWmtaUzAwWXpnNUxUbGtPRGt0WkRrek1UTm1OREUyTTJJdw', + '_tt_enable_cookie': '1', + '_ttp': '01JN8AR8CC889QQ2N91WJNGVRG_.tt.1', + '_fbp': 'fb.1.1740815213095.801729201273859650', + '_sctr': '1%7C1740758400000', + '_clck': '1gi6cgn%7C2%7Cftu%7C0%7C1886', + '_lr_env_src_ats': 'false', + 'g_state': '{"i_l":0}', + 'loginmemento': '1|38bd958cf99c0efa6fcdf2d8b4ba656e18214f94b1d0b8482177e5821d485cb5', + 'userid': 'X|3|516ce03fb1857a73%7C9%7CtUJB3zsjokPFJzXVcdK9kYKiV6BT9Hom', + 'zjs_user_id': '%22X1-ZUqbce6dl8y0w9_1oeg0%22', + '_derived_epik': 'dj0yJnU9YzhHUUI3UjgwVTYyektsUXlURWZ5UnNPZGpPTDBwUi0mbj01MkNxOF9nSm1udHEwczFUVGoyM0p3Jm09NCZ0PUFBQUFBR2ZDeDJRJnJtPTQmcnQ9QUFBQUFHZkN4MlEmc3A9Mg', + 'tfpsi': 'cf8acdc2-7676-40ea-810c-a9d9613cd3ac', + 'ZILLOW_SID': '1|AAAAAVVbFRIBVVsVEuEBjRdhLdPgArRt9zTF9A9GUy9n6qhArfRCvbRpWcUyvOX17mDKQCRGzog4qedbe0aFqFnGaQzFa2AVHA', + 'JSESSIONID': '2AB46AF163E850A6A93A55EEAFBFA961', + '_px3': '2b2ceb1e9473516a5889d6b089882f2df95563f843864b748551a222e3a93bd6:Re6tLyXWJyuSifQZrCVdgU+HEPF8Ih1TmBAyFOt2qBZwjYXKAdScUmpmzzTUHclqZwD1vCAkP6Pow8uPxHGEBw==:1000:8rliApJL6+buJDD0QJN5jVM3zTksVkovJZ9PzmBfy8r178UA1kmnQ3o8GCOS0s/wmN0v5TATeetgtPpn8ZgJH/nA3DeEY9emAKW8bwwCOzP2xxF8rOEN4IYvM48vCdaEhFnLMTOWUR5ZhrMtnuinXvnFPpcsoTdiVsjPiPUunfMbpjRVUSEeRGfrO2BvQBnqh1bPhqq4CXReAdRoEbUdIoO+jZ250vTxbnHyWHDnnsk=', + '_rdt_uuid': '1740815209620.81e8d67a-5a8f-489d-844a-6eb51bea084d', + '_scid_r': '7ExthBM96c4ODxO1v0Al3ufRKQFwF0wrejgyEw', + 'search': '6|1743432649336%7Crect%3D40.945233052704474%2C-73.83509060791016%2C40.845317795985295%2C-73.98271939208985%26rid%3D17182%26disp%3Dmap%26mdm%3Dauto%26p%3D1%26listPriceActive%3D1%26fs%3D1%26fr%3D0%26mmm%3D0%26rs%3D0%26singlestory%3D0%26housing-connector%3D0%26parking-spots%3Dnull-%26abo%3D0%26garage%3D0%26pool%3D0%26ac%3D0%26waterfront%3D0%26finished%3D0%26unfinished%3D0%26cityview%3D0%26mountainview%3D0%26parkview%3D0%26waterview%3D0%26hoadata%3D1%26zillow-owned%3D0%263dhome%3D0%26showcase%3D0%26featuredMultiFamilyBuilding%3D0%26onlyRentalStudentHousingType%3D0%26onlyRentalIncomeRestrictedHousingType%3D0%26onlyRentalMilitaryHousingType%3D0%26onlyRentalDisabledHousingType%3D0%26onlyRentalSeniorHousingType%3D0%26commuteMode%3Ddriving%26commuteTimeOfDay%3Dnow%09%0917182%09%7B%22isList%22%3Atrue%2C%22isMap%22%3Atrue%7D%09%09%09%09%09', + '_clsk': 'uwbs56%7C1740840661345%7C2%7C0%7Cr.clarity.ms%2Fcollect', + 'AWSALB': 'SVlf4eVEwg9mRsnpIwRyN+xS9wd8r/tNawixFSnBEf7jkmDoA1qS5ygg/3YxMalClDa1hkwxgRsZsha0aX46GGoXENyABk7jsy4YM0+YnjOiQ4CnF/ZFkf377PDR', + 'AWSALBCORS': 'SVlf4eVEwg9mRsnpIwRyN+xS9wd8r/tNawixFSnBEf7jkmDoA1qS5ygg/3YxMalClDa1hkwxgRsZsha0aX46GGoXENyABk7jsy4YM0+YnjOiQ4CnF/ZFkf377PDR', + '_uetsid': '566607f0f67111ef9e8f315a86932718', + '_uetvid': '5665f370f67111efae377d2348e45d1f', + } + self.csvdata = [ + [ + 'zpid', + 'price', # 价格 + 'yearBuilt', # 始建 + 'streetAddress', # 地址 + 'bedrooms', # 卧室数量 + 'bathrooms', # 浴室数量 + 'responsivePhotos', # 照片 + 'timeOnZillow', # 展示天数 + 'pageViewCount', # 页面浏览量 + 'favoriteCount', # 收藏数量 + 'phrases', # 标签 + 'description', # 描述 + ], + ] + if not os.path.exists('data.csv'): + with open('data.csv', 'w', newline='', encoding='utf-8') as f: + writer = csv.writer(f) + writer.writerow(self.csvdata[0]) # 写入标题行 + # self.update_cookies_ZILLOW_SID() # 更新cookies + + def get_JSESSIONID(self): + + cookies = self.cookies + + headers = { + 'accept': '*/*', + 'accept-language': 'zh-CN,zh;q=0.9', + 'cache-control': 'no-cache', + 'pragma': 'no-cache', + 'priority': 'u=1, i', + 'referer': 'https://www.zillow.com/homedetails/4705-Henry-Hudson-Pkwy-APT-6B-Bronx-NY-10471/244446711_zpid/', + 'sec-ch-ua': '"Not(A:Brand";v="99", "Google Chrome";v="133", "Chromium";v="133"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-platform': '"Windows"', + 'sec-fetch-dest': 'empty', + 'sec-fetch-mode': 'cors', + 'sec-fetch-site': 'same-origin', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36' + } + + params = { + 'zpid': '244446711', + } + + response = requests.get( + 'https://www.zillow.com/ajax/homedetail/MarkPropertyViewed.htm', + params=params, + cookies=cookies, + headers=headers, + ) + JSESSIONID = response.headers.get('x-requested-session') + print(JSESSIONID) + self.cookies['JSESSIONID'] = JSESSIONID + cookies = response.headers.get('set-cookies') + print(cookies) + + def update_cookies_ZILLOW_SID(self): + cookies = self.cookies + headers = { + 'accept': '*/*', + 'accept-language': 'zh-CN,zh;q=0.9', + 'cache-control': 'no-cache', + 'pragma': 'no-cache', + 'priority': 'u=1, i', + 'referer': 'https://www.zillow.com/homedetails/3531-Bronxwood-Ave-APT-3F-Bronx-NY-10469/2053005716_zpid/', + 'sec-ch-ua': '"Not(A:Brand";v="99", "Google Chrome";v="133", "Chromium";v="133"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-platform': '"Windows"', + 'sec-fetch-dest': 'empty', + 'sec-fetch-mode': 'cors', + 'sec-fetch-site': 'same-origin', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', + } + + params = { + 'featureFlags': [ + 'SHOPPING_ZOAM_MIGRATION_FOR_SALE_HDP', + 'CIAM_ZOAM_MIGRATION_GLOBAL', + ], + } + + response = requests.get('https://www.zillow.com/api/user/featureFlags', params=params, cookies=cookies, + headers=headers, proxies=self.proxies) + + scookies = response.headers['set-cookie'].split(';')[0].split('=')[1] + print(scookies) + self.cookies['ZILLOW_SID'] = scookies + + def get_search_page_info(self): + url = "/async-create-search-page-state" + cookies = self.cookies + + headers = { + 'accept': '*/*', + 'accept-language': 'zh-CN,zh;q=0.9', + 'cache-control': 'no-cache', + 'content-type': 'application/json', + 'origin': 'https://www.zillow.com', + 'pragma': 'no-cache', + 'priority': 'u=1, i', + # 'referer': 'https://www.zillow.com/new-york-ny/?searchQueryState=%7B%22pagination%22%3A%7B%7D%2C%22isMapVisible%22%3Atrue%2C%22mapBounds%22%3A%7B%22west%22%3A-73.99487916636572%2C%22east%22%3A-73.69962159800635%2C%22south%22%3A40.799450997125795%2C%22north%22%3A40.976203993908605%7D%2C%22mapZoom%22%3A12%2C%22regionSelection%22%3A%5B%7B%22regionId%22%3A6181%2C%22regionType%22%3A6%7D%5D%2C%22filterState%22%3A%7B%22sort%22%3A%7B%22value%22%3A%22globalrelevanceex%22%7D%7D%2C%22isListVisible%22%3Atrue%7D', + 'sec-ch-ua': '"Not(A:Brand";v="99", "Google Chrome";v="133", "Chromium";v="133"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-platform': '"Windows"', + 'sec-fetch-dest': 'empty', + 'sec-fetch-mode': 'cors', + 'sec-fetch-site': 'same-origin', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', + } + + json_data = { + 'searchQueryState': { + 'pagination': {}, + 'isMapVisible': True, + 'mapBounds': { + 'west': -73.99487916636572, + 'east': -73.69962159800635, + 'south': 40.79945099712579, + 'north': 40.97620399390861, + }, + 'mapZoom': 12, + 'regionSelection': [ + { + 'regionId': 6181, + 'regionType': 6, + }, + ], + 'filterState': { + 'sortSelection': { + 'value': 'globalrelevanceex', + }, + }, + 'isListVisible': True, + }, + 'wants': { + 'cat1': [ + 'mapResults', + ], + }, + 'requestId': 2, + 'isDebugRequest': False, + } + + response = requests.put(url=self.baseurl + url, cookies=cookies, + headers=headers, json=json_data, proxies=self.proxies) + json_data = response.json() + return json_data + + def json_parsing(self, search_json): + + for i in search_json.get("cat1").get("searchResults").get("mapResults"): + detailurl = i.get("detailUrl") + if "homedetails" in detailurl: + self.get_homedetails(i.get("detailUrl")) + + def get_homedetails(self, detailUrl, r=3): + cookies = self.cookies + + headers = { + 'accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7', + 'accept-language': 'zh-CN,zh;q=0.9', + 'cache-control': 'no-cache', + 'pragma': 'no-cache', + 'priority': 'u=0, i', + 'sec-ch-ua': '"Not(A:Brand";v="99", "Google Chrome";v="133", "Chromium";v="133"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-platform': '"Windows"', + 'sec-fetch-dest': 'document', + 'sec-fetch-mode': 'navigate', + 'sec-fetch-site': 'none', + 'sec-fetch-user': '?1', + 'upgrade-insecure-requests': '1', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36' + } + + if r > 0: + + try: + response = requests.get(url=self.baseurl + detailUrl, cookies=cookies, headers=headers, + proxies=self.proxies) + data_json_str = re.findall(r'\"gdpClientCache\":(.*?),\"composedGraphQLQuery\"', response.text)[0] + except: + time.sleep(2) + print(response.status_code) + print(self.baseurl + detailUrl) + self.get_JSESSIONID() + if r == 3: + with open('error_list.txt', 'w', encoding='utf-8') as f: + f.write(self.baseurl + detailUrl) + return self.get_homedetails(detailUrl, r - 1) + else: + print("重试最大次数!") + return + if response.headers.get('set-cookie'): + scookies = response.headers['set-cookie'].split(';')[0].split('=')[1] + self.cookies['ZILLOW_SID'] = scookies + data_json_str = data_json_str.encode('utf-8').decode('unicode_escape') # 去除转义 + data_json = ('{"data":{"property":' + data_json_str.split(':{"property":')[-1])[:-1] + jd = json.loads(data_json).get("data").get("property") + + new_row = [ + jd.get("zpid"), + jd.get("price"), + jd.get("yearBuilt"), + jd.get("address").get("streetAddress"), + jd.get("bedrooms"), + jd.get("bathrooms"), + "|".join([i.get('mixedSources').get('jpeg')[-1].get('url') for i in jd.get("responsivePhotos")]), + jd.get('timeOnZillow'), + jd.get('pageViewCount'), + jd.get('favoriteCount'), + '' if not jd.get("homeInsights") else "|".join( + [i for i in jd.get("homeInsights")[0].get("insights")[0].get("phrases")]), + jd.get("description") + ] + with open('data.csv', 'a', newline='', encoding='utf-8') as f: + writer = csv.writer(f) + writer.writerow(new_row) + print(f"成功保存:{new_row[0]}") + + +if __name__ == '__main__': + Z = Zillow() + search_data = Z.get_search_page_info() + Z.json_parsing(search_data) + # Z.get_JSESSIONID() diff --git a/web/zillow_com/zillow_com.zip b/web/zillow_com/zillow_com.zip new file mode 100644 index 0000000..7683d62 Binary files /dev/null and b/web/zillow_com/zillow_com.zip differ