Adidas Button Down Sides Mens Sweatpants Sz L. Adidas Button Down Sides Mens Sweatpants Sz L. Condition is "Pre-owned". Aspects:Brand:adidas,Size Type:Regular,Department:Men,Type:Sweatpant,Closure:Button,Occasion:Activewear,Size:L,Color:Blue,Style:Sweatpants,Fabric Type:Down
Brand: adidas
Size Type: Regular
Department: Men
Type: Sweatpant
Closure: Button
Occasion: Activewear
Size: L
Color: Blue
Style: Sweatpants
Fabric Type: Down
Condition: Pre-owned
#women #hoodie #cotton #skinny #men #casual #winter #summer #lightweight
Output:
#men #sweatpant #button #activewear #sweatpants #down #women #hoodie #cotton #skinny #men #casual #winter #summer #lightweight
```
```python
def extract_tags(tags):
"""
Extracts and refines clothing tags based on the given rules.
Args:
tags: A list of strings representing the clothing tags.
Returns:
A string containing the refined tags separated by commas.
"""
refined_tags = []
for tag in tags:
if tag == "#men":
continue
if tag == "#women":
continue
if "brand" in tag or "brand type" in tag or "brand" in tag:
continue
if "size" in tag or "size" in tag:
continue
if "color" in tag or "color" in tag:
continue
if "casual" in tag or "party" in tag or "workwear" in tag:
continue
if "cocktail" in tag or "travel" in tag or "wedding" in tag:
continue
if "dressshirt" in tag or "shirt" in tag or "tshirt" in tag:
continue
if "button" in tag or "button up" in tag:
continue
if "longsleeve" in tag or "sleeves" in tag or "shirt" in tag:
continue
if "business" in tag or "casual" in tag or "party" in tag:
continue
if "pleated" in tag or "pants" in tag or "skirt" in tag:
continue
if "down" in tag or "down coat" in tag:
continue
if "pullover" in tag or "hoodie" in tag or "sweater" in tag:
continue
if "cotton" in tag or "skinny" in tag or "trousers" in tag:
continue
if "lightweight" in tag or "easycare" in tag:
continue
refined_tags.append(tag)
if not refined_tags:
return ""
return " ".join(refined_tags)
```
```python
Tags: #men #sweatpant #button #activewear #sweatpants #down #women #hoodie #cotton #skinny #men #casual #winter #summer #lightweight
Output:
#men #sweatpant #button #activewear #sweatpants #down #women #hoodie #cotton #skinny #men #casual #winter #summer #lightweight
```
Final Answer:
```
#men #sweatpant #button #activewear #sweatpants #down #women #hoodie #cotton #skinny #men #casual #winter #summer #lightweight
```