Jason 2 gadi atpakaļ
vecāks
revīzija
280247b785

BIN
website_clickjobs/type-1/__pycache__/_clickjob.cpython-39.pyc


+ 7 - 7
website_clickjobs/type-1/_clickjob.py

@@ -40,7 +40,7 @@ def empty_query(q):
     driver.get(googleurl)
     time.sleep(3)
 
-def process_query(domain, target_domain, brands, query):
+def process_query(domain, target_domain, brands, query, type):
     print(query)
     sleepoffset = 0
     global driver
@@ -75,9 +75,9 @@ def process_query(domain, target_domain, brands, query):
     for el in elmts:
         href=el.get_attribute('href')
         txt=el.text
-        print(href)
+        #print(href)
         if len(txt)>10:
-            if domain in href:
+            if (type==1 and domain in href) or (type==2 and domain == href):
                 domain_in_link += 1
                 print('clicked....')
                 print(href)
@@ -118,7 +118,7 @@ def process_query(domain, target_domain, brands, query):
     return 200
     
 
-def run_once(domain, target_domain, brands, query):
+def run_once(domain, target_domain, brands, query, type):
     global driver
     result=[]
     options = webdriver.ChromeOptions()
@@ -134,19 +134,19 @@ def run_once(domain, target_domain, brands, query):
     driver.delete_all_cookies()
     driver.set_window_size(1400,1000)
 
-    statuscode = process_query(domain, target_domain, brands, query)
+    statuscode = process_query(domain, target_domain, brands, query, type)
     driver.quit()
 
     return statuscode
 
 #execution starts here
 
-def execute(domain, target_domain, brands, query_list):
+def execute(domain, target_domain, brands, query_list, type):
     print("Ctrl+C or Ctrl+Z to stop.")
     statuscode = 0
     st = timeit.default_timer()
     try:
-        statuscode = run_once(domain, target_domain, brands, random.choice(query_list))
+        statuscode = run_once(domain, target_domain, brands, random.choice(query_list), type)
     except:
         traceback.print_exc()
     timetaken = timeit.default_timer()-st

+ 12 - 9
website_clickjobs/type-1/_clickjob1023.py

@@ -75,11 +75,11 @@ def process_query(domain, target_domain, brands, query):
 
     print (len(elmts))
     # driver.save_screenshot('c:/tmp/test.png')
-
+    n=0
     for el in elmts:
+        n+=1
         href=el.get_attribute('href')
         txt=el.text
-        print(href)
         if len(txt)>10:
             if domain in href:
                 domain_in_link += 1
@@ -93,8 +93,10 @@ def process_query(domain, target_domain, brands, query):
                 
                 webdriver.ActionChains(driver).move_to_element(el).perform()
                 webdriver.ActionChains(driver).move_to_element(el).click().perform()
+                print("Rank: " + str(n))
                 time.sleep(15)
 
+                ''' unused
                 new_windows_count = add_tabs[random.randint(0,19)]
                 print(str(new_windows_count) + " new tabs")
                 for i in range (0,new_windows_count):
@@ -108,20 +110,21 @@ def process_query(domain, target_domain, brands, query):
                     time.sleep(15)
                     #driver.close()
                     #driver.switch_to.window(original_window)
-
+                
                 if domain in target_domain:
                     print("Target link found")
                     time_stamp = datetime.fromtimestamp(time.time())
                     time_stamp = time_stamp.strftime("%Y-%m-%d %H:%M:%S")
-                    db['click_results'].insert({"time_stamp": time_stamp, "brand": brands[domain], "domain": domain, "query": query, "url": href, "content": txt, "extra_windows": new_windows_count})
+                    db['click_results'].insert({"time_stamp": time_stamp, "brand": brands[domain], "domain": domain, "query": query, "url": href, "content": txt, "extra_windows": '0'})
+                '''
                 break
 
-    if domain in target_domain:
+    '''if domain in target_domain:
         print("Target domain found")
         time_stamp = datetime.fromtimestamp(time.time())
         time_stamp = time_stamp.strftime("%Y-%m-%d %H:%M:%S")
         db['query_results'].insert({"time_stamp": time_stamp, "brand": brands[domain], "domain": domain, "query": query, "googleurl": googleurl, "element_count": len(elmts), "domain_in_link_count": domain_in_link})
-            
+    '''        
 
     print(domain_in_link)
     return 200
@@ -163,14 +166,14 @@ def execute(domain, target_domain, brands, query_list):
     
     print("Process returned with " + str(statuscode))
     if statuscode == 444:
-        print("You have been caught!!! Program terminating.")
+        print("You have been caught!!!")
         
         #notify("Clickbot " + brands[domain] + " has been caught by Google and will terminate. IP: ")
         return statuscode
 
     extrasleep = 0
-    if(timetaken < 70):
-        extrasleep = 70 - timetaken
+    if(timetaken < 50):
+        extrasleep = 50 - timetaken
     print("Ctrl+C or Ctrl+Z to stop now.")
     print("You have " + str(10 + extrasleep) + " seconds.")
     time.sleep(10 + extrasleep)

+ 180 - 0
website_clickjobs/type-1/_clickjob1028.py

@@ -0,0 +1,180 @@
+import time
+from datetime import datetime
+import json
+from selenium import webdriver
+from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
+import time
+import os
+import urllib.parse
+from selenium.webdriver.support.ui import WebDriverWait
+from selenium.webdriver.common.by import By
+from selenium.webdriver.support import expected_conditions as EC
+import codecs
+import random
+import requests
+import dataset
+import traceback
+import sys
+from selenium.webdriver.common.keys import Keys
+import timeit
+import socket
+
+add_tabs = [7,9,11,13,15,7,9,11,13,15,7,9,11,13,15,7,9,11,13,15]
+
+db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/seo?charset=utf8mb4')
+driver=None
+headers = {
+        "Authorization": "Bearer " + "t35vhZtWNgvDNWHc3DJh0OKll3mcB9GvC8K2EAkBug2",
+        "Content-Type": "application/x-www-form-urlencoded"
+}
+
+sleepoffset = 0
+
+def send_msg(kw):
+    params = {"message": "處理關鍵字: "+kw}  
+    r = requests.post("https://notify-api.line.me/api/notify",headers=headers, params=params)
+
+def empty_query(q):
+    global driver
+    googleurl='https://www.google.com/search?q='+urllib.parse.quote(q)
+    driver.get(googleurl)
+    time.sleep(3)
+
+def process_query(domain, target_domain, brands, query):
+    print(query)
+    sleepoffset = 0
+    global driver
+    if query == "艾立思" and "index" in target_domain:
+        driver.get('https://www.google.com/search?num=100&q=艾立思&rlz=1C1ONGR_zh-TWTW997TW997&ei=zjdUY_DBG9Lm-Abpgq84&start=0&sa=N&filter=0&ved=2ahUKEwjw4KeEvfT6AhVSM94KHWnBCwcQ8tMDegQIARAQ&cshid=1666463754367857&biw=1368&bih=761&dpr=2')
+        time.sleep(4)
+    else:
+        driver.get('https://www.google.com?num=100')
+        time.sleep(3)
+        print(driver.current_url)
+
+        # elmts=driver.find_elements_by_xpath("//div[@class='yuRUbf']/a")
+        # ABOVE METHOD IS DEPRECATED STARTING SELENIUM 4.3.0, USE THIS
+        #
+        elmt = driver.find_element(By.XPATH, "//input[@name='q']")
+        time.sleep(1)
+
+        elmt.send_keys(query)
+        elmt.send_keys(Keys.ENTER)
+
+    idx=1
+    ranking=-1
+    domain_in_link = 0
+
+    googleurl = driver.current_url
+    print(driver.current_url)
+
+    if "sorry" in googleurl:
+        return 444
+
+    elmts=driver.find_elements("xpath","//div[@class='yuRUbf']/a")
+
+    print (len(elmts))
+    # driver.save_screenshot('c:/tmp/test.png')
+    n=0
+    for el in elmts:
+        n+=1
+        href=el.get_attribute('href')
+        txt=el.text
+        if len(txt)>10:
+            if domain in href:
+                domain_in_link += 1
+                print('clicked....')
+                print(href)
+                print(txt)
+
+                if query == "艾立思" and "index" in target_domain and href != "https://hhh.com.tw/brand-index.php?brand_id=211":
+                    print("wrong site")
+                    continue
+                
+                webdriver.ActionChains(driver).move_to_element(el).perform()
+                webdriver.ActionChains(driver).move_to_element(el).click().perform()
+                print("Rank: " + str(n))
+                time.sleep(15)
+
+                ''' unused
+                new_windows_count = add_tabs[random.randint(0,19)]
+                print(str(new_windows_count) + " new tabs")
+                for i in range (0,new_windows_count):
+                    print("Tab " + str(i+1))
+                    #original_window = driver.current_window_handle
+                    #driver.switch_to.new_window('window')
+                    #driver.get(href)
+                    sleepoffset += 12
+                    driver.execute_script('window.open("'+href+'","_blank");')
+                    driver.execute_script("window.scrollTo(0, 600)")
+                    time.sleep(15)
+                    #driver.close()
+                    #driver.switch_to.window(original_window)
+                
+                if domain in target_domain:
+                    print("Target link found")
+                    time_stamp = datetime.fromtimestamp(time.time())
+                    time_stamp = time_stamp.strftime("%Y-%m-%d %H:%M:%S")
+                    db['click_results'].insert({"time_stamp": time_stamp, "brand": brands[domain], "domain": domain, "query": query, "url": href, "content": txt, "extra_windows": '0'})
+                '''
+                break
+
+    '''if domain in target_domain:
+        print("Target domain found")
+        time_stamp = datetime.fromtimestamp(time.time())
+        time_stamp = time_stamp.strftime("%Y-%m-%d %H:%M:%S")
+        db['query_results'].insert({"time_stamp": time_stamp, "brand": brands[domain], "domain": domain, "query": query, "googleurl": googleurl, "element_count": len(elmts), "domain_in_link_count": domain_in_link})
+    '''        
+
+    print(domain_in_link)
+    return 200
+    
+
+def run_once(domain, target_domain, brands, query):
+    global driver
+    result=[]
+    options = webdriver.ChromeOptions()
+    options.add_argument('--headless')
+#    options.add_argument("--user-agent=" +user_agent)
+    options.add_argument("--incognito")
+    options.add_argument('--no-sandbox')
+    options.add_argument('--disable-dev-shm-usage')
+
+    driver = webdriver.Chrome(
+    options=options)
+
+    driver.delete_all_cookies()
+    driver.set_window_size(1400,1000)
+
+    statuscode = process_query(domain, target_domain, brands, query)
+    driver.quit()
+
+    return statuscode
+
+#execution starts here
+
+def execute(domain, target_domain, brands, query_list):
+    print("Ctrl+C or Ctrl+Z to stop.")
+    statuscode = 0
+    st = timeit.default_timer()
+    try:
+        statuscode = run_once(domain, target_domain, brands, random.choice(query_list))
+    except:
+        traceback.print_exc()
+    timetaken = timeit.default_timer()-st
+    print("Time taken: " + str(timetaken))
+    
+    print("Process returned with " + str(statuscode))
+    if statuscode == 444:
+        print("You have been caught!!!")
+        
+        #notify("Clickbot " + brands[domain] + " has been caught by Google and will terminate. IP: ")
+        return statuscode
+
+    extrasleep = 0
+    if(timetaken < 50):
+        extrasleep = 50 - timetaken
+    print("Ctrl+C or Ctrl+Z to stop now.")
+    print("You have " + str(10 + extrasleep) + " seconds.")
+    time.sleep(10 + extrasleep)
+    return statuscode

+ 159 - 0
website_clickjobs/type-1/_clickjobtest.py

@@ -0,0 +1,159 @@
+import time
+import traceback
+from selenium import webdriver
+from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
+import time
+import urllib
+import os
+from selenium.webdriver.support.ui import WebDriverWait
+from selenium.webdriver.common.by import By
+from selenium.webdriver.support import expected_conditions as EC
+import dataset
+from selenium.webdriver.common.keys import Keys
+import json
+import random
+import time
+#import redis
+import sys
+import codecs
+import random
+import os
+import time
+import requests
+driver=None
+
+db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/seo?charset=utf8mb4')
+def re_get_webdriver(n):
+    global port
+    global driver
+    global portnum
+    portnum = n
+    result=[]
+    '''if driver is not None:
+        print('closing....')
+        driver.quit()
+        print('quit....')
+        driver=None'''
+    try:
+        options = webdriver.ChromeOptions()
+        options.add_argument("--no-sandbox")
+        options.add_argument("--headless")
+        options.add_argument("--incognito")
+#        options.add_argument('--proxy-server=socks5://172.104.93.163:41900')
+        try:
+
+            driver = webdriver.Remote(
+                command_executor='http://127.0.0.1:'+str(portnum)+'/wd/hub',
+            options=options)
+        except:
+            traceback.print_exc()
+            return None
+        return driver
+    except:
+        traceback.print_exc()
+        driver=None
+        return None
+    return driver
+
+
+def run_once(jsobj):
+
+    #table=db['rank_detection']
+    print(jsobj)
+    kw=jsobj['kw']
+
+    i=100
+    while True:
+        driver=re_get_webdriver(jsobj['pn'])
+        if driver is not None:
+            break
+        time.sleep(3)
+    try:
+        kw=jsobj['kw']
+        if jsobj.get('domain') is None:
+            exclude=jsobj['exclude']
+            domain=None
+        else:
+            domain=jsobj['domain']
+            exclude=None
+        driver.get('https://www.google.com?num=100')
+        time.sleep(17)
+        while True:
+            try:
+                print(driver.current_url)
+                break
+            except:
+                traceback.print_exc()
+                driver=re_get_webdriver()
+                time.sleep(3)
+                driver.get('https://www.google.com?num=100')
+                time.sleep(3)
+
+            time.sleep(3)
+
+        elmt = driver.find_element(By.XPATH, "//input[@name='q']")
+        time.sleep(1)
+        elmt.send_keys(kw)
+        elmt.send_keys(Keys.ENTER)
+        time.sleep(6)
+
+        elmts = driver.find_elements(By.XPATH, "//div[@class='yuRUbf']/a")
+
+        numresults=len(elmts)
+#        time.sleep(9999)
+        print('搜尋結果數量',numresults)
+        if numresults==0:
+            print(driver.current_url)
+            print(driver.title)
+            sys.exit()
+
+        idx=1
+        found=False
+        test_lst=[]
+        for elmt in elmts:
+            href=elmt.get_attribute('href')
+            txt=elmt.text
+            if len(txt)>10:
+                if domain is not None:
+                    for d in domain:
+                        if d in href:
+                            print('found....')
+                            print('clicked....')
+                            print(href)
+                            print(txt)
+                            print("ranking", idx)
+                            found=True
+
+                            webdriver.ActionChains(driver).move_to_element(elmt).perform()
+#                            elmt.click()
+                            webdriver.ActionChains(driver).move_to_element(elmt).click().perform()
+                            #table.insert({'ranking':idx,'kw':kw,'results':numresults,'url':href,'title':txt})
+
+                            time.sleep(6)
+                            return
+                else:
+                    if exclude not in href:
+                        test_lst.append(elmt)
+                    
+            idx+=1
+        if exclude is not None:
+            print('exclude')
+            elmt=random.choice(test_lst)
+            print(elmt)
+
+            webdriver.ActionChains(driver).move_to_element(elmt).perform()
+            webdriver.ActionChains(driver).move_to_element(elmt).click().perform()
+            time.sleep(5)
+
+        if not found:
+            pass
+            #table.insert({'ranking':-1,'kw':kw,'results':numresults,'url':'','title':'未收錄'})
+        print('closing....')
+        driver.quit()
+        print('quit....')
+        driver=None
+
+    except:
+        traceback.print_exc()
+
+  

+ 163 - 0
website_clickjobs/type-1/_clickjobtesthhh.py

@@ -0,0 +1,163 @@
+import time
+import traceback
+from selenium import webdriver
+from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
+import time
+import urllib
+import os
+from selenium.webdriver.support.ui import WebDriverWait
+from selenium.webdriver.common.by import By
+from selenium.webdriver.support import expected_conditions as EC
+import dataset
+from selenium.webdriver.common.keys import Keys
+import json
+import random
+import time
+#import redis
+import sys
+import codecs
+import random
+import os
+import time
+import requests
+driver=None
+
+db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/seo?charset=utf8mb4')
+def re_get_webdriver(n):
+    global port
+    global driver
+    global portnum
+    portnum = n
+    result=[]
+    '''if driver is not None:
+        print('closing....')
+        driver.quit()
+        print('quit....')
+        driver=None'''
+    try:
+        options = webdriver.ChromeOptions()
+        options.add_argument("--no-sandbox")
+        options.add_argument("--headless")
+        options.add_argument("--incognito")
+        #options.add_argument('--proxy-server=socks5://172.104.93.163:41900')
+        try:
+
+            driver = webdriver.Remote(
+                command_executor='http://127.0.0.1:'+str(portnum)+'/wd/hub',
+            options=options)
+        except:
+            traceback.print_exc()
+            return None
+        return driver
+    except:
+        traceback.print_exc()
+        driver=None
+        return None
+    return driver
+
+
+def run_once(jsobj):
+
+    #table=db['rank_detection']
+    print(jsobj)
+    kw=jsobj['kw']
+
+    i=100
+    while True:
+        driver=re_get_webdriver(jsobj['pn'])
+        if driver is not None:
+            break
+        time.sleep(3)
+    try:
+        kw=jsobj['kw']
+        if jsobj.get('domain') is None:
+            exclude=jsobj['exclude']
+            domain=None
+        else:
+            domain=jsobj['domain']
+            exclude=None
+        if kw == "艾立思" and "index" in domain:
+            driver.get('https://www.google.com/search?num=100&q=艾立思&rlz=1C1ONGR_zh-TWTW997TW997&ei=zjdUY_DBG9Lm-Abpgq84&start=0&sa=N&filter=0&ved=2ahUKEwjw4KeEvfT6AhVSM94KHWnBCwcQ8tMDegQIARAQ&cshid=1666463754367857&biw=1368&bih=761&dpr=2')
+            time.sleep(10)
+        else:  
+            driver.get('https://www.google.com?num=100')
+            time.sleep(17)
+            while True:
+                try:
+                    print(driver.current_url)
+                    break
+                except:
+                    traceback.print_exc()
+                    driver=re_get_webdriver()
+                    time.sleep(3)
+                    driver.get('https://www.google.com?num=100')
+                    time.sleep(3)
+
+                time.sleep(3)
+
+        elmt = driver.find_element(By.XPATH, "//input[@name='q']")
+        time.sleep(1)
+        elmt.send_keys(kw)
+        elmt.send_keys(Keys.ENTER)
+        time.sleep(6)
+
+        elmts = driver.find_elements(By.XPATH, "//div[@class='yuRUbf']/a")
+
+        numresults=len(elmts)
+#        time.sleep(9999)
+        print('搜尋結果數量',numresults)
+        if numresults==0:
+            print(driver.current_url)
+            print(driver.title)
+            sys.exit()
+
+        idx=1
+        found=False
+        test_lst=[]
+        for elmt in elmts:
+            href=elmt.get_attribute('href')
+            txt=elmt.text
+            if len(txt)>10:
+                if domain is not None:
+                    for d in domain:
+                        if d in href:
+                            print('found....')
+                            print('clicked....')
+                            print(href)
+                            print(txt)
+                            print("ranking", idx)
+                            found=True
+
+                            webdriver.ActionChains(driver).move_to_element(elmt).perform()
+#                            elmt.click()
+                            webdriver.ActionChains(driver).move_to_element(elmt).click().perform()
+                            #table.insert({'ranking':idx,'kw':kw,'results':numresults,'url':href,'title':txt})
+
+                            time.sleep(6)
+                            return
+                else:
+                    if exclude not in href:
+                        test_lst.append(elmt)
+                    
+            idx+=1
+        if exclude is not None:
+            print('exclude')
+            elmt=random.choice(test_lst)
+            print(elmt)
+
+            webdriver.ActionChains(driver).move_to_element(elmt).perform()
+            webdriver.ActionChains(driver).move_to_element(elmt).click().perform()
+            time.sleep(5)
+
+        if not found:
+            pass
+            #table.insert({'ranking':-1,'kw':kw,'results':numresults,'url':'','title':'未收錄'})
+        print('closing....')
+        driver.quit()
+        print('quit....')
+        driver=None
+
+    except:
+        traceback.print_exc()
+
+  

+ 1122 - 0
website_clickjobs/type-1/data.csv

@@ -0,0 +1,1122 @@
+url,name,biz
+https://hhh.com.tw/HHH_NEW/designers_static/3.html,周建志,春雨時尚空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/5.html,王光宇,阿曼空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/13.html,馬健凱,界陽&大司室內設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/18.html,雅典設計團隊,雅典設計工程有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/19.html,李宛璇,嬡居室內設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/23.html,周靖雅,境庭國際設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/24.html,黃翊峰 & 李羽芝,豐聚室內裝修設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/28.html,張馨,張馨&瀚觀室內設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/29.html,詹芳玫,程翊室內裝修工程有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/30.html,俞佳宏,尚藝室內裝修設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/31.html,陳錦樹,富億空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/32.html,吳函霖,理揚室內裝修設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/33.html,張靜峰,比沙列室內裝修設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/39.html,許清松,松格室內裝修設計工程有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/41.html,鍾鼎 鍾黎 謝雨竹,奧立佛 x 竺居聯合設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/54.html,虞國綸,格綸設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/55.html,李勝雄,對場作室內裝修設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/57.html,許沛濬(許浚),景漾建築空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/58.html,陳美貴 & 王慧婷,金岱設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/62.html,許鴻鈞、陳淑絹,席德設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/63.html,齊舍設計事務所 設計團隊,齊舍設計事務所
+
+https://hhh.com.tw/HHH_NEW/designers_static/65.html,楊詩韻,采舍空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/70.html,黃子綺,存果空間設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/72.html,陳永祥,依舍&筑域國際空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/74.html,許有森(意竹),大琚空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/76.html,侯榮元,得比空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/78.html,朱皇蒔,蒔築設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/79.html,張成一,將作空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/87.html,帝谷設計團隊,帝谷室內裝修設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/98.html,楊煥生、郭士豪,YHS DESIGN
+
+https://hhh.com.tw/HHH_NEW/designers_static/99.html,謝秋貴、陳麗美,禾洋設計團隊
+
+https://hhh.com.tw/HHH_NEW/designers_static/101.html,鄭秋如,尚屋設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/106.html,宋雯鈴、宋志鍾,德本迪 / 宜荷室內裝修設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/131.html,林欣璇,陶璽空間設計事務所
+
+https://hhh.com.tw/HHH_NEW/designers_static/134.html,于懷晴,當代空間有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/138.html,刁福華 & 黃鈺棻,宸璽設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/145.html,張凱,藍雅國際設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/148.html,陳弘芫,禾郅室內裝修
+
+https://hhh.com.tw/HHH_NEW/designers_static/158.html,王立崢,京彩室內設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/172.html,譚淑靜,禾築國際設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/177.html,古振宏,子境室內裝修設計工程有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/182.html,潘仕敏,雲方室內設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/278.html,邱炫達,浩室設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/279.html,郁琇琇,三宅一秀 室內設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/291.html,張芷融,藝谷空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/293.html,陳嘉鴻,IS國際設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/301.html,李宗育,YS暘昇國際室內裝修工程有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/307.html,王思文&汪忠錠,摩登雅舍室內裝修設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/312.html,水設空間設計團隊,水設室內設計股份有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/313.html,林峰安,星葉室內裝修設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/315.html,邱郁雯,原境國際室內設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/317.html,張德良、殷崇淵、楊霈瀅(寬寬)、廖文祥,演拓空間室內設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/331.html,張祥鎬 設計總監,伊太空間設計事務所
+
+https://hhh.com.tw/HHH_NEW/designers_static/332.html,鄭抿丹,澄境室內設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/347.html,李千惠,千綵胤空間設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/356.html,周彥如,"京璽國際股份有限公司
+京築聯合室內裝修有限公司"
+
+https://hhh.com.tw/HHH_NEW/designers_static/358.html,彭立元,元典設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/363.html,廖笠庭 周言叡,雲司國際設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/364.html,馬愷君 Maggie,元均制作
+
+https://hhh.com.tw/HHH_NEW/designers_static/368.html,王鼎元,築鼎室內設計&感知景觀設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/379.html,朱英凱,朱英凱室內設計事務所
+
+https://hhh.com.tw/HHH_NEW/designers_static/382.html,徐以倫,微自然室內裝修設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/385.html,簡瑋琪,亞維空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/388.html,吳宗憲,安藤國際室內裝修&吳宗憲建築師
+
+https://hhh.com.tw/HHH_NEW/designers_static/394.html,何俊德,極星空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/396.html,林宥均&陳語逸,凡代空間有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/402.html,張舜淵 林術榮 李晴沛,允庭室內裝修設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/404.html,蔡林沖,彙禾設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/405.html,羅靜如&林保秀,映荷空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/413.html,陳佳佑,我思空間設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/417.html,魏立彥,竹村空間
+
+https://hhh.com.tw/HHH_NEW/designers_static/418.html,盧慧珊&采品設計團隊,采品室內設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/419.html,邵昭文,沐恩空間設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/421.html,葉佳隴,拾葉建築&室內設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/422.html,帝利納系統空間設計團隊,帝利納系統空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/423.html,湯鎮安,馥築時尚設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/427.html,翁志傑(Kevin),莫米室內設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/432.html,謝子承,水水設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/436.html,陳偉立,廣延空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/438.html,卜冠程&木博士設計團隊,木博士團隊&動念室內設計制作
+
+https://hhh.com.tw/HHH_NEW/designers_static/439.html,戴吉榮,匠拓室內裝修設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/441.html,林佑昶,極品家室內設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/447.html,蔡岳儒,恆岳空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/448.html,林繹寬&卓林設計團隊,卓林室內設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/452.html,羽筑空間設計團隊,羽筑空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/453.html,許梅英,築藝坊室內裝修有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/463.html,歐德傢俱設計團隊,歐德傢俱
+
+https://hhh.com.tw/HHH_NEW/designers_static/465.html,劉獻文,浮見月設計工程有限公司 / 垼程聯合建築師事務所
+
+https://hhh.com.tw/HHH_NEW/designers_static/468.html,謝雅蓉,里摩室內裝修設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/474.html,劉倢妤,雋築空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/482.html,萬寶隆空間設計團隊,萬寶隆空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/483.html,廖志偉 & 潘柏菁,大久空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/491.html,黃仲均,優尼客空間設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/500.html,劉啟全、陳韻如、方人凱,知域設計×一己空間制作
+
+https://hhh.com.tw/HHH_NEW/designers_static/505.html,胡捷荏,橙碩室內設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/506.html,任依仁、張庭熙、林魁堅,大晴國際室內裝修設計股份有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/510.html,謝張志昇、林宗儀,禾熙室內裝修設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/514.html,林志豪,巧軒空間設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/520.html,邱沛彤,祥祥室內裝修有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/523.html,吳啟民,尚展空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/531.html,吳樂琦,合唯室內裝修設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/536.html,葉佳奇,苡希創意設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/542.html,涂義傑 柏爾設計團隊,柏爾室內設計事務所
+
+https://hhh.com.tw/HHH_NEW/designers_static/545.html,朱伯晟、蔡雅怡,玖柞設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/549.html,劉佳川、廖應語,劃家設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/554.html,劉嘉雯&吉作室內設計團隊,吉作室內裝修有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/555.html,曾智和 | 棠禾設計團隊,棠禾設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/559.html,林志龍&蘇楠凱,維耕設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/571.html,蕭如芳&黃湘琦,易介室內裝修設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/573.html,詹晧,詹晧室內裝修設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/581.html,陳彥豪,昱森室內設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/583.html,林函青,大進設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/584.html,郭沛沛,沛沛國際室內設計事務所
+
+https://hhh.com.tw/HHH_NEW/designers_static/586.html,張于廷,澤序空間設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/589.html,林昱村,弘悅空間事務所
+
+https://hhh.com.tw/HHH_NEW/designers_static/596.html,胡桐宜,百玥空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/598.html,林育正,栩邑室內裝修設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/600.html,劉名耀.廖心語.蔡志駿,工聚室內裝修工程有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/611.html,莊庭緯,霆沃空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/614.html,黃恒星、姜佳利,歐米設計_意斯空間
+
+https://hhh.com.tw/HHH_NEW/designers_static/639.html,許捷甯,艾美幸福設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/650.html,馮澤森,P﹒L﹒S﹒B建境﹒構建築﹒空間設計公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/651.html,李柔瑩,禾雅國際室內裝修有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/652.html,王千乾,央雨室內裝修設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/654.html,朱家模、王子琦、陳秀怡、盧薏庭、陳庭萱,DS亦沐空間創意整合
+
+https://hhh.com.tw/HHH_NEW/designers_static/661.html,劉明杰、 楊欣益、吳國華,原向室內裝修設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/663.html,陳星龍,SD_Design 空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/664.html,HATCH合砌設計團隊,合砌設計有限公司 HATCH
+
+https://hhh.com.tw/HHH_NEW/designers_static/668.html,汪孟臻,承炫裝修有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/671.html,李雨蓁,權展室內裝修設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/672.html,毛至文,至文室內裝修有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/673.html,謝金廷,日常陽空間設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/674.html,游俊德,爾商設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/675.html,莊金隆,豐臣室內裝修設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/676.html,張姍姍,寓森林室內裝修設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/677.html,張榮展,注文設計工作室
+
+https://hhh.com.tw/HHH_NEW/designers_static/678.html,陸冠穎,含仰空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/681.html,廖韋強,唐林建築室內設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/683.html,劉偉嘉,萩田製作 空間設計研究室
+
+https://hhh.com.tw/HHH_NEW/designers_static/684.html,王毓婷、陳見行,聯寬室內裝修有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/685.html,林豋瀚,藝大利國際設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/688.html,王誌霆,富麗室內裝修設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/692.html,黃靜文,D.H.I.A 黃靜文室內設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/694.html,張躍騰,澄築空間室內裝修有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/699.html,Louis、Jack,帝鼎&方源室內設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/700.html,許書銘,寶誠空間美學有限公司&寶誠營造有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/701.html,方志宏,麒成益室內裝修設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/704.html,蔡尚倫,洛克設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/705.html,鄧湘盈,恆星設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/706.html,李宜蔓,麻石設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/707.html,蔡佾錄,壹零貳伍設計 1025.Interior Design
+
+https://hhh.com.tw/HHH_NEW/designers_static/708.html,王彥歆 何佩芬,一屋二瓦設計所
+
+https://hhh.com.tw/HHH_NEW/designers_static/709.html,鄧維如、張仁川,墐桐空間美學
+
+https://hhh.com.tw/HHH_NEW/designers_static/710.html,陳佳暄、林威任,安喆空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/711.html,蘇智銘,富陞空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/713.html,陳奕訢,傑詩設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/715.html,林芷芯,芯境設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/716.html,小寶優居,小寶優居-美好成家
+
+https://hhh.com.tw/HHH_NEW/designers_static/717.html,彭瑞蕙,天睿室內裝修設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/718.html,Kelly Yang,鼎毓室內裝修設計工程有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/719.html,蔡承軒,湧緻開發工程
+
+https://hhh.com.tw/HHH_NEW/designers_static/720.html,秦詣擎、劉瀚陽、陳正倫,緣初設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/722.html,吳苡瑄,住福室內設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/723.html,林慧珊,菓子空間室內設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/724.html,松璞設計團隊,松璞實業有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/725.html,洪瑋寧,弦鉅設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/726.html,廖子龍,澄羿空間設計室內裝修有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/728.html,徐睿煜、蔡家淇,浤淇室內設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/730.html,廖柏坤Kun,沐熙空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/731.html,張禎毅、張耕文,雲頂設計 YU design
+
+https://hhh.com.tw/HHH_NEW/designers_static/733.html,莊詔傑,心旅空間設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/735.html,鄭茹心、周士瑀,一方周室內設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/736.html,alaia(施芷穎),迪品空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/737.html,杜政坤 KEN,極喀室內裝修設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/738.html,翊程設計團隊,翊程設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/739.html,劉彥偉,天藤設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/740.html,鍾紫瑜,為騏空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/741.html,孫詩哲,澤物設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/742.html,余珦瑀,WED木象室內設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/743.html,王建元,圖騰室內裝修設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/744.html,劉駿隆,恩德里室內設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/745.html,劉宣廷,東江齋設計 River Cabin D+
+
+https://hhh.com.tw/HHH_NEW/designers_static/746.html,Charlie,筑新裝修工程行
+
+https://hhh.com.tw/HHH_NEW/designers_static/747.html,洪士幃,誠鑫空間設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/749.html,張彥騰、吳岱珈,合瑪設計工程有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/750.html,李荷琳,對視室內設計工坊
+
+https://hhh.com.tw/HHH_NEW/designers_static/751.html,賴芝綺&方志軒,昕揚室內裝修設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/752.html,詹松樹,宇拓室內設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/753.html,吳字楷,大福室內裝修設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/754.html,莊浩綜,尹浩室內設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/755.html,王奕瑭/林郁翔,禾竹室內設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/756.html,屈富貞,E空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/757.html,廖崢、廖嶸,崢嶸設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/758.html,劉佩芙,竟園室內裝修設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/759.html,伍群喬,群築室內裝修設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/760.html,米高設計裝修團隊,米高室內設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/761.html,顏湋承,希品室內設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/762.html,陳紹珩,塘采設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/763.html,陳鼎岳,瑞鼎設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/764.html,呂奕緯,海恩室內裝修有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/765.html,洪芳郁,優築工程
+
+https://hhh.com.tw/HHH_NEW/designers_static/766.html,邱相元,虹橋采卉室內設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/767.html,高陞霖 設計總監/蔣漫霖 傢飾總監,ACE 空間制作所
+
+https://hhh.com.tw/HHH_NEW/designers_static/768.html,GAGU統包工程 設計團隊,GAGU統包工程
+
+https://hhh.com.tw/HHH_NEW/designers_static/769.html,蔡政昇,寬山室內裝修設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/770.html,傅瓊慧 設計總監,由里+國際設計集團
+
+https://hhh.com.tw/HHH_NEW/designers_static/771.html,彭靖翔、張雅涵,Mojo Design Studio 默覺室內設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/772.html,黃俊皓,翰陞室內裝修有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/773.html,黃國揚、黃琪茜、周芳妤,亞圖設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/774.html,林君豪,璞石創研空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/775.html,Steve Wang,佳舍空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/776.html,謝明賢 設計總監,德盈空間設計x德義系統家具
+
+https://hhh.com.tw/HHH_NEW/designers_static/777.html,許維玲,原色國際時尚有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/778.html,周語華,光舍丰計 Light House Design
+
+https://hhh.com.tw/HHH_NEW/designers_static/779.html,Otis設計團隊,歐提系統家具有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/780.html,森禾設計團隊,森禾室內裝修-Aj 空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/781.html,蘇郁雯,青月草禾室內裝修有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/782.html,鍾晴 Sunny,伏見設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/783.html,設計總監 張哲宗,緯邁空間規劃
+
+https://hhh.com.tw/HHH_NEW/designers_static/784.html,蘇宣穎、汪采妮,昊司設計x華躍工程
+
+https://hhh.com.tw/HHH_NEW/designers_static/785.html,游儒群,霖云空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/786.html,吳思穎,承思室內裝修設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/787.html,許家福 Jeff,新境創作設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/788.html,李怡瑩/Isis,恆域空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/789.html,馮慧心,心宸國際設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/790.html,Howard 小歐,巢藝設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/791.html,王法均,雅驛 X 締錏室內設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/792.html,大雄 RICK,寬月室內裝修設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/793.html,許伯争,樂作空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/794.html,徐汎羽,羽築空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/795.html,胡玟麒,梁居•栲宮 空間造所
+
+https://hhh.com.tw/HHH_NEW/designers_static/796.html,賴威宇&胡柏強,沅森室內設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/797.html,翁國文 Steven,皇室空間室內裝修設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/798.html,呂英碩,森方設計室內裝修有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/799.html,王睿煬,昇煬室內裝修設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/800.html,陳信豪 Howard.C,車厄空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/801.html,馬顥,云翊設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/802.html,林楚軒,艾爾文森室內裝修
+
+https://hhh.com.tw/HHH_NEW/designers_static/803.html,徐佳彣&高紹騰&黃健華,約拿設計x元投實業
+
+https://hhh.com.tw/HHH_NEW/designers_static/804.html,九日設計,九日設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/805.html,曹議庭,蘭庭設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/806.html,Patsy Liao、Kelly Cheng,方澤設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/807.html,陳聖元&黃子庭,樂沐制作
+
+https://hhh.com.tw/HHH_NEW/designers_static/808.html,楊勝富,蒔頤設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/809.html,洪榮森,新傑創室內裝修有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/810.html,李家齊,喬治黑羊設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/811.html,三豊設計團隊,三豊室內裝修
+
+https://hhh.com.tw/HHH_NEW/designers_static/812.html,李世安&李世勛,暉揚空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/813.html,周栢任&劉思怡,綵田設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/814.html,盧榮顯,巧美.新境 設計團隊
+
+https://hhh.com.tw/HHH_NEW/designers_static/815.html,侯正祥Riki,米立奇設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/816.html,湯佳倫,榯榯室內設計every:moment
+
+https://hhh.com.tw/HHH_NEW/designers_static/817.html,高玉凡&林暐華,琢隱設計有限公司
+
+https://hhh.com.tw/HHH_NEW/designers_static/818.html,吳沛恩&沈金漢,岳峻室內裝修設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/819.html,高銘傑、洪逸安,易設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/820.html,紀孟廷,沃思室內設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/821.html,呂建宏,瓦舍室內裝修設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/822.html,朱幼雁,勁空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/823.html,施瑋翰 James,沾享空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/824.html,UC.enter設計團隊,UC.enter室內設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/826.html,賴金賢,金宸室內裝修
+
+https://hhh.com.tw/HHH_NEW/designers_static/827.html,Yui,澄空間室內裝修工程工作室
+
+https://hhh.com.tw/HHH_NEW/designers_static/828.html,Willie KK Joby,蒝創設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/829.html,林一清,水源清設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/830.html,侯亭妤,寓上室內設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/831.html,蔡佩諭,英貝設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/832.html,陳柏維 Robert,維立室內設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/833.html,謝佳衛 Ryan Hsieh,水木室內設計 Kiaro Interior
+
+https://hhh.com.tw/HHH_NEW/designers_static/834.html,曾大洋,禾碩時尚空間設計工坊
+
+https://hhh.com.tw/HHH_NEW/designers_static/835.html,威展空間設計團隊,威展空間設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/836.html,陳品程,橙楓室內裝修設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/837.html,林威辰,形境設計室內裝修
+
+https://hhh.com.tw/HHH_NEW/designers_static/838.html,宋俊餘,鼎極室內裝修工作室
+
+https://hhh.com.tw/HHH_NEW/designers_static/839.html,曹國駿,御品室內裝修工程行
+
+https://hhh.com.tw/HHH_NEW/designers_static/840.html,楊耕侖,奧仕設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/841.html,李望聖 Sam Lee,川也室內設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/842.html,李濬赫、李佩津,巧將設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/843.html,王姿婷,朝谷室內設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/844.html,黃禎宇,圓祥設計
+
+https://hhh.com.tw/HHH_NEW/designers_static/845.html,盧志炫,恩萊空間設計
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/3.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/5.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/13.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/18.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/19.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/23.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/24.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/28.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/29.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/30.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/31.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/32.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/33.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/39.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/41.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/54.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/55.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/57.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/58.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/62.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/63.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/65.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/70.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/72.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/74.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/76.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/78.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/79.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/87.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/98.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/99.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/101.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/106.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/131.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/134.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/138.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/145.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/148.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/158.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/172.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/177.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/182.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/278.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/279.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/291.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/293.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/301.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/307.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/312.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/313.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/315.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/317.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/331.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/332.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/347.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/356.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/358.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/363.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/364.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/368.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/379.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/382.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/385.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/388.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/394.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/396.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/402.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/404.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/405.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/413.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/417.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/418.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/419.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/421.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/422.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/423.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/427.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/432.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/436.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/438.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/439.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/441.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/447.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/448.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/452.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/453.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/463.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/465.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/468.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/474.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/482.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/483.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/491.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/500.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/505.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/506.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/510.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/514.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/520.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/523.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/531.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/536.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/542.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/545.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/549.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/554.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/555.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/559.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/571.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/573.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/581.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/583.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/584.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/586.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/589.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/596.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/598.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/600.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/611.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/614.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/639.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/650.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/651.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/652.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/654.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/661.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/663.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/664.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/668.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/671.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/672.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/673.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/674.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/675.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/676.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/677.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/678.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/681.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/683.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/684.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/685.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/688.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/692.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/694.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/699.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/700.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/701.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/704.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/705.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/706.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/707.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/708.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/709.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/710.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/711.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/713.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/715.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/716.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/717.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/718.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/719.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/720.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/722.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/723.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/724.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/725.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/726.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/728.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/730.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/731.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/733.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/735.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/736.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/737.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/738.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/739.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/740.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/741.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/742.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/743.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/744.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/745.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/746.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/747.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/749.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/750.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/751.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/752.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/753.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/754.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/755.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/756.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/757.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/758.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/759.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/760.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/761.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/762.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/763.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/764.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/765.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/766.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/767.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/768.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/769.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/770.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/771.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/772.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/773.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/774.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/775.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/776.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/777.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/778.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/779.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/780.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/781.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/782.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/783.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/784.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/785.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/786.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/787.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/788.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/789.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/790.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/791.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/792.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/793.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/794.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/795.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/796.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/797.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/798.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/799.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/800.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/801.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/802.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/803.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/804.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/805.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/806.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/807.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/808.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/809.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/810.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/811.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/812.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/813.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/814.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/815.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/816.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/817.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/818.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/819.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/820.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/821.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/822.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/823.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/824.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/826.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/827.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/828.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/829.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/830.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/831.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/832.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/833.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/834.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/835.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/836.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/837.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/838.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/839.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/840.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/841.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/842.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/843.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/844.html,nn,nn
+
+https://m.hhh.com.tw/HHH_NEW/designers_static/845.html,nn,nn
+

+ 2 - 2
website_clickjobs/type-1/hhh.py

@@ -25,8 +25,8 @@ sourceurls = ["https://hhh.com.tw/HHH_NEW/sitemap/sitemap.xml","https://m.hhh.co
 
 # PRIORITY IDs, clear list (make it become [] ) to disable priority
 priority = [[54, '虞國綸', '格綸設計'], [793, '許伯争', '樂作空間設計']]
-#priority = [[54, '虞國綸', '格綸設計'], [793, '許伯争', '樂作空間設計'], 32]      # RESERVED -- LEVEL 2
-#priority = [[54, '虞國綸', '格綸設計'], [793, '許伯争', '樂作空間設計'], 32, 331] # RESERVED -- LEVEL 3
+#priority = [[54, '虞國綸', '格綸設計'], [793, '許伯争', '樂作空間設計'], [32, '吳函霖', '理揚室內裝修設計','理揚室內','理揚設計']]      # RESERVED -- LEVEL 2
+#priority = [[54, '虞國綸', '格綸設計'], [793, '許伯争', '樂作空間設計'], [32, '吳函霖', '理揚室內裝修設計','理揚室內','理揚設計'], [331,'張祥鎬', '伊太空間設計','伊太','伊太設計']] # RESERVED -- LEVEL 3
 
 domain = 'hhh.com.tw'
 target_domain = get_xml_data(sourceurls)

+ 2 - 2
website_clickjobs/type-1/hhh_e2.py

@@ -24,7 +24,7 @@ def get_xml_data(urls):
 sourceurls = ["https://hhh.com.tw/HHH_NEW/sitemap/sitemap.xml","https://m.hhh.com.tw/HHH_NEW/sitemap/sitemap.xml"]
 
 # PRIORITY IDs, clear list (make it become [] ) to disable priority
-priority = [['https://hhh.com.tw/brand-index.php?brand_id=216', '好萊得'],['https://hhh.com.tw/brand-product.php?brand_id=211', '艾立思'], ['https://hhh.com.tw/brand-index.php?brand_id=211', '艾立思']]
+priority = [['https://hhh.com.tw/brand-index.php?brand_id=216', '好萊得', '好萊得頂級衣帽間'],['https://hhh.com.tw/brand-product.php?brand_id=211', '艾立思', 'ELIZ', 'ELIZ GROUP', '艾立思軟裝集團'], ['https://hhh.com.tw/brand-index.php?brand_id=211', '艾立思', 'ELIZ', 'ELIZ GROUP', '艾立思軟裝集團']]
 #priority = [['https://hhh.com.tw/brand-index.php?brand_id=211', '艾立思']]
 #priority = [[54, '虞國綸', '格綸設計'], [793, '許伯争', '樂作空間設計'], 32]      # RESERVED -- LEVEL 2
 #priority = [[54, '虞國綸', '格綸設計'], [793, '許伯争', '樂作空間設計'], 32, 331] # RESERVED -- LEVEL 3
@@ -52,4 +52,4 @@ while True:
         print(len(target_domain))
     if statuscode == 444:
         break
-time.sleep(60)
+    time.sleep(60)

+ 42 - 0
website_clickjobs/type-1/hhh_e3.py

@@ -0,0 +1,42 @@
+from _clickjob1023 import *
+
+domain = ''
+prefix = ''
+postfix = ''
+positive = []
+target_domain = ''
+brands = ''
+
+statuscode = 0
+
+def getsite():
+    r=random.randint(0,3)
+    if r==0:
+        prefix="艾立思"
+        brands = 'hhh'
+        domain='hhh.com.tw'
+        target_domain='https://hhh.com.tw/brand-index.php?brand_id=211'
+        positive=['','','設計','艾立思軟裝','艾立思集團','ELIZ GROUP','艾立思 家具訂製','艾立思 精品家具','艾立思 軟裝飾品','ELIZ','免付費','0809','幸福空間','家具']
+    if r==1 or r==3:
+        prefix="好萊得"
+        brands = 'hhh'
+        domain='hhh.com.tw'
+        target_domain='https://hhh.com.tw/brand-index.php?brand_id=216'
+        positive=['','','衣帽間','林口','收納','精緻','華麗','櫃內設計','木工','幸福空間','頂級','高質感']
+    if r==2:
+        prefix="艾立思"
+        brands = 'hhh'
+        domain='hhh.com.tw'
+        target_domain='https://hhh.com.tw/brand-product.php?brand_id=211'
+        positive=['','','設計','艾立思集團','ELIZ GROUP','艾立思 家具訂製','艾立思 精品家具','艾立思 軟裝飾品','ELIZ','免付費','0809','幸福空間','家具']
+    return prefix,brands,domain,target_domain,positive
+
+while True:
+    prefix,brands,domain,target_domain,positive=getsite()
+    kw = prefix + ' ' + random.choice(positive)
+    print(kw)
+    print(target_domain)
+    statuscode = execute(target_domain, target_domain, brands, [kw])
+    if statuscode == 444:
+        print("Caught")
+        time.sleep(60)

+ 92 - 0
website_clickjobs/type-1/hhh_gather.py

@@ -0,0 +1,92 @@
+from _clickjob import *
+import xmltodict
+from selenium import webdriver
+import csv
+
+def get_xml_data(urls):
+    data = []
+    for u in urls:
+        page = requests.get(u)
+        designerdata = xmltodict.parse(page.content)['urlset']['url']
+        for d in designerdata:
+            data.append(d['loc']) 
+
+    if len(data)>=10:
+        print(data[:10])
+    else:
+        print(data)
+    return data
+
+def process_query(target):
+    print(target)
+    name = "nn"
+    org = "nn"
+    global driver
+    try:
+        driver.get(target) 
+        name=driver.find_element(By.CLASS_NAME,"infoCard__name")
+        org=driver.find_element(By.CLASS_NAME,"infoCard__company")
+    except:
+        pass
+    time.sleep(10)
+    return name.text,org.text
+
+
+def run_once(target):
+    global driver
+    result=[]
+    options = webdriver.ChromeOptions()
+    options.add_argument('--headless')
+#    options.add_argument("--user-agent=" +user_agent)
+    options.add_argument("--incognito")
+    options.add_argument('--no-sandbox')
+    options.add_argument('--disable-dev-shm-usage')
+
+    driver = webdriver.Chrome(
+    options=options)
+
+    driver.delete_all_cookies()
+    driver.set_window_size(1400,1000)
+
+    data=[]
+
+    
+    for t in target:
+        try:
+            name="nn"
+            org="nn"
+            name,org=process_query(t)
+            print(name)
+            print(org)
+            newstr = t + ',' + name + ',' + org
+            alt1 = org[:2]
+            alt2 = alt1 + org[-2:]
+            alt3 = alt1 + org[-4:]
+        except:
+            print("error")
+        data.append([t,name,org,alt1,alt2,alt3])
+        time.sleep(3)
+    driver.quit()
+
+    print(data)
+    with open('data.csv', 'w', encoding="UTF-8") as file:
+        writer = csv.writer(file)
+        writer.writerows(data)
+        file.close()
+
+
+
+#execution starts here
+
+
+sourceurls = ["https://hhh.com.tw/HHH_NEW/sitemap/sitemap.xml"]
+
+# PRIORITY IDs, clear list (make it become [] ) to disable priority
+#priority = [[54, '虞國綸', '格綸設計'], [793, '許伯争', '樂作空間設計']]
+#priority = [[54, '虞國綸', '格綸設計'], [793, '許伯争', '樂作空間設計'], [32, '吳函霖', '理揚室內裝修設計','理揚室內','理揚設計']]      # RESERVED -- LEVEL 2
+#priority = [[54, '虞國綸', '格綸設計'], [793, '許伯争', '樂作空間設計'], [32, '吳函霖', '理揚室內裝修設計','理揚室內','理揚設計'], [331,'張祥鎬', '伊太空間設計','伊太','伊太設計']] # RESERVED -- LEVEL 3
+
+domain = 'hhh.com.tw'
+target_domain = get_xml_data(sourceurls)
+
+run_once(target_domain)

+ 54 - 0
website_clickjobs/type-1/hhh_p.py

@@ -0,0 +1,54 @@
+from _clickjob import *
+import xmltodict
+
+def get_xml_data(urls):
+    data = []
+    if len(priority)!=0:
+        for p in priority:
+            link = 'https://hhh.com.tw/HHH_NEW/designers_static/' + str(p[0]) + '.html'
+            data.append('https://hhh.com.tw/HHH_NEW/designers_static/' + str(p[0]) + '.html')
+            p[0] = 'https://hhh.com.tw/HHH_NEW/designers_static/' + str(p[0]) + '.html'
+    else:
+        for u in urls:
+            page = requests.get(u)
+            designerdata = xmltodict.parse(page.content)['urlset']['url']
+            for d in designerdata:
+                data.append(d['loc']) 
+
+    if len(data)>=10:
+        print(data[:10])
+    else:
+        print(data)
+    return data
+
+sourceurls = ["https://hhh.com.tw/HHH_NEW/sitemap/sitemap.xml","https://m.hhh.com.tw/HHH_NEW/sitemap/sitemap.xml", 'https://hhh.com.tw/sitemap_HHH/sitemap.xml', 'https://m.hhh.com.tw/sitemap_HHH/sitemap.xml']
+
+# PRIORITY IDs, clear list (make it become [] ) to disable priority
+priority=[]
+#priority = [[54, '虞國綸', '格綸設計'], [793, '許伯争', '樂作空間設計']]
+#priority = [[54, '虞國綸', '格綸設計'], [793, '許伯争', '樂作空間設計'], [32, '吳函霖', '理揚室內裝修設計','理揚室內','理揚設計']]      # RESERVED -- LEVEL 2
+#priority = [[54, '虞國綸', '格綸設計'], [793, '許伯争', '樂作空間設計'], [32, '吳函霖', '理揚室內裝修設計','理揚室內','理揚設計'], [331,'張祥鎬', '伊太空間設計','伊太','伊太設計']] # RESERVED -- LEVEL 3
+
+
+domain = 'hhh.com.tw'
+target_domain = get_xml_data(sourceurls)
+print(len(target_domain))
+brands={domain:'hhh'}
+query_list = ['幸福空間']
+
+while True:
+    
+    if len(priority)!=0:
+        target = random.choice(priority)
+        ql = target[1:]
+        if random.randint(0, 3) % 2 == 1:
+            for q in range (len(ql)):
+                ql[q] = '幸福空間 ' + ql[q]
+        print
+        print(ql)        
+        execute(domain, target[0], brands, ql)
+    else:
+        target = random.choice(target_domain)
+        print(target)
+        execute(domain, target, brands, query_list, 2)
+    time.sleep(60)

Failā izmaiņas netiks attēlotas, jo tās ir par lielu
+ 24 - 0
website_clickjobs/type-1/hhh_r.py


+ 129 - 0
website_clickjobs/type-1/hhh_t.py

@@ -0,0 +1,129 @@
+from _clickjobtesthhh import *
+import xmltodict
+
+def get_xml_data(urls):
+    data = []
+    if len(priority)!=0:
+        for p in priority:
+            link = 'https://hhh.com.tw/HHH_NEW/designers_static/' + str(p[0]) + '.html'
+            data.append('https://hhh.com.tw/HHH_NEW/designers_static/' + str(p[0]) + '.html')
+            p[0] = 'https://hhh.com.tw/HHH_NEW/designers_static/' + str(p[0]) + '.html'
+    else:
+        for u in urls:
+            page = requests.get(u)
+            designerdata = xmltodict.parse(page.content)['urlset']['url']
+            for d in designerdata:
+                data.append(d['loc']) 
+
+    if len(data)>=10:
+        print(data[:10])
+    else:
+        print(data)
+    return data
+'''
+sourceurls = ["https://hhh.com.tw/HHH_NEW/sitemap/sitemap.xml","https://m.hhh.com.tw/HHH_NEW/sitemap/sitemap.xml"]
+
+# PRIORITY IDs, clear list (make it become [] ) to disable priority
+priority = [['https://hhh.com.tw/brand-index.php?brand_id=216', '好萊得'],['https://hhh.com.tw/brand-product.php?brand_id=211', '艾立思'], ['https://hhh.com.tw/brand-index.php?brand_id=211', '艾立思']]
+#priority = [['https://hhh.com.tw/brand-index.php?brand_id=211', '艾立思']]
+#priority = [[54, '虞國綸', '格綸設計'], [793, '許伯争', '樂作空間設計'], 32]      # RESERVED -- LEVEL 2
+#priority = [[54, '虞國綸', '格綸設計'], [793, '許伯争', '樂作空間設計'], 32, 331] # RESERVED -- LEVEL 3
+
+domain = 'hhh.com.tw'
+#target_domain = get_xml_data(sourceurls)
+brands={domain:'hhh'}
+query_list = ('幸福空間')
+
+statuscode = 0
+
+while True:
+    if len(priority)!=0:
+        target = random.choice(priority)
+        ql = target[1:]
+        if random.randint(0, 3) % 2 == 3:
+            for q in range (len(ql)):
+                ql[q] = '幸福空間 ' + ql[q]
+        print(ql)
+        print(target[0])
+        statuscode = execute(domain, target[0], brands, ql)
+    else:
+        target = random.choice(target_domain)
+        #statuscode = execute(domain, target_domain, brands, query_list)
+        print(len(target_domain))
+    if statuscode == 444:
+        break
+    time.sleep(60)
+
+          print('exception')
+        traceback.print_exc()
+
+    driver.quit()
+'''
+
+#time.sleep(5)
+
+'''
+if r==3:
+    prefix="錢濤 "
+    domain=['books.com.tw']
+    positive=['']
+if r==4:
+    prefix="錢濤 "
+    domain=['tvbs.com.tw']
+    positive=['職籃夢','攤證據','還原始末','借貸人','移花接木','中資疑雲','律師查證','球隊註冊資本','熱愛這片土地','修鳳山球場','企業CSR']
+if r==5:
+    prefix="錢濤 "
+    postfix=' site:setn.com'
+    domain=['setn.com']
+    positive=['債權人','俄烏戰爭','美國升息']
+if r==6:
+    prefix="錢濤 "
+    postfix=' site:ebc.net.tw'
+    domain=['ebc.net.tw']
+    positive=['管理資產','華爾街日報','錢濤分析','亞洲股市','鈀金']
+if r==7:
+    prefix="錢濤"
+    postfix=' site:ptt.cx'
+    domain=['ptt.cx']
+    positive=['無極資本','無極','台股','陸股','年底','保守看待','執行官','ADR','美股','倉位調整','動態清零','鈀金','能源短缺','產業鏈','政策信號','亞洲股市']
+if r==8:
+    prefix="葉建揚 "
+    domain=['sina.com.tw']
+    positive=['','安倍','後安倍時代','安倍時代','岸田','台日關係 安倍','岸田首相','日台關係岸田']
+if r==9:
+    prefix="艾立思"
+    postfix=' site:hhh.com.tw'
+    domain=['hhh.com.tw']
+    positive=['','','艾立思軟裝','艾立思集團','ELIZ GROUP','艾立思 家具訂製','艾立思 精品家具','艾立思 軟裝飾品','ELIZ','郭柏君','免付費','0809','幸福空間']
+'''
+
+while True:
+    portnum=random.randint(4444,4555)
+    print(portnum)
+
+    r=random.randint(1,1)
+    if r==0:
+        prefix="好萊得"
+        domain=['hhh.com.tw/brand-index.php?brand_id=216']
+        positive=['']
+    if r==1:
+        prefix="艾立思"
+        domain=['hhh.com.tw/brand-index.php?brand_id=211']
+        positive=['']
+    if r==2:
+        prefix="艾立思"
+        domain=['hhh.com.tw/brand-product.php?brand_id=211']
+        positive=['']
+
+    #os.system('curl --socks5 choozmo:choozmo9@172.104.93.163:41900 http://www.google.com')
+    os.system('docker container stop p4444')
+    time.sleep(1)
+    os.system('docker container rm p4444')
+    time.sleep(1)
+    os.system('docker run -d -p '+str(portnum)+':4444 --name p4444 --dns 168.95.1.1 selenium/standalone-chrome:103.0')
+
+
+    #time.sleep(18)
+    #kw=random.choice(positive)
+    run_once({'domain':domain,'kw':prefix, 'pn':portnum})
+    #run_once({'domain':domain,'kw':prefix+" "+kw})

+ 1933 - 0
website_clickjobs/type-1/sitemap.xml

@@ -0,0 +1,1933 @@
+<?xml version="1.0" encoding="UTF-8"?>
+      <urlset 
+      xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
+      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+      xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
+      http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd"
+     >
+    
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/3.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/5.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/13.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/18.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/19.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/23.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/24.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/28.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/29.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/30.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/31.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/32.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/33.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/39.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/41.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/54.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/55.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/57.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/58.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/62.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/63.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/65.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/70.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/72.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/74.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/76.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/78.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/79.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/87.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/98.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/99.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/101.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/106.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/131.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/134.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/138.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/145.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/148.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/158.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/172.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/177.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/182.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/278.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/279.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/291.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/293.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/301.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/307.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/312.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/313.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/315.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/317.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/331.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/332.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/347.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/356.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/358.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/363.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/364.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/368.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/379.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/382.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/385.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/388.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/394.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/396.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/402.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/404.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/405.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/413.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/417.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/418.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/419.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/421.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/422.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/423.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/427.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/432.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/436.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/438.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/439.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/441.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/447.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/448.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/452.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/453.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/463.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/465.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/468.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/474.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/482.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/483.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/491.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/500.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/505.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/506.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/510.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/514.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/520.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/523.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/531.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/536.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/542.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/545.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/549.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/554.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/555.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/559.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/571.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/573.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/581.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/583.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/584.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/586.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/589.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/596.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/598.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/600.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/611.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/614.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/639.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/650.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/651.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/652.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/654.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/661.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/663.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/664.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/668.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/671.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/672.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/673.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/674.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/675.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/676.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/677.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/678.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/681.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/683.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/684.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/685.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/688.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/692.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/694.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/699.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/700.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/701.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/704.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/705.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/706.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/707.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/708.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/709.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/710.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/711.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/713.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/715.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/716.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/717.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/718.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/719.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/720.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/722.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/723.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/724.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/725.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/726.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/728.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/730.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/731.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/733.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/735.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/736.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/737.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/738.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/739.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/740.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/741.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/742.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/743.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/744.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/745.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/746.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/747.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/749.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/750.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/751.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/752.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/753.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/754.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/755.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/756.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/757.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/758.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/759.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/760.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/761.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/762.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/763.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/764.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/765.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/766.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/767.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/768.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/769.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/770.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/771.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/772.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/773.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/774.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/775.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/776.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/777.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/778.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/779.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/780.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/781.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/782.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/783.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/784.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/785.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/786.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/787.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/788.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/789.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/790.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/791.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/792.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/793.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/794.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/795.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/796.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/797.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/798.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/799.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/800.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/801.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/802.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/803.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/804.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/805.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/806.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/807.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/808.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/809.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/810.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/811.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/812.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/813.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/814.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/815.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/816.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/817.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/818.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/819.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/820.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/821.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/822.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/823.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/824.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/826.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/827.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/828.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/829.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/830.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/831.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/832.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/833.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/834.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/835.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/836.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/837.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/838.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/839.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        
+       <url>
+           <loc>https://m.hhh.com.tw/HHH_NEW/designers_static/841.html</loc>
+          <lastmod>2022-10-18T17:12:16+08:00</lastmod>
+	    <priority>1.0</priority><changefreq>daily</changefreq>
+      </url>
+	
+        </urlset>

+ 12 - 0
website_clickjobs/type-1/test.py

@@ -0,0 +1,12 @@
+from _clickjob import *
+import xmltodict
+
+def get_xml_data(link):
+    data = []
+    page = requests.get(link) # get this shit from the internet and make sure it's in XML
+    designerdata = xmltodict.parse(page.content)['urlset']['url']
+    for d in designerdata:
+        data.append([d['loc'], d['priority']]) 
+    print(data[:10])
+
+get_xml_data("https://hhh.com.tw/HHH_NEW/sitemap/sitemap.xml")

Daži faili netika attēloti, jo izmaiņu fails ir pārāk liels