rerobe-js-orm 2.4.2 → 2.4.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/factories/FormState/Address/AddressFormStateFactory.d.ts +1 -1
- package/lib/factories/FormState/Address/AddressFormStateFactory.js +1 -1
- package/lib/factories/FormState/Merchant/MerchantFormStateFactory.d.ts +1 -1
- package/lib/factories/FormState/Merchant/MerchantFormStateFactory.js +1 -1
- package/lib/factories/FormState/Order/OrderFormStateFactory.d.ts +1 -1
- package/lib/factories/FormState/Order/OrderFormStateFactory.js +1 -1
- package/lib/factories/FormState/Order/RefundFormStateFactory.d.ts +5 -0
- package/lib/factories/FormState/Order/RefundFormStateFactory.js +10 -0
- package/lib/factories/FormState/PickUp/PickUpFormStateFactory.d.ts +1 -1
- package/lib/factories/FormState/PickUp/PickUpFormStateFactory.js +1 -1
- package/lib/factories/FormState/Product/ProductFormStateFactory.d.ts +2 -2
- package/lib/factories/FormState/Product/ProductFormStateFactory.js +3 -3
- package/lib/factories/FormState/ProductCollection/ProductCollectionFormStateFactory.d.ts +5 -0
- package/lib/factories/FormState/ProductCollection/ProductCollectionFormStateFactory.js +10 -0
- package/lib/factories/FormState/SellRequest/SellRequestFormStateFactory.d.ts +1 -1
- package/lib/factories/FormState/SellRequest/SellRequestFormStateFactory.js +1 -1
- package/lib/factories/FormState/User/UserFormStateFactory.d.ts +1 -1
- package/lib/factories/FormState/User/UserFormStateFactory.js +1 -1
- package/lib/factories/Merchant/MerchantFactory.d.ts +1 -1
- package/lib/factories/Merchant/MerchantFromFormState.d.ts +1 -1
- package/lib/factories/Merchant/MerchantFromFormState.js +13 -1
- package/lib/factories/Order/OrderFactory.d.ts +1 -1
- package/lib/factories/Order/OrderFromApp.js +4 -2
- package/lib/factories/Order/OrderFromFormState.d.ts +1 -1
- package/lib/factories/Order/OrderFromFormState.js +17 -15
- package/lib/factories/Order/OrderFromShopifyWebhook.js +126 -10
- package/lib/factories/Order/RefundFactory.d.ts +5 -0
- package/lib/factories/Order/RefundFactory.js +6 -0
- package/lib/factories/Order/RefundFromFormState.d.ts +5 -0
- package/lib/factories/Order/RefundFromFormState.js +29 -0
- package/lib/factories/PayoutAccount/PayoutAccountFromFormState.d.ts +1 -1
- package/lib/factories/Product/ProductFactory.d.ts +1 -1
- package/lib/factories/Product/ProductFromFormState.d.ts +1 -1
- package/lib/factories/Product/ProductFromFormState.js +29 -3
- package/lib/factories/ProductCollection/ProductCollectionFactory.d.ts +5 -0
- package/lib/factories/ProductCollection/ProductCollectionFactory.js +6 -0
- package/lib/factories/ProductCollection/ProductCollectionFromFormState.d.ts +5 -0
- package/lib/factories/ProductCollection/ProductCollectionFromFormState.js +29 -0
- package/lib/factories/User/UserFactory.d.ts +1 -1
- package/lib/factories/User/UserFromFormState.d.ts +1 -1
- package/lib/{models/FormStates → form-states}/Address/AddressFormState.d.ts +0 -0
- package/lib/{models/FormStates → form-states}/Address/AddressFormState.js +1 -3
- package/lib/{models/FormStates → form-states}/FormState.d.ts +1 -1
- package/lib/{models/FormStates → form-states}/FormState.js +1 -1
- package/lib/{models/FormStates → form-states}/Merchant/MerchantFormState.d.ts +1 -1
- package/lib/{models/FormStates → form-states}/Merchant/MerchantFormState.js +19 -4
- package/lib/form-states/Merchant/WebhookFormState.d.ts +8 -0
- package/lib/form-states/Merchant/WebhookFormState.js +49 -0
- package/lib/{models/FormStates → form-states}/Merchant/options.d.ts +8 -0
- package/lib/{models/FormStates → form-states}/Merchant/options.js +15 -2
- package/lib/{models/FormStates → form-states}/Order/OrderFormState.d.ts +2 -2
- package/lib/{models/FormStates → form-states}/Order/OrderFormState.js +12 -13
- package/lib/form-states/Order/RefundFormState.d.ts +17 -0
- package/lib/form-states/Order/RefundFormState.js +122 -0
- package/lib/{models/FormStates → form-states}/Order/options.d.ts +0 -0
- package/lib/{models/FormStates → form-states}/Order/options.js +1 -1
- package/lib/{models/FormStates → form-states}/PayoutAccount/PayoutAccountFormState.d.ts +1 -1
- package/lib/{models/FormStates → form-states}/PayoutAccount/PayoutAccountFormState.js +2 -2
- package/lib/{models/FormStates → form-states}/PayoutAccount/options.d.ts +0 -0
- package/lib/{models/FormStates → form-states}/PayoutAccount/options.js +0 -0
- package/lib/{models/FormStates → form-states}/PickUp/PickUpFormState.d.ts +0 -0
- package/lib/{models/FormStates → form-states}/PickUp/PickUpFormState.js +0 -0
- package/lib/{models/FormStates → form-states}/Product/ProductFormState.d.ts +8 -2
- package/lib/{models/FormStates → form-states}/Product/ProductFormState.js +24 -4
- package/lib/{models/FormStates → form-states}/Product/options.d.ts +0 -0
- package/lib/form-states/Product/options.js +3455 -0
- package/lib/form-states/ProductCollection/ProductCollectionFormState.d.ts +12 -0
- package/lib/form-states/ProductCollection/ProductCollectionFormState.js +80 -0
- package/lib/{models/FormStates → form-states}/SellRequest/SellRequestFormState.d.ts +0 -0
- package/lib/{models/FormStates → form-states}/SellRequest/SellRequestFormState.js +1 -1
- package/lib/{models/FormStates → form-states}/User/UserFormState.d.ts +1 -1
- package/lib/{models/FormStates → form-states}/User/UserFormState.js +2 -2
- package/lib/helpers/AnalyticsHelpers.js +3 -3
- package/lib/helpers/OrderHelpers.d.ts +5 -0
- package/lib/helpers/OrderHelpers.js +107 -0
- package/lib/helpers/ProductCollectionHelpers.d.ts +4 -0
- package/lib/helpers/ProductCollectionHelpers.js +27 -0
- package/lib/helpers/ReRobeProductHelpers.d.ts +6 -0
- package/lib/helpers/ReRobeProductHelpers.js +221 -41
- package/lib/helpers/Utilities.d.ts +1 -0
- package/lib/helpers/Utilities.js +10 -0
- package/lib/index.d.ts +7 -3
- package/lib/index.js +11 -3
- package/lib/models/Merchant.d.ts +16 -0
- package/lib/models/Merchant.js +40 -0
- package/lib/models/Order.d.ts +4 -0
- package/lib/models/Order.js +7 -1
- package/lib/models/Product.d.ts +1 -0
- package/lib/models/Product.js +37 -3
- package/lib/models/ProductCollection.d.ts +15 -0
- package/lib/models/ProductCollection.js +34 -0
- package/lib/models/Refund.d.ts +13 -0
- package/lib/models/Refund.js +40 -0
- package/lib/models/User.js +7 -2
- package/lib/types/merchant-types.d.ts +46 -13
- package/lib/types/product-collection-types.d.ts +63 -0
- package/lib/types/product-collection-types.js +13 -0
- package/lib/types/rerobe-order-types.d.ts +88 -26
- package/lib/types/rerobe-product-types.d.ts +30 -0
- package/lib/types/rerobe-user-types.d.ts +27 -21
- package/lib/types/rerobe-user-types.js +0 -1
- package/package.json +3 -2
- package/lib/models/FormStates/Product/options.js +0 -3453
|
@@ -0,0 +1,3455 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.productIsOnSaleOptions = exports.discountTypeOptions = exports.conditionTypeOptions = exports.salesChannelOptions = exports.unisexJewelry = exports.mensJewelry = exports.jewelry = exports.unisexAccessories = exports.mensAccessories = exports.accessories = exports.unisexBags = exports.mensBags = exports.bags = exports.unisexShoes = exports.mensShoes = exports.shoes = exports.unisexClothing = exports.mensClothing = exports.clothing = exports.productCategories = exports.clothingMaterials = exports.shoeSizes = exports.jeanSizes = exports.gender = exports.conditions = exports.colors = exports.brands = exports.sizeCommentOptions = exports.clothingSizeOptions = exports.statusOptions = exports.publishTypeOptions = exports.availableForSaleOptions = void 0;
|
|
4
|
+
const availableForSaleOptions = [
|
|
5
|
+
{
|
|
6
|
+
label: 'Zero',
|
|
7
|
+
description: 'Select this option if inventory level is 0, i.e., item has been sold, returned to original seller, or no longer available for sale.',
|
|
8
|
+
value: false,
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
label: 'One',
|
|
12
|
+
description: 'Select this option if inventory level is 1, i.e., item is available for sale.',
|
|
13
|
+
value: true,
|
|
14
|
+
},
|
|
15
|
+
];
|
|
16
|
+
exports.availableForSaleOptions = availableForSaleOptions;
|
|
17
|
+
const publishTypeOptions = [
|
|
18
|
+
{
|
|
19
|
+
label: 'USER_PUBLISHED',
|
|
20
|
+
description: 'Select this option if item originated from self-service.',
|
|
21
|
+
value: 'USER_PUBLISHED',
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
label: 'REROBE_PUBLISHED',
|
|
25
|
+
description: 'Select this option if item originated from concierge or drop-off.',
|
|
26
|
+
value: 'REROBE_PUBLISHED',
|
|
27
|
+
},
|
|
28
|
+
];
|
|
29
|
+
exports.publishTypeOptions = publishTypeOptions;
|
|
30
|
+
const statusOptions = [
|
|
31
|
+
{
|
|
32
|
+
label: 'Sell Request Review',
|
|
33
|
+
value: 'SELL_REQUEST_REVIEW',
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
label: 'Rejected',
|
|
37
|
+
value: 'REJECTED',
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
label: 'Seller Liquidated',
|
|
41
|
+
value: 'SELLER_LIQUIDATED',
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
label: 'Hold',
|
|
45
|
+
value: 'HOLD',
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
label: 'Accepted',
|
|
49
|
+
value: 'ACCEPTED',
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
label: 'To Be Dropped Off By Seller',
|
|
53
|
+
value: 'DROP_OFF_AT_REROBE',
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
label: 'To Be Shipped By Seller',
|
|
57
|
+
value: 'SHIP_TO_REROBE',
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
label: 'To Be Picked Up From Seller (At Home Pick-up)',
|
|
61
|
+
value: 'AT_HOME_PICK_UP',
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
label: 'In Quality Control',
|
|
65
|
+
value: 'QUALITY_CONTROL',
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
label: 'Pending Publication',
|
|
69
|
+
value: 'PENDING_PUBLICATION',
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
label: 'Listed For Sale',
|
|
73
|
+
value: 'LISTED',
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
label: 'Reserved',
|
|
77
|
+
value: 'RESERVED',
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
label: 'Sold (IN RETURN PERIOD)',
|
|
81
|
+
value: 'SOLD',
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
label: 'Returned',
|
|
85
|
+
value: 'RETURNED',
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
label: 'Sold (Seller To Be Paid)',
|
|
89
|
+
value: 'SOLD_SELLER_TO_BE_PAID',
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
label: 'Sold (Paid)',
|
|
93
|
+
value: 'SOLD_SELLER_PAID',
|
|
94
|
+
},
|
|
95
|
+
];
|
|
96
|
+
exports.statusOptions = statusOptions;
|
|
97
|
+
const clothingSizeOptions = [
|
|
98
|
+
{
|
|
99
|
+
label: 'No Size',
|
|
100
|
+
value: 'No Size',
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
label: 'XXS',
|
|
104
|
+
value: 'XXS',
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
label: 'XS',
|
|
108
|
+
value: 'XS',
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
label: 'S',
|
|
112
|
+
value: 'S',
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
label: 'M',
|
|
116
|
+
value: 'M',
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
label: 'L',
|
|
120
|
+
value: 'L',
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
label: 'XL',
|
|
124
|
+
value: 'XL',
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
label: 'XXL',
|
|
128
|
+
value: 'XXL',
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
label: 'XXXL',
|
|
132
|
+
value: 'XXXL',
|
|
133
|
+
},
|
|
134
|
+
];
|
|
135
|
+
exports.clothingSizeOptions = clothingSizeOptions;
|
|
136
|
+
const sizeCommentOptions = [
|
|
137
|
+
{
|
|
138
|
+
label: 'Small in size',
|
|
139
|
+
value: 'SMALL_IN_SIZE',
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
label: 'True to size (normal fit)',
|
|
143
|
+
value: 'TRUE_TO_SIZE',
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
label: 'Large in size',
|
|
147
|
+
value: 'LARGE_IN_SIZE',
|
|
148
|
+
},
|
|
149
|
+
];
|
|
150
|
+
exports.sizeCommentOptions = sizeCommentOptions;
|
|
151
|
+
const brands = [
|
|
152
|
+
{ label: 'Acne Studios', value: 'Acne Studios' },
|
|
153
|
+
{ label: 'H&M', value: 'H&M' },
|
|
154
|
+
{ label: 'Unknown', value: 'Unknown' },
|
|
155
|
+
{ label: '& Other Stories', value: '& Other Stories' },
|
|
156
|
+
{ label: 'Filippa K', value: 'Filippa K' },
|
|
157
|
+
{ label: 'Zara', value: 'Zara' },
|
|
158
|
+
{ label: 'Vintage', value: 'Vintage' },
|
|
159
|
+
{ label: 'Rodebjer', value: 'Rodebjer' },
|
|
160
|
+
{ label: 'Cos', value: 'Cos' },
|
|
161
|
+
{ label: 'Tiger of Sweden', value: 'Tiger of Sweden' },
|
|
162
|
+
{ label: 'Hope', value: 'Hope' },
|
|
163
|
+
{ label: "Levi's", value: "Levi's" },
|
|
164
|
+
{ label: 'Weekday', value: 'Weekday' },
|
|
165
|
+
{ label: 'Whyred', value: 'Whyred' },
|
|
166
|
+
{ label: 'Arket', value: 'Arket' },
|
|
167
|
+
{ label: 'J.Lindeberg', value: 'J.Lindeberg' },
|
|
168
|
+
{ label: 'Samsoe Samsoe', value: 'Samsoe Samsoe' },
|
|
169
|
+
{ label: 'Dagmar', value: 'Dagmar' },
|
|
170
|
+
{ label: 'Monki', value: 'Monki' },
|
|
171
|
+
{ label: 'Adidas', value: 'Adidas' },
|
|
172
|
+
{ label: 'Ganni', value: 'Ganni' },
|
|
173
|
+
{ label: 'Gant', value: 'Gant' },
|
|
174
|
+
{ label: 'Ralph Lauren', value: 'Ralph Lauren' },
|
|
175
|
+
{ label: 'H&M Studio', value: 'H&M Studio' },
|
|
176
|
+
{ label: 'By Malene Birger', value: 'By Malene Birger' },
|
|
177
|
+
{ label: 'Nike', value: 'Nike' },
|
|
178
|
+
{ label: 'Carin Wester', value: 'Carin Wester' },
|
|
179
|
+
{ label: 'Uniqlo', value: 'Uniqlo' },
|
|
180
|
+
{ label: 'H&M Design Collaboration', value: 'H&M Design Collaboration' },
|
|
181
|
+
{ label: 'Mango', value: 'Mango' },
|
|
182
|
+
{ label: 'Tommy Hilfiger', value: 'Tommy Hilfiger' },
|
|
183
|
+
{ label: 'Massimo Dutti', value: 'Massimo Dutti' },
|
|
184
|
+
{ label: 'Lindex', value: 'Lindex' },
|
|
185
|
+
{ label: 'NN07', value: 'NN07' },
|
|
186
|
+
{ label: 'Our Legacy', value: 'Our Legacy' },
|
|
187
|
+
{ label: 'Stylein', value: 'Stylein' },
|
|
188
|
+
{ label: 'H&M Premium Quality', value: 'H&M Premium Quality' },
|
|
189
|
+
{ label: 'Diane von Furstenberg', value: 'Diane von Furstenberg' },
|
|
190
|
+
{ label: 'Prada', value: 'Prada' },
|
|
191
|
+
{ label: 'Yves Saint Laurent', value: 'Yves Saint Laurent' },
|
|
192
|
+
{ label: 'Polo Ralph Lauren', value: 'Polo Ralph Lauren' },
|
|
193
|
+
{ label: 'Baum und Pferdgarten', value: 'Baum und Pferdgarten' },
|
|
194
|
+
{ label: 'Dr. Martens', value: 'Dr. Martens' },
|
|
195
|
+
{ label: 'Hugo Boss', value: 'Hugo Boss' },
|
|
196
|
+
{ label: 'Sandro', value: 'Sandro' },
|
|
197
|
+
{ label: 'Topshop', value: 'Topshop' },
|
|
198
|
+
{ label: 'Miu Miu', value: 'Miu Miu' },
|
|
199
|
+
{ label: 'Twist & Tango', value: 'Twist & Tango' },
|
|
200
|
+
{ label: 'Isabel Marant Étoile', value: 'Isabel Marant Étoile' },
|
|
201
|
+
{ label: 'Eytys', value: 'Eytys' },
|
|
202
|
+
{ label: 'Calvin Klein', value: 'Calvin Klein' },
|
|
203
|
+
{ label: 'Gina Tricot', value: 'Gina Tricot' },
|
|
204
|
+
{ label: 'Marc Jacobs', value: 'Marc Jacobs' },
|
|
205
|
+
{ label: 'Hunkydory', value: 'Hunkydory' },
|
|
206
|
+
{ label: 'InWear', value: 'InWear' },
|
|
207
|
+
{ label: 'Armani', value: 'Armani' },
|
|
208
|
+
{ label: 'Marimekko', value: 'Marimekko' },
|
|
209
|
+
{ label: 'Joseph', value: 'Joseph' },
|
|
210
|
+
{ label: 'Stine Goya', value: 'Stine Goya' },
|
|
211
|
+
{ label: 'Wera', value: 'Wera' },
|
|
212
|
+
{ label: 'Mulberry', value: 'Mulberry' },
|
|
213
|
+
{ label: 'Vagabond', value: 'Vagabond' },
|
|
214
|
+
{ label: 'Boomerang', value: 'Boomerang' },
|
|
215
|
+
{ label: 'DKNY', value: 'DKNY' },
|
|
216
|
+
{ label: 'Michael Kors', value: 'Michael Kors' },
|
|
217
|
+
{ label: 'Swedish Hasbeens', value: 'Swedish Hasbeens' },
|
|
218
|
+
{ label: 'Maje', value: 'Maje' },
|
|
219
|
+
{ label: 'Oscar Jacobson', value: 'Oscar Jacobson' },
|
|
220
|
+
{ label: 'Peak Performance', value: 'Peak Performance' },
|
|
221
|
+
{ label: 'Stella McCartney', value: 'Stella McCartney' },
|
|
222
|
+
{ label: 'H&M Conscious Exclusive', value: 'H&M Conscious Exclusive' },
|
|
223
|
+
{ label: 'Kenzo', value: 'Kenzo' },
|
|
224
|
+
{ label: 'Ann-Sofie Back', value: 'Ann-Sofie Back' },
|
|
225
|
+
{ label: 'Busnel', value: 'Busnel' },
|
|
226
|
+
{ label: 'Esprit', value: 'Esprit' },
|
|
227
|
+
{ label: 'Gucci', value: 'Gucci' },
|
|
228
|
+
{ label: 'See by Chloé', value: 'See by Chloé' },
|
|
229
|
+
{ label: 'Vila', value: 'Vila' },
|
|
230
|
+
{ label: 'Burberry', value: 'Burberry' },
|
|
231
|
+
{ label: 'Cheap Monday', value: 'Cheap Monday' },
|
|
232
|
+
{ label: 'Comme Des Garçons', value: 'Comme Des Garçons' },
|
|
233
|
+
{ label: 'Marc by Marc Jacobs', value: 'Marc by Marc Jacobs' },
|
|
234
|
+
{ label: 'Scotch & Soda', value: 'Scotch & Soda' },
|
|
235
|
+
{ label: 'Totême', value: 'Totême' },
|
|
236
|
+
{ label: 'Alexander Wang', value: 'Alexander Wang' },
|
|
237
|
+
{ label: 'ASOS', value: 'ASOS' },
|
|
238
|
+
{ label: 'Converse', value: 'Converse' },
|
|
239
|
+
{ label: 'Day', value: 'Day' },
|
|
240
|
+
{ label: "A Day's March", value: "A Day's March" },
|
|
241
|
+
{ label: 'Dolce & Gabbana', value: 'Dolce & Gabbana' },
|
|
242
|
+
{ label: 'Missoni', value: 'Missoni' },
|
|
243
|
+
{ label: 'Soaked in Luxury', value: 'Soaked in Luxury' },
|
|
244
|
+
{ label: 'American Apparel', value: 'American Apparel' },
|
|
245
|
+
{ label: 'J.Crew', value: 'J.Crew' },
|
|
246
|
+
{ label: 'Odd Molly', value: 'Odd Molly' },
|
|
247
|
+
{ label: 'The Shirt Factory', value: 'The Shirt Factory' },
|
|
248
|
+
{ label: 'Vans', value: 'Vans' },
|
|
249
|
+
{ label: 'by Malina', value: 'by Malina' },
|
|
250
|
+
{ label: 'French Connection', value: 'French Connection' },
|
|
251
|
+
{ label: 'Lee', value: 'Lee' },
|
|
252
|
+
{ label: 'Minimarket', value: 'Minimarket' },
|
|
253
|
+
{ label: 'New Balance', value: 'New Balance' },
|
|
254
|
+
{ label: 'Stockh lm', value: 'Stockh lm' },
|
|
255
|
+
{ label: 'A.P.C', value: 'A.P.C' },
|
|
256
|
+
{ label: 'Carhartt', value: 'Carhartt' },
|
|
257
|
+
{ label: 'Celine', value: 'Celine' },
|
|
258
|
+
{ label: 'Gestuz', value: 'Gestuz' },
|
|
259
|
+
{ label: 'Indiska', value: 'Indiska' },
|
|
260
|
+
{ label: 'Karen Millen', value: 'Karen Millen' },
|
|
261
|
+
{ label: 'NA-KD', value: 'NA-KD' },
|
|
262
|
+
{ label: 'Second Female', value: 'Second Female' },
|
|
263
|
+
{ label: 'Selected Femme', value: 'Selected Femme' },
|
|
264
|
+
{ label: 'Wesc', value: 'Wesc' },
|
|
265
|
+
{ label: 'Björn Borg', value: 'Björn Borg' },
|
|
266
|
+
{ label: 'Custommade', value: 'Custommade' },
|
|
267
|
+
{ label: 'Diana Orving', value: 'Diana Orving' },
|
|
268
|
+
{ label: 'Ida Sjöstedt', value: 'Ida Sjöstedt' },
|
|
269
|
+
{ label: 'Reiss', value: 'Reiss' },
|
|
270
|
+
{ label: 'Rizzo', value: 'Rizzo' },
|
|
271
|
+
{ label: 'Wood Wood', value: 'Wood Wood' },
|
|
272
|
+
{ label: 'ATP Atelier', value: 'ATP Atelier' },
|
|
273
|
+
{ label: 'Bik Bok', value: 'Bik Bok' },
|
|
274
|
+
{ label: 'Casall', value: 'Casall' },
|
|
275
|
+
{ label: 'Dior', value: 'Dior' },
|
|
276
|
+
{ label: 'Morris', value: 'Morris' },
|
|
277
|
+
{ label: 'Noa Noa', value: 'Noa Noa' },
|
|
278
|
+
{ label: 'Reebok', value: 'Reebok' },
|
|
279
|
+
{ label: '2NDDAY', value: '2NDDAY' },
|
|
280
|
+
{ label: 'Adidas by Stella McCartney', value: 'Adidas by Stella McCartney' },
|
|
281
|
+
{ label: 'Åhléns', value: 'Åhléns' },
|
|
282
|
+
{ label: 'BLK DNM', value: 'BLK DNM' },
|
|
283
|
+
{ label: 'G-Star Raw', value: 'G-Star Raw' },
|
|
284
|
+
{ label: 'Marni', value: 'Marni' },
|
|
285
|
+
{ label: 'Moschino', value: 'Moschino' },
|
|
286
|
+
{ label: 'Paul Smith', value: 'Paul Smith' },
|
|
287
|
+
{ label: 'Sophie by Sophie', value: 'Sophie by Sophie' },
|
|
288
|
+
{ label: 'Stand Studio', value: 'Stand Studio' },
|
|
289
|
+
{ label: 'Timberland', value: 'Timberland' },
|
|
290
|
+
{ label: 'Eton', value: 'Eton' },
|
|
291
|
+
{ label: 'Louis Vuitton', value: 'Louis Vuitton' },
|
|
292
|
+
{ label: 'Stone Island', value: 'Stone Island' },
|
|
293
|
+
{ label: 'Versace', value: 'Versace' },
|
|
294
|
+
{ label: 'Wrangler', value: 'Wrangler' },
|
|
295
|
+
{ label: '3.1 Phillip Lim', value: '3.1 Phillip Lim' },
|
|
296
|
+
{ label: 'A Part of The Art', value: 'A Part of The Art' },
|
|
297
|
+
{ label: 'Barbour', value: 'Barbour' },
|
|
298
|
+
{ label: 'BCBGMaxAzria', value: 'BCBGMaxAzria' },
|
|
299
|
+
{ label: 'Bruuns Bazaar', value: 'Bruuns Bazaar' },
|
|
300
|
+
{ label: 'Cornelia Webb', value: 'Cornelia Webb' },
|
|
301
|
+
{ label: 'Fjällräven', value: 'Fjällräven' },
|
|
302
|
+
{ label: 'Helmut Lang', value: 'Helmut Lang' },
|
|
303
|
+
{ label: 'Isabel Marant', value: 'Isabel Marant' },
|
|
304
|
+
{ label: 'Jil Sander', value: 'Jil Sander' },
|
|
305
|
+
{ label: 'Kappahl', value: 'Kappahl' },
|
|
306
|
+
{ label: 'Lacoste', value: 'Lacoste' },
|
|
307
|
+
{ label: 'Lexington', value: 'Lexington' },
|
|
308
|
+
{ label: 'Mayla', value: 'Mayla' },
|
|
309
|
+
{ label: 'Paul & Friends', value: 'Paul & Friends' },
|
|
310
|
+
{ label: 'Sézane', value: 'Sézane' },
|
|
311
|
+
{ label: 'Valentino', value: 'Valentino' },
|
|
312
|
+
{ label: 'Valerie', value: 'Valerie' },
|
|
313
|
+
{ label: 'Alpha Industries', value: 'Alpha Industries' },
|
|
314
|
+
{ label: 'American Vintage', value: 'American Vintage' },
|
|
315
|
+
{ label: 'Anine Bing', value: 'Anine Bing' },
|
|
316
|
+
{ label: 'Balenciaga', value: 'Balenciaga' },
|
|
317
|
+
{ label: 'Brixtol', value: 'Brixtol' },
|
|
318
|
+
{ label: 'Daisy Grace', value: 'Daisy Grace' },
|
|
319
|
+
{ label: 'Escada', value: 'Escada' },
|
|
320
|
+
{ label: 'Fila', value: 'Fila' },
|
|
321
|
+
{ label: 'Gap', value: 'Gap' },
|
|
322
|
+
{ label: 'Gram', value: 'Gram' },
|
|
323
|
+
{ label: 'Greta', value: 'Greta' },
|
|
324
|
+
{ label: 'Hermès', value: 'Hermès' },
|
|
325
|
+
{ label: 'Ichi', value: 'Ichi' },
|
|
326
|
+
{ label: 'Lanvin', value: 'Lanvin' },
|
|
327
|
+
{ label: 'Pull & Bear', value: 'Pull & Bear' },
|
|
328
|
+
{ label: 'Sand', value: 'Sand' },
|
|
329
|
+
{ label: 'Sandqvist', value: 'Sandqvist' },
|
|
330
|
+
{ label: 'Sofie Schnoor', value: 'Sofie Schnoor' },
|
|
331
|
+
{ label: 'Steve Madden', value: 'Steve Madden' },
|
|
332
|
+
{ label: 'The North Face', value: 'The North Face' },
|
|
333
|
+
{ label: 'These Glory Days', value: 'These Glory Days' },
|
|
334
|
+
{ label: 'Tods', value: 'Tods' },
|
|
335
|
+
{ label: 'Zadig&Voltaire', value: 'Zadig&Voltaire' },
|
|
336
|
+
{ label: 'Ahlvar Gallery', value: 'Ahlvar Gallery' },
|
|
337
|
+
{ label: 'Chloé', value: 'Chloé' },
|
|
338
|
+
{ label: 'ERDEM x H&M', value: 'ERDEM x H&M' },
|
|
339
|
+
{ label: 'Flattered', value: 'Flattered' },
|
|
340
|
+
{ label: 'Nudie Jeans', value: 'Nudie Jeans' },
|
|
341
|
+
{ label: 'Nümph', value: 'Nümph' },
|
|
342
|
+
{ label: 'Patagonia', value: 'Patagonia' },
|
|
343
|
+
{ label: 'Primeboots', value: 'Primeboots' },
|
|
344
|
+
{ label: 'Rag & Bone', value: 'Rag & Bone' },
|
|
345
|
+
{ label: 'Rains', value: 'Rains' },
|
|
346
|
+
{ label: 'Reschia', value: 'Reschia' },
|
|
347
|
+
{ label: 'Suitsupply', value: 'Suitsupply' },
|
|
348
|
+
{ label: 'The Local Firm', value: 'The Local Firm' },
|
|
349
|
+
{ label: 'Theory', value: 'Theory' },
|
|
350
|
+
{ label: 'Thomas Pink', value: 'Thomas Pink' },
|
|
351
|
+
{ label: 'Anna Holtblad', value: 'Anna Holtblad' },
|
|
352
|
+
{ label: 'Benetton', value: 'Benetton' },
|
|
353
|
+
{ label: 'Blankens', value: 'Blankens' },
|
|
354
|
+
{ label: 'Chanel', value: 'Chanel' },
|
|
355
|
+
{ label: 'Christian Louboutin', value: 'Christian Louboutin' },
|
|
356
|
+
{ label: 'Clarks', value: 'Clarks' },
|
|
357
|
+
{ label: 'Club Monaco', value: 'Club Monaco' },
|
|
358
|
+
{ label: 'DAY Birger et Mikkelsen', value: 'DAY Birger et Mikkelsen' },
|
|
359
|
+
{ label: 'Diesel', value: 'Diesel' },
|
|
360
|
+
{ label: 'Dries Van Noten', value: 'Dries Van Noten' },
|
|
361
|
+
{ label: 'Ecco', value: 'Ecco' },
|
|
362
|
+
{ label: 'Fall Winter Spring Summer', value: 'Fall Winter Spring Summer' },
|
|
363
|
+
{ label: 'Guess', value: 'Guess' },
|
|
364
|
+
{ label: 'Hobbs', value: 'Hobbs' },
|
|
365
|
+
{ label: 'Iro', value: 'Iro' },
|
|
366
|
+
{ label: 'Jascha Stockholm', value: 'Jascha Stockholm' },
|
|
367
|
+
{ label: 'Juicy Couture', value: 'Juicy Couture' },
|
|
368
|
+
{ label: 'Kate Spade', value: 'Kate Spade' },
|
|
369
|
+
{ label: 'Kerber', value: 'Kerber' },
|
|
370
|
+
{ label: 'Mads Norgaard', value: 'Mads Norgaard' },
|
|
371
|
+
{ label: 'Milly', value: 'Milly' },
|
|
372
|
+
{ label: 'Mos Mosh', value: 'Mos Mosh' },
|
|
373
|
+
{ label: 'Replay', value: 'Replay' },
|
|
374
|
+
{ label: 'Rose & Born', value: 'Rose & Born' },
|
|
375
|
+
{ label: 'Saint Tropez', value: 'Saint Tropez' },
|
|
376
|
+
{ label: 'Urban Outfitters', value: 'Urban Outfitters' },
|
|
377
|
+
{ label: 'Won Hundred', value: 'Won Hundred' },
|
|
378
|
+
{ label: 'Ba&sh', value: 'Ba&sh' },
|
|
379
|
+
{ label: 'BALLY', value: 'BALLY' },
|
|
380
|
+
{ label: 'Banana Republic', value: 'Banana Republic' },
|
|
381
|
+
{ label: 'Bershka', value: 'Bershka' },
|
|
382
|
+
{ label: 'Bottega Veneta', value: 'Bottega Veneta' },
|
|
383
|
+
{ label: 'Designers Remix', value: 'Designers Remix' },
|
|
384
|
+
{ label: 'Dickies', value: 'Dickies' },
|
|
385
|
+
{ label: 'Donna Karan', value: 'Donna Karan' },
|
|
386
|
+
{ label: 'Dry Lake', value: 'Dry Lake' },
|
|
387
|
+
{ label: 'Dsquared2', value: 'Dsquared2' },
|
|
388
|
+
{ label: 'Elvine', value: 'Elvine' },
|
|
389
|
+
{ label: 'Envii', value: 'Envii' },
|
|
390
|
+
{ label: 'Givenchy', value: 'Givenchy' },
|
|
391
|
+
{ label: 'H&M Trend', value: 'H&M Trend' },
|
|
392
|
+
{ label: 'Jennie-Ellen', value: 'Jennie-Ellen' },
|
|
393
|
+
{ label: 'Jimmy Choo', value: 'Jimmy Choo' },
|
|
394
|
+
{ label: 'Kings Of Indigo', value: 'Kings Of Indigo' },
|
|
395
|
+
{ label: 'Luigi Borrelli', value: 'Luigi Borrelli' },
|
|
396
|
+
{ label: 'Lululemon', value: 'Lululemon' },
|
|
397
|
+
{ label: 'Maison Margiela', value: 'Maison Margiela' },
|
|
398
|
+
{ label: 'Mason’s', value: 'Mason’s' },
|
|
399
|
+
{ label: 'Part Two', value: 'Part Two' },
|
|
400
|
+
{ label: 'Riley', value: 'Riley' },
|
|
401
|
+
{ label: 'River Island', value: 'River Island' },
|
|
402
|
+
{ label: 'Soft Goat', value: 'Soft Goat' },
|
|
403
|
+
{ label: 'Sonia by Sonia Rykiel', value: 'Sonia by Sonia Rykiel' },
|
|
404
|
+
{ label: 'Ted Baker', value: 'Ted Baker' },
|
|
405
|
+
{ label: 'Tory Burch', value: 'Tory Burch' },
|
|
406
|
+
{ label: 'Ulla Johnson', value: 'Ulla Johnson' },
|
|
407
|
+
{ label: 'Zoul', value: 'Zoul' },
|
|
408
|
+
{ label: 'Altewaisaome', value: 'Altewaisaome' },
|
|
409
|
+
{ label: 'Babaton', value: 'Babaton' },
|
|
410
|
+
{ label: 'Balmain', value: 'Balmain' },
|
|
411
|
+
{ label: 'Billi Bi', value: 'Billi Bi' },
|
|
412
|
+
{ label: 'CAMPER', value: 'CAMPER' },
|
|
413
|
+
{ label: 'Champion', value: 'Champion' },
|
|
414
|
+
{ label: 'Church’s', value: 'Church’s' },
|
|
415
|
+
{ label: 'Desigual', value: 'Desigual' },
|
|
416
|
+
{ label: 'Dr Denim', value: 'Dr Denim' },
|
|
417
|
+
{ label: 'Edwin', value: 'Edwin' },
|
|
418
|
+
{ label: 'Frame', value: 'Frame' },
|
|
419
|
+
{ label: 'Gymshark', value: 'Gymshark' },
|
|
420
|
+
{ label: 'IDA KLAMBORN', value: 'IDA KLAMBORN' },
|
|
421
|
+
{ label: 'Indigofera', value: 'Indigofera' },
|
|
422
|
+
{ label: 'Jofama', value: 'Jofama' },
|
|
423
|
+
{ label: 'Max Mara', value: 'Max Mara' },
|
|
424
|
+
{ label: 'Mexx', value: 'Mexx' },
|
|
425
|
+
{ label: 'Monsoon', value: 'Monsoon' },
|
|
426
|
+
{ label: 'Nakkna', value: 'Nakkna' },
|
|
427
|
+
{ label: 'Nikolaj d’Etoiles', value: 'Nikolaj d’Etoiles' },
|
|
428
|
+
{ label: 'Nygårdsanna', value: 'Nygårdsanna' },
|
|
429
|
+
{ label: 'OFF-WHITE', value: 'OFF-WHITE' },
|
|
430
|
+
{ label: 'Puma', value: 'Puma' },
|
|
431
|
+
{ label: 'R.M. Williams', value: 'R.M. Williams' },
|
|
432
|
+
{ label: 'Ray-Ban', value: 'Ray-Ban' },
|
|
433
|
+
{ label: 'Reformation', value: 'Reformation' },
|
|
434
|
+
{ label: 'Sessùn', value: 'Sessùn' },
|
|
435
|
+
{ label: 'Skultuna', value: 'Skultuna' },
|
|
436
|
+
{ label: 'Soc', value: 'Soc' },
|
|
437
|
+
{ label: 'Stenströms', value: 'Stenströms' },
|
|
438
|
+
{ label: 'Stutterheim', value: 'Stutterheim' },
|
|
439
|
+
{ label: 'The Kooples', value: 'The Kooples' },
|
|
440
|
+
{ label: 'Warehouse', value: 'Warehouse' },
|
|
441
|
+
{ label: '7 For All Mankind', value: '7 For All Mankind' },
|
|
442
|
+
{ label: 'AG Jeans', value: 'AG Jeans' },
|
|
443
|
+
{ label: 'Alexander Mcqueen', value: 'Alexander Mcqueen' },
|
|
444
|
+
{ label: 'Allsaints', value: 'Allsaints' },
|
|
445
|
+
{ label: 'Anna Field', value: 'Anna Field' },
|
|
446
|
+
{ label: 'Armani Jeans', value: 'Armani Jeans' },
|
|
447
|
+
{ label: 'AVAVAV', value: 'AVAVAV' },
|
|
448
|
+
{ label: 'Axel Arigato', value: 'Axel Arigato' },
|
|
449
|
+
{ label: "Barney's", value: "Barney's" },
|
|
450
|
+
{ label: 'Bondelid', value: 'Bondelid' },
|
|
451
|
+
{ label: 'Camilla Thulin', value: 'Camilla Thulin' },
|
|
452
|
+
{ label: 'Closet', value: 'Closet' },
|
|
453
|
+
{ label: 'Common Projects', value: 'Common Projects' },
|
|
454
|
+
{ label: 'Coster Copenhagen', value: 'Coster Copenhagen' },
|
|
455
|
+
{ label: 'Deadwood', value: 'Deadwood' },
|
|
456
|
+
{ label: 'Edblad', value: 'Edblad' },
|
|
457
|
+
{ label: 'Fendi', value: 'Fendi' },
|
|
458
|
+
{ label: 'Fred Perry', value: 'Fred Perry' },
|
|
459
|
+
{ label: 'Gabor', value: 'Gabor' },
|
|
460
|
+
{ label: 'Harris Wharf London', value: 'Harris Wharf London' },
|
|
461
|
+
{ label: 'Hollister', value: 'Hollister' },
|
|
462
|
+
{ label: 'Hoss', value: 'Hoss' },
|
|
463
|
+
{ label: 'Human Scales', value: 'Human Scales' },
|
|
464
|
+
{ label: 'Hunter', value: 'Hunter' },
|
|
465
|
+
{ label: 'Incotex', value: 'Incotex' },
|
|
466
|
+
{ label: 'KENZO x H&M', value: 'KENZO x H&M' },
|
|
467
|
+
{ label: 'Kurt Geiger', value: 'Kurt Geiger' },
|
|
468
|
+
{ label: 'Love Moschino', value: 'Love Moschino' },
|
|
469
|
+
{ label: 'Marc O’Polo', value: 'Marc O’Polo' },
|
|
470
|
+
{ label: 'Mauro Grifoni', value: 'Mauro Grifoni' },
|
|
471
|
+
{ label: 'Max & Co', value: 'Max & Co' },
|
|
472
|
+
{ label: 'Mes Dames', value: 'Mes Dames' },
|
|
473
|
+
{ label: 'Minimum', value: 'Minimum' },
|
|
474
|
+
{ label: 'New Black', value: 'New Black' },
|
|
475
|
+
{ label: 'Notes du Nord', value: 'Notes du Nord' },
|
|
476
|
+
{ label: 'Oasis', value: 'Oasis' },
|
|
477
|
+
{ label: 'Sisley', value: 'Sisley' },
|
|
478
|
+
{ label: 'Stüssy', value: 'Stüssy' },
|
|
479
|
+
{ label: 'Tara Jarmon', value: 'Tara Jarmon' },
|
|
480
|
+
{ label: 'Temperley London', value: 'Temperley London' },
|
|
481
|
+
{ label: 'Visual Clothing Project', value: 'Visual Clothing Project' },
|
|
482
|
+
{ label: 'Weekend Max Mara', value: 'Weekend Max Mara' },
|
|
483
|
+
{ label: 'Wos', value: 'Wos' },
|
|
484
|
+
{ label: 'A.O. CMS', value: 'A.O. CMS' },
|
|
485
|
+
{ label: 'Adnym Atelier', value: 'Adnym Atelier' },
|
|
486
|
+
{ label: 'Ahvar', value: 'Ahvar' },
|
|
487
|
+
{ label: 'Alan Paine', value: 'Alan Paine' },
|
|
488
|
+
{ label: 'Alice + Olivia', value: 'Alice + Olivia' },
|
|
489
|
+
{ label: 'AMI', value: 'AMI' },
|
|
490
|
+
{ label: 'Ancient Greek Sandals', value: 'Ancient Greek Sandals' },
|
|
491
|
+
{ label: 'Angela C', value: 'Angela C' },
|
|
492
|
+
{ label: 'Ann Demeulemeester', value: 'Ann Demeulemeester' },
|
|
493
|
+
{ label: 'Ann Taylor', value: 'Ann Taylor' },
|
|
494
|
+
{ label: 'Anne Klein', value: 'Anne Klein' },
|
|
495
|
+
{ label: 'Armstrong', value: 'Armstrong' },
|
|
496
|
+
{ label: 'Atmosphere', value: 'Atmosphere' },
|
|
497
|
+
{ label: 'Belstaff', value: 'Belstaff' },
|
|
498
|
+
{ label: 'Bertie', value: 'Bertie' },
|
|
499
|
+
{ label: 'Bianco', value: 'Bianco' },
|
|
500
|
+
{ label: 'Bimba Y Lola', value: 'Bimba Y Lola' },
|
|
501
|
+
{ label: 'Birkenstock', value: 'Birkenstock' },
|
|
502
|
+
{ label: 'byTiMo', value: 'byTiMo' },
|
|
503
|
+
{ label: 'Cacharel', value: 'Cacharel' },
|
|
504
|
+
{ label: 'Caterpillar', value: 'Caterpillar' },
|
|
505
|
+
{ label: 'Cobler', value: 'Cobler' },
|
|
506
|
+
{ label: 'Costume National', value: 'Costume National' },
|
|
507
|
+
{ label: 'Crocker', value: 'Crocker' },
|
|
508
|
+
{ label: 'Cross', value: 'Cross' },
|
|
509
|
+
{ label: 'Cubus', value: 'Cubus' },
|
|
510
|
+
{ label: 'Darling', value: 'Darling' },
|
|
511
|
+
{ label: 'Davida', value: 'Davida' },
|
|
512
|
+
{ label: 'Dobber', value: 'Dobber' },
|
|
513
|
+
{ label: 'Emilio', value: 'Emilio' },
|
|
514
|
+
{ label: 'Emporio Armani', value: 'Emporio Armani' },
|
|
515
|
+
{ label: 'Enrico Antinori', value: 'Enrico Antinori' },
|
|
516
|
+
{ label: 'Express', value: 'Express' },
|
|
517
|
+
{ label: 'Fifth Avenue Shoe Repair', value: 'Fifth Avenue Shoe Repair' },
|
|
518
|
+
{ label: 'Five Units', value: 'Five Units' },
|
|
519
|
+
{ label: 'Flash', value: 'Flash' },
|
|
520
|
+
{ label: 'Forever 21', value: 'Forever 21' },
|
|
521
|
+
{ label: 'Fornarina', value: 'Fornarina' },
|
|
522
|
+
{ label: 'Forte Forte', value: 'Forte Forte' },
|
|
523
|
+
{ label: 'Furla', value: 'Furla' },
|
|
524
|
+
{ label: 'G-star', value: 'G-star' },
|
|
525
|
+
{ label: 'Gianvito Rossi', value: 'Gianvito Rossi' },
|
|
526
|
+
{ label: 'Gunilla Ponten', value: 'Gunilla Ponten' },
|
|
527
|
+
{ label: 'Han Kjøbenhavn', value: 'Han Kjøbenhavn' },
|
|
528
|
+
{ label: 'Henrik Vibskov', value: 'Henrik Vibskov' },
|
|
529
|
+
{ label: 'Hogan', value: 'Hogan' },
|
|
530
|
+
{ label: 'Hollies', value: 'Hollies' },
|
|
531
|
+
{ label: 'Jeffrey Campbell', value: 'Jeffrey Campbell' },
|
|
532
|
+
{ label: 'John Henric', value: 'John Henric' },
|
|
533
|
+
{ label: 'Julie Fagerholt Heartmade', value: 'Julie Fagerholt Heartmade' },
|
|
534
|
+
{ label: 'Junkyard', value: 'Junkyard' },
|
|
535
|
+
{ label: 'Karl Lagerfeld x H&M', value: 'Karl Lagerfeld x H&M' },
|
|
536
|
+
{ label: 'Kavat', value: 'Kavat' },
|
|
537
|
+
{ label: 'Kenneth Cole', value: 'Kenneth Cole' },
|
|
538
|
+
{ label: 'Kuboraum', value: 'Kuboraum' },
|
|
539
|
+
{ label: 'L.K. Bennett', value: 'L.K. Bennett' },
|
|
540
|
+
{ label: 'Le Specs', value: 'Le Specs' },
|
|
541
|
+
{ label: 'Lescarf', value: 'Lescarf' },
|
|
542
|
+
{ label: 'Lioness', value: 'Lioness' },
|
|
543
|
+
{ label: 'Loake', value: 'Loake' },
|
|
544
|
+
{ label: 'M.i.h Jeans', value: 'M.i.h Jeans' },
|
|
545
|
+
{ label: 'Maison Scotch', value: 'Maison Scotch' },
|
|
546
|
+
{ label: 'Marella', value: 'Marella' },
|
|
547
|
+
{ label: 'Mary Katrantzou', value: 'Mary Katrantzou' },
|
|
548
|
+
{ label: 'Maxmara', value: 'Maxmara' },
|
|
549
|
+
{ label: 'Nelly', value: 'Nelly' },
|
|
550
|
+
{ label: 'Neo Noir', value: 'Neo Noir' },
|
|
551
|
+
{ label: 'Neuw', value: 'Neuw' },
|
|
552
|
+
{ label: 'New Era', value: 'New Era' },
|
|
553
|
+
{ label: 'Nike SB', value: 'Nike SB' },
|
|
554
|
+
{ label: 'Norse Projects', value: 'Norse Projects' },
|
|
555
|
+
{ label: 'Only', value: 'Only' },
|
|
556
|
+
{ label: 'Oscar de la Renta', value: 'Oscar de la Renta' },
|
|
557
|
+
{ label: 'Paco Rabanne', value: 'Paco Rabanne' },
|
|
558
|
+
{ label: 'Patrizia Pepe', value: 'Patrizia Pepe' },
|
|
559
|
+
{ label: 'Paul & Joe', value: 'Paul & Joe' },
|
|
560
|
+
{ label: 'Pepe Jeans', value: 'Pepe Jeans' },
|
|
561
|
+
{ label: 'Pied A Terre', value: 'Pied A Terre' },
|
|
562
|
+
{ label: 'Pierre Balmain', value: 'Pierre Balmain' },
|
|
563
|
+
{ label: 'Pierre Cardin', value: 'Pierre Cardin' },
|
|
564
|
+
{ label: 'Réalisation Par', value: 'Réalisation Par' },
|
|
565
|
+
{ label: 'Rebecca Minkoff', value: 'Rebecca Minkoff' },
|
|
566
|
+
{ label: 'Red Wing Shoes', value: 'Red Wing Shoes' },
|
|
567
|
+
{ label: 'Resteröds', value: 'Resteröds' },
|
|
568
|
+
{ label: 'Rockport', value: 'Rockport' },
|
|
569
|
+
{ label: 'Roksanda', value: 'Roksanda' },
|
|
570
|
+
{ label: 'Rosemunde', value: 'Rosemunde' },
|
|
571
|
+
{ label: 'Royal RepubliQ', value: 'Royal RepubliQ' },
|
|
572
|
+
{ label: 'Russel & Bromley', value: 'Russel & Bromley' },
|
|
573
|
+
{ label: 'Schnayderman’s', value: 'Schnayderman’s' },
|
|
574
|
+
{ label: 'Selected Homme', value: 'Selected Homme' },
|
|
575
|
+
{ label: 'Sergio Rossi', value: 'Sergio Rossi' },
|
|
576
|
+
{ label: 'Sixtyseven', value: 'Sixtyseven' },
|
|
577
|
+
{ label: 'Sonia Rykiel', value: 'Sonia Rykiel' },
|
|
578
|
+
{ label: 'Stockholms Klänningsfabrik', value: 'Stockholms Klänningsfabrik' },
|
|
579
|
+
{ label: 'Stronger', value: 'Stronger' },
|
|
580
|
+
{ label: 'Sun Buddies', value: 'Sun Buddies' },
|
|
581
|
+
{ label: 'Superdry', value: 'Superdry' },
|
|
582
|
+
{ label: 'Teotoki', value: 'Teotoki' },
|
|
583
|
+
{ label: 'The Cords & Co', value: 'The Cords & Co' },
|
|
584
|
+
{ label: 'The Row', value: 'The Row' },
|
|
585
|
+
{ label: 'Thom Browne', value: 'Thom Browne' },
|
|
586
|
+
{ label: 'Tibi', value: 'Tibi' },
|
|
587
|
+
{ label: 'Tretorn', value: 'Tretorn' },
|
|
588
|
+
{ label: 'Twilfit', value: 'Twilfit' },
|
|
589
|
+
{ label: 'UNIQLO x Marimekko', value: 'UNIQLO x Marimekko' },
|
|
590
|
+
{ label: 'Vero Moda', value: 'Vero Moda' },
|
|
591
|
+
{ label: 'Vila clothes', value: 'Vila clothes' },
|
|
592
|
+
{ label: 'Vince', value: 'Vince' },
|
|
593
|
+
{ label: 'Vogt', value: 'Vogt' },
|
|
594
|
+
{ label: 'Wacay', value: 'Wacay' },
|
|
595
|
+
{ label: 'Yogish Collective', value: 'Yogish Collective' },
|
|
596
|
+
{ label: '8848 Altitude', value: '8848 Altitude' },
|
|
597
|
+
{ label: 'A Pair', value: 'A Pair' },
|
|
598
|
+
{ label: 'Action jeans', value: 'Action jeans' },
|
|
599
|
+
{ label: 'Adolfo Domínguez', value: 'Adolfo Domínguez' },
|
|
600
|
+
{ label: 'Adoore', value: 'Adoore' },
|
|
601
|
+
{ label: 'Agent Provocateur', value: 'Agent Provocateur' },
|
|
602
|
+
{ label: 'Alabama Jeans', value: 'Alabama Jeans' },
|
|
603
|
+
{ label: 'Alexander Wang x H&M', value: 'Alexander Wang x H&M' },
|
|
604
|
+
{ label: 'Amoress Stockholm', value: 'Amoress Stockholm' },
|
|
605
|
+
{ label: 'Ann Taylor Loft', value: 'Ann Taylor Loft' },
|
|
606
|
+
{ label: 'Anne Bonnevier', value: 'Anne Bonnevier' },
|
|
607
|
+
{ label: 'Anthropologie', value: 'Anthropologie' },
|
|
608
|
+
{ label: 'Asics', value: 'Asics' },
|
|
609
|
+
{ label: 'Aspesi', value: 'Aspesi' },
|
|
610
|
+
{ label: 'Aspire by Choke', value: 'Aspire by Choke' },
|
|
611
|
+
{ label: 'Assembly New York', value: 'Assembly New York' },
|
|
612
|
+
{ label: 'Atlas Design', value: 'Atlas Design' },
|
|
613
|
+
{ label: 'Ax Paris', value: 'Ax Paris' },
|
|
614
|
+
{ label: 'Balmain x H&M', value: 'Balmain x H&M' },
|
|
615
|
+
{ label: 'Barena', value: 'Barena' },
|
|
616
|
+
{ label: 'Batistini', value: 'Batistini' },
|
|
617
|
+
{ label: 'BDG', value: 'BDG' },
|
|
618
|
+
{ label: 'Belle', value: 'Belle' },
|
|
619
|
+
{ label: 'Berg & Berg', value: 'Berg & Berg' },
|
|
620
|
+
{ label: 'Bertoni', value: 'Bertoni' },
|
|
621
|
+
{ label: 'Betty Barclay', value: 'Betty Barclay' },
|
|
622
|
+
{ label: 'Birgitte Herskind', value: 'Birgitte Herskind' },
|
|
623
|
+
{ label: 'Bitte Kai Rand', value: 'Bitte Kai Rand' },
|
|
624
|
+
{ label: 'Bläck', value: 'Bläck' },
|
|
625
|
+
{ label: 'Blank', value: 'Blank' },
|
|
626
|
+
{ label: 'Blue Billie', value: 'Blue Billie' },
|
|
627
|
+
{ label: 'Boden', value: 'Boden' },
|
|
628
|
+
{ label: 'Body by Victoria', value: 'Body by Victoria' },
|
|
629
|
+
{ label: 'Boggi Milano', value: 'Boggi Milano' },
|
|
630
|
+
{ label: 'Boob', value: 'Boob' },
|
|
631
|
+
{ label: 'Botkier', value: 'Botkier' },
|
|
632
|
+
{ label: 'Bronx', value: 'Bronx' },
|
|
633
|
+
{ label: 'Brooks Brothers', value: 'Brooks Brothers' },
|
|
634
|
+
{ label: 'Brora', value: 'Brora' },
|
|
635
|
+
{ label: 'Buddy', value: 'Buddy' },
|
|
636
|
+
{ label: 'Burton', value: 'Burton' },
|
|
637
|
+
{ label: 'By Groth', value: 'By Groth' },
|
|
638
|
+
{ label: 'By Zoé', value: 'By Zoé' },
|
|
639
|
+
{ label: 'bysi', value: 'bysi' },
|
|
640
|
+
{ label: 'C.O.F. Studio', value: 'C.O.F. Studio' },
|
|
641
|
+
{ label: 'C.P. Company', value: 'C.P. Company' },
|
|
642
|
+
{ label: 'Canada Goose', value: 'Canada Goose' },
|
|
643
|
+
{ label: 'Carne Bollente', value: 'Carne Bollente' },
|
|
644
|
+
{ label: 'Carvela', value: 'Carvela' },
|
|
645
|
+
{ label: 'CHIMI', value: 'CHIMI' },
|
|
646
|
+
{ label: 'Christina Christersdotter', value: 'Christina Christersdotter' },
|
|
647
|
+
{ label: 'Cinque', value: 'Cinque' },
|
|
648
|
+
{ label: 'Citizens of Humanity', value: 'Citizens of Humanity' },
|
|
649
|
+
{ label: 'Claudie Perlot', value: 'Claudie Perlot' },
|
|
650
|
+
{ label: 'Coach', value: 'Coach' },
|
|
651
|
+
{ label: 'Comptoir des Cotonniers', value: 'Comptoir des Cotonniers' },
|
|
652
|
+
{ label: 'Country Road', value: 'Country Road' },
|
|
653
|
+
{ label: 'CR7', value: 'CR7' },
|
|
654
|
+
{ label: 'Craft', value: 'Craft' },
|
|
655
|
+
{ label: 'Crocker Jeans', value: 'Crocker Jeans' },
|
|
656
|
+
{ label: 'Crombie', value: 'Crombie' },
|
|
657
|
+
{ label: 'Decadent', value: 'Decadent' },
|
|
658
|
+
{ label: 'Dennis Goldsmith', value: 'Dennis Goldsmith' },
|
|
659
|
+
{ label: 'Dockers', value: 'Dockers' },
|
|
660
|
+
{ label: 'Docksta', value: 'Docksta' },
|
|
661
|
+
{ label: "Drake's", value: "Drake's" },
|
|
662
|
+
{ label: 'Edith & Ella', value: 'Edith & Ella' },
|
|
663
|
+
{ label: 'Edmonds', value: 'Edmonds' },
|
|
664
|
+
{ label: 'Eileen Fisher', value: 'Eileen Fisher' },
|
|
665
|
+
{ label: 'ElieTahari', value: 'ElieTahari' },
|
|
666
|
+
{ label: 'Elizabeth and James', value: 'Elizabeth and James' },
|
|
667
|
+
{ label: 'Ellesse', value: 'Ellesse' },
|
|
668
|
+
{ label: 'Emilio Pucci', value: 'Emilio Pucci' },
|
|
669
|
+
{ label: 'Equipment', value: 'Equipment' },
|
|
670
|
+
{ label: 'Erich Fend', value: 'Erich Fend' },
|
|
671
|
+
{ label: 'Esmara', value: 'Esmara' },
|
|
672
|
+
{ label: 'Espiritu', value: 'Espiritu' },
|
|
673
|
+
{ label: 'Essentiel Antwerp', value: 'Essentiel Antwerp' },
|
|
674
|
+
{ label: 'Esthis', value: 'Esthis' },
|
|
675
|
+
{ label: 'Être Cécile', value: 'Être Cécile' },
|
|
676
|
+
{ label: 'Etro', value: 'Etro' },
|
|
677
|
+
{ label: 'Finn Karelia', value: 'Finn Karelia' },
|
|
678
|
+
{ label: 'Frk', value: 'Frk' },
|
|
679
|
+
{ label: 'Gerard Darel', value: 'Gerard Darel' },
|
|
680
|
+
{ label: 'Giangi Napoli', value: 'Giangi Napoli' },
|
|
681
|
+
{ label: 'Giordano Ladies', value: 'Giordano Ladies' },
|
|
682
|
+
{ label: 'Glassworks London', value: 'Glassworks London' },
|
|
683
|
+
{ label: 'Golden Goose', value: 'Golden Goose' },
|
|
684
|
+
{ label: 'Goop', value: 'Goop' },
|
|
685
|
+
{ label: 'Grand Frank', value: 'Grand Frank' },
|
|
686
|
+
{ label: 'Grenson', value: 'Grenson' },
|
|
687
|
+
{ label: 'Gudrun Sjödén', value: 'Gudrun Sjödén' },
|
|
688
|
+
{ label: 'Guy Laroche', value: 'Guy Laroche' },
|
|
689
|
+
{ label: 'Haider Ackermann', value: 'Haider Ackermann' },
|
|
690
|
+
{ label: 'Hampton Republic', value: 'Hampton Republic' },
|
|
691
|
+
{ label: 'Harvie & Hudson', value: 'Harvie & Hudson' },
|
|
692
|
+
{ label: 'Havaianas', value: 'Havaianas' },
|
|
693
|
+
{ label: 'Holly & Whyte by Lindex', value: 'Holly & Whyte by Lindex' },
|
|
694
|
+
{ label: 'Holzweiler', value: 'Holzweiler' },
|
|
695
|
+
{ label: 'Hugo Boss Orange', value: 'Hugo Boss Orange' },
|
|
696
|
+
{ label: "Hyde's Spectacles", value: "Hyde's Spectacles" },
|
|
697
|
+
{ label: 'iBlues', value: 'iBlues' },
|
|
698
|
+
{ label: 'Ilse Jacobsen', value: 'Ilse Jacobsen' },
|
|
699
|
+
{ label: 'Imperial', value: 'Imperial' },
|
|
700
|
+
{ label: 'Iris & Ink', value: 'Iris & Ink' },
|
|
701
|
+
{ label: 'Irregular Choice', value: 'Irregular Choice' },
|
|
702
|
+
{ label: 'ISSA', value: 'ISSA' },
|
|
703
|
+
{ label: 'Ivan Grundahl', value: 'Ivan Grundahl' },
|
|
704
|
+
{ label: 'Ivyrevel', value: 'Ivyrevel' },
|
|
705
|
+
{ label: 'J Brand', value: 'J Brand' },
|
|
706
|
+
{ label: 'JACK & JONES', value: 'JACK & JONES' },
|
|
707
|
+
{ label: 'Jacquemus', value: 'Jacquemus' },
|
|
708
|
+
{ label: 'James Perse', value: 'James Perse' },
|
|
709
|
+
{ label: 'Jan Ahlgren', value: 'Jan Ahlgren' },
|
|
710
|
+
{ label: 'Jana', value: 'Jana' },
|
|
711
|
+
{ label: 'Jean Paul Barriol', value: 'Jean Paul Barriol' },
|
|
712
|
+
{ label: 'Jean Paul Gaultier', value: 'Jean Paul Gaultier' },
|
|
713
|
+
{ label: 'Jeanerica', value: 'Jeanerica' },
|
|
714
|
+
{ label: 'Jens Dahlström', value: 'Jens Dahlström' },
|
|
715
|
+
{ label: 'John Smedley', value: 'John Smedley' },
|
|
716
|
+
{ label: 'Johnny Bulls', value: 'Johnny Bulls' },
|
|
717
|
+
{ label: 'Joie', value: 'Joie' },
|
|
718
|
+
{ label: 'Joseph Ribkoff', value: 'Joseph Ribkoff' },
|
|
719
|
+
{ label: 'JOY', value: 'JOY' },
|
|
720
|
+
{ label: 'Julie Duroche', value: 'Julie Duroche' },
|
|
721
|
+
{ label: 'Jumperfabriken', value: 'Jumperfabriken' },
|
|
722
|
+
{ label: 'Just Female', value: 'Just Female' },
|
|
723
|
+
{ label: 'K.Cobler', value: 'K.Cobler' },
|
|
724
|
+
{ label: 'KOOKAÏ', value: 'KOOKAÏ' },
|
|
725
|
+
{ label: 'Kriss', value: 'Kriss' },
|
|
726
|
+
{ label: 'L.O.G.G by H&M', value: 'L.O.G.G by H&M' },
|
|
727
|
+
{ label: "L'Altra Moda", value: "L'Altra Moda" },
|
|
728
|
+
{ label: 'L’Homme Rouge', value: 'L’Homme Rouge' },
|
|
729
|
+
{ label: 'Leveté', value: 'Leveté' },
|
|
730
|
+
{ label: 'Ljung', value: 'Ljung' },
|
|
731
|
+
{ label: 'Lollys Laundry', value: 'Lollys Laundry' },
|
|
732
|
+
{ label: 'Lost Ink', value: 'Lost Ink' },
|
|
733
|
+
{ label: 'Lyle & Scott', value: 'Lyle & Scott' },
|
|
734
|
+
{ label: 'Mads Nørgaard Copenhagen', value: 'Mads Nørgaard Copenhagen' },
|
|
735
|
+
{ label: 'Maison Kitsuné', value: 'Maison Kitsuné' },
|
|
736
|
+
{ label: 'Marcel Marongiu', value: 'Marcel Marongiu' },
|
|
737
|
+
{ label: 'Mari Philippe', value: 'Mari Philippe' },
|
|
738
|
+
{ label: 'Maria Black', value: 'Maria Black' },
|
|
739
|
+
{ label: 'Maria Westerlind', value: 'Maria Westerlind' },
|
|
740
|
+
{ label: 'MinnetonkasMockberg', value: 'MinnetonkasMockberg' },
|
|
741
|
+
{ label: 'mint&berry', value: 'mint&berry' },
|
|
742
|
+
{ label: 'Missguided', value: 'Missguided' },
|
|
743
|
+
{ label: 'Mockberg', value: 'Mockberg' },
|
|
744
|
+
{ label: 'MODA', value: 'MODA' },
|
|
745
|
+
{ label: 'Moon Boot', value: 'Moon Boot' },
|
|
746
|
+
{ label: 'Moonchild', value: 'Moonchild' },
|
|
747
|
+
{ label: 'Mother', value: 'Mother' },
|
|
748
|
+
{ label: 'MSGM', value: 'MSGM' },
|
|
749
|
+
{ label: 'MUNTHE', value: 'MUNTHE' },
|
|
750
|
+
{ label: 'Neuw Denim', value: 'Neuw Denim' },
|
|
751
|
+
{ label: 'Nine West', value: 'Nine West' },
|
|
752
|
+
{ label: 'NK', value: 'NK' },
|
|
753
|
+
{ label: 'NLY', value: 'NLY' },
|
|
754
|
+
{ label: 'Novita', value: 'Novita' },
|
|
755
|
+
{ label: 'Object', value: 'Object' },
|
|
756
|
+
{ label: 'Onepiece', value: 'Onepiece' },
|
|
757
|
+
{ label: 'Only & Sons', value: 'Only & Sons' },
|
|
758
|
+
{ label: 'Opening Ceremony', value: 'Opening Ceremony' },
|
|
759
|
+
{ label: 'PAIGE', value: 'PAIGE' },
|
|
760
|
+
{ label: 'Paule Ka', value: 'Paule Ka' },
|
|
761
|
+
{ label: 'Peter Kaiser', value: 'Peter Kaiser' },
|
|
762
|
+
{ label: 'Phase Eight', value: 'Phase Eight' },
|
|
763
|
+
{ label: 'Philosophy di Alberta Ferretti', value: 'Philosophy di Alberta Ferretti' },
|
|
764
|
+
{ label: 'Pieces', value: 'Pieces' },
|
|
765
|
+
{ label: 'Pour', value: 'Pour' },
|
|
766
|
+
{ label: 'Prêt à Porter', value: 'Prêt à Porter' },
|
|
767
|
+
{ label: 'Pretty Little Thing', value: 'Pretty Little Thing' },
|
|
768
|
+
{ label: 'Primark', value: 'Primark' },
|
|
769
|
+
{ label: 'Promenade', value: 'Promenade' },
|
|
770
|
+
{ label: 'Pura López', value: 'Pura López' },
|
|
771
|
+
{ label: 'Rachel Zoe', value: 'Rachel Zoe' },
|
|
772
|
+
{ label: 'Ragdoll LA', value: 'Ragdoll LA' },
|
|
773
|
+
{ label: 'Rebecca Taylor', value: 'Rebecca Taylor' },
|
|
774
|
+
{ label: 'REDValentino', value: 'REDValentino' },
|
|
775
|
+
{ label: 'Regina Rubens', value: 'Regina Rubens' },
|
|
776
|
+
{ label: 'Rituals', value: 'Rituals' },
|
|
777
|
+
{ label: 'Roberto Cavalli x H&M', value: 'Roberto Cavalli x H&M' },
|
|
778
|
+
{ label: 'Röhnisch', value: 'Röhnisch' },
|
|
779
|
+
{ label: 'Roland Mouret', value: 'Roland Mouret' },
|
|
780
|
+
{ label: 'Rosamunde', value: 'Rosamunde' },
|
|
781
|
+
{ label: 'Rouje', value: 'Rouje' },
|
|
782
|
+
{ label: 'Saga Ibañez', value: 'Saga Ibañez' },
|
|
783
|
+
{ label: 'Saints & Mortals', value: 'Saints & Mortals' },
|
|
784
|
+
{ label: 'Saks Fifth Avenue', value: 'Saks Fifth Avenue' },
|
|
785
|
+
{ label: 'Salvatore Ferragamo', value: 'Salvatore Ferragamo' },
|
|
786
|
+
{ label: 'Scorett', value: 'Scorett' },
|
|
787
|
+
{ label: 'Sebago', value: 'Sebago' },
|
|
788
|
+
{ label: 'Seven', value: 'Seven' },
|
|
789
|
+
{ label: 'Sibin/Linnebjerg', value: 'Sibin/Linnebjerg' },
|
|
790
|
+
{ label: 'Silence + Noise', value: 'Silence + Noise' },
|
|
791
|
+
{ label: 'Sir of Sweden', value: 'Sir of Sweden' },
|
|
792
|
+
{ label: 'Sisters Point', value: 'Sisters Point' },
|
|
793
|
+
{ label: 'Soulland', value: 'Soulland' },
|
|
794
|
+
{ label: 'Sperry Top-Sider', value: 'Sperry Top-Sider' },
|
|
795
|
+
{ label: 'Stance', value: 'Stance' },
|
|
796
|
+
{ label: 'Stefanel', value: 'Stefanel' },
|
|
797
|
+
{ label: 'Steilmann', value: 'Steilmann' },
|
|
798
|
+
{ label: 'Stella Nova', value: 'Stella Nova' },
|
|
799
|
+
{ label: 'Stradivarius', value: 'Stradivarius' },
|
|
800
|
+
{ label: 'Stuart Weitzman', value: 'Stuart Weitzman' },
|
|
801
|
+
{ label: 'Style Butler', value: 'Style Butler' },
|
|
802
|
+
{ label: 'SuperTrash', value: 'SuperTrash' },
|
|
803
|
+
{ label: 'T.M. Lewin', value: 'T.M. Lewin' },
|
|
804
|
+
{ label: 'Tabitha Simmons', value: 'Tabitha Simmons' },
|
|
805
|
+
{ label: 'Tamaris', value: 'Tamaris' },
|
|
806
|
+
{ label: 'Ten Points', value: 'Ten Points' },
|
|
807
|
+
{ label: 'The Stray Boys', value: 'The Stray Boys' },
|
|
808
|
+
{ label: 'Toba', value: 'Toba' },
|
|
809
|
+
{ label: 'Topman', value: 'Topman' },
|
|
810
|
+
{ label: 'TRIWA', value: 'TRIWA' },
|
|
811
|
+
{ label: 'Turnover', value: 'Turnover' },
|
|
812
|
+
{ label: 'Uggs', value: 'Uggs' },
|
|
813
|
+
{ label: 'Under Armour', value: 'Under Armour' },
|
|
814
|
+
{ label: 'Underground Clothing', value: 'Underground Clothing' },
|
|
815
|
+
{ label: 'Unisa', value: 'Unisa' },
|
|
816
|
+
{ label: 'Uterqüe', value: 'Uterqüe' },
|
|
817
|
+
{ label: 'V Ave Shoe Repair', value: 'V Ave Shoe Repair' },
|
|
818
|
+
{ label: 'Vailent', value: 'Vailent' },
|
|
819
|
+
{ label: 'Vanessa Bruno', value: 'Vanessa Bruno' },
|
|
820
|
+
{ label: 'Veja', value: 'Veja' },
|
|
821
|
+
{ label: 'Velour', value: 'Velour' },
|
|
822
|
+
{ label: 'Viktor&Rolf', value: 'Viktor&Rolf' },
|
|
823
|
+
{ label: 'Votre Nom', value: 'Votre Nom' },
|
|
824
|
+
{ label: 'Wilfred', value: 'Wilfred' },
|
|
825
|
+
{ label: 'Wolczanka', value: 'Wolczanka' },
|
|
826
|
+
{ label: 'Wolsey', value: 'Wolsey' },
|
|
827
|
+
{ label: '157 Angelology', value: '157 Angelology' },
|
|
828
|
+
{ label: '42nd street', value: '42nd street' },
|
|
829
|
+
{ label: '47 Brand', value: '47 Brand' },
|
|
830
|
+
{ label: '5boronyc', value: '5boronyc' },
|
|
831
|
+
{ label: '5PREVIEW', value: '5PREVIEW' },
|
|
832
|
+
{ label: '97 Rue des Mimosas', value: '97 Rue des Mimosas' },
|
|
833
|
+
{ label: 'A Happy Brand', value: 'A Happy Brand' },
|
|
834
|
+
{ label: 'A M O', value: 'A M O' },
|
|
835
|
+
{ label: 'A.S.98', value: 'A.S.98' },
|
|
836
|
+
{ label: 'ABAHOUSE', value: 'ABAHOUSE' },
|
|
837
|
+
{ label: 'Abercrombie & Fitch', value: 'Abercrombie & Fitch' },
|
|
838
|
+
{ label: 'Adax', value: 'Adax' },
|
|
839
|
+
{ label: 'ADER Error', value: 'ADER Error' },
|
|
840
|
+
{ label: 'Adventure Bound', value: 'Adventure Bound' },
|
|
841
|
+
{ label: 'Aéryne', value: 'Aéryne' },
|
|
842
|
+
{ label: 'aeyde', value: 'aeyde' },
|
|
843
|
+
{ label: 'Affinito Camiceria', value: 'Affinito Camiceria' },
|
|
844
|
+
{ label: 'AFMF', value: 'AFMF' },
|
|
845
|
+
{ label: 'agnès b.', value: 'agnès b.' },
|
|
846
|
+
{ label: 'Agolde', value: 'Agolde' },
|
|
847
|
+
{ label: 'Aigle', value: 'Aigle' },
|
|
848
|
+
{ label: 'Akris', value: 'Akris' },
|
|
849
|
+
{ label: 'Alan Red', value: 'Alan Red' },
|
|
850
|
+
{ label: 'albam', value: 'albam' },
|
|
851
|
+
{ label: 'Alberta Ferretti', value: 'Alberta Ferretti' },
|
|
852
|
+
{ label: 'Alberto Biani', value: 'Alberto Biani' },
|
|
853
|
+
{ label: 'ALEXACHUNG', value: 'ALEXACHUNG' },
|
|
854
|
+
{ label: 'Alfani', value: 'Alfani' },
|
|
855
|
+
{ label: 'Alice & Sens', value: 'Alice & Sens' },
|
|
856
|
+
{ label: 'Alice Bizous', value: 'Alice Bizous' },
|
|
857
|
+
{ label: 'ALIX', value: 'ALIX' },
|
|
858
|
+
{ label: 'Allegri', value: 'Allegri' },
|
|
859
|
+
{ label: 'Aloha Gaia', value: 'Aloha Gaia' },
|
|
860
|
+
{ label: 'Alpha', value: 'Alpha' },
|
|
861
|
+
{ label: 'Alpha Industries x The Cords & Co', value: 'Alpha Industries x The Cords & Co' },
|
|
862
|
+
{ label: 'Amanda Christensen', value: 'Amanda Christensen' },
|
|
863
|
+
{ label: 'American Eagle', value: 'American Eagle' },
|
|
864
|
+
{ label: 'Anélle', value: 'Anélle' },
|
|
865
|
+
{ label: 'Angelica Blick x Bikbok', value: 'Angelica Blick x Bikbok' },
|
|
866
|
+
{ label: 'Angelika Moden', value: 'Angelika Moden' },
|
|
867
|
+
{ label: 'Anne Fontaine', value: 'Anne Fontaine' },
|
|
868
|
+
{ label: 'Antea', value: 'Antea' },
|
|
869
|
+
{ label: 'Anton Heunis', value: 'Anton Heunis' },
|
|
870
|
+
{ label: 'Apair', value: 'Apair' },
|
|
871
|
+
{ label: 'Apiece Apart', value: 'Apiece Apart' },
|
|
872
|
+
{ label: 'APPARIS', value: 'APPARIS' },
|
|
873
|
+
{ label: 'April 77', value: 'April 77' },
|
|
874
|
+
{ label: 'Aquascutum Ltd', value: 'Aquascutum Ltd' },
|
|
875
|
+
{ label: 'Aquazzura', value: 'Aquazzura' },
|
|
876
|
+
{ label: 'Arbortec', value: 'Arbortec' },
|
|
877
|
+
{ label: 'Arden B', value: 'Arden B' },
|
|
878
|
+
{ label: 'Arezzo', value: 'Arezzo' },
|
|
879
|
+
{ label: 'Aries Aries', value: 'Aries Aries' },
|
|
880
|
+
{ label: 'Aritzia', value: 'Aritzia' },
|
|
881
|
+
{ label: 'Armani Exchange', value: 'Armani Exchange' },
|
|
882
|
+
{ label: 'Armor-Lux', value: 'Armor-Lux' },
|
|
883
|
+
{ label: 'Artland', value: 'Artland' },
|
|
884
|
+
{ label: 'Assembly Label', value: 'Assembly Label' },
|
|
885
|
+
{ label: 'Assuili', value: 'Assuili' },
|
|
886
|
+
{ label: 'AT.P.CO', value: 'AT.P.CO' },
|
|
887
|
+
{ label: 'Audley', value: 'Audley' },
|
|
888
|
+
{ label: 'Autograph', value: 'Autograph' },
|
|
889
|
+
{ label: 'Avant Premiere', value: 'Avant Premiere' },
|
|
890
|
+
{ label: 'AWAN', value: 'AWAN' },
|
|
891
|
+
{ label: 'Baboo', value: 'Baboo' },
|
|
892
|
+
{ label: 'Bäcio', value: 'Bäcio' },
|
|
893
|
+
{ label: 'Badgley Mischka', value: 'Badgley Mischka' },
|
|
894
|
+
{ label: 'Bagatelle', value: 'Bagatelle' },
|
|
895
|
+
{ label: 'Band of Outsiders', value: 'Band of Outsiders' },
|
|
896
|
+
{ label: 'Barons Papillon', value: 'Barons Papillon' },
|
|
897
|
+
{ label: 'Baserange', value: 'Baserange' },
|
|
898
|
+
{ label: 'Bassike', value: 'Bassike' },
|
|
899
|
+
{ label: 'Bata', value: 'Bata' },
|
|
900
|
+
{ label: 'Baumgarten Di Marco', value: 'Baumgarten Di Marco' },
|
|
901
|
+
{ label: 'Bebe', value: 'Bebe' },
|
|
902
|
+
{ label: 'Bec & Bridge', value: 'Bec & Bridge' },
|
|
903
|
+
{ label: 'Becksöndergaard', value: 'Becksöndergaard' },
|
|
904
|
+
{ label: 'Bel Air', value: 'Bel Air' },
|
|
905
|
+
{ label: 'Belfe & Belfe', value: 'Belfe & Belfe' },
|
|
906
|
+
{ label: 'Bella Classics', value: 'Bella Classics' },
|
|
907
|
+
{ label: 'Belle & Bunty', value: 'Belle & Bunty' },
|
|
908
|
+
{ label: 'Bellerose', value: 'Bellerose' },
|
|
909
|
+
{ label: 'Bem Transada', value: 'Bem Transada' },
|
|
910
|
+
{ label: 'Beryll', value: 'Beryll' },
|
|
911
|
+
{ label: 'Betsey Johnson', value: 'Betsey Johnson' },
|
|
912
|
+
{ label: 'Betty Jackson', value: 'Betty Jackson' },
|
|
913
|
+
{ label: 'Bianca', value: 'Bianca' },
|
|
914
|
+
{ label: 'BIBI MARINI', value: 'BIBI MARINI' },
|
|
915
|
+
{ label: 'Big John', value: 'Big John' },
|
|
916
|
+
{ label: 'Bikkembergs', value: 'Bikkembergs' },
|
|
917
|
+
{ label: 'Bill Blass', value: 'Bill Blass' },
|
|
918
|
+
{ label: 'Blanche CPH', value: 'Blanche CPH' },
|
|
919
|
+
{ label: 'Blues Club by Max Mara', value: 'Blues Club by Max Mara' },
|
|
920
|
+
{ label: 'Blush B-Lush', value: 'Blush B-Lush' },
|
|
921
|
+
{ label: 'Blutsgeschwister', value: 'Blutsgeschwister' },
|
|
922
|
+
{ label: 'Bobbie Brooks', value: 'Bobbie Brooks' },
|
|
923
|
+
{ label: 'Boccaccini', value: 'Boccaccini' },
|
|
924
|
+
{ label: 'BODA SKINS', value: 'BODA SKINS' },
|
|
925
|
+
{ label: 'Boggi', value: 'Boggi' },
|
|
926
|
+
{ label: 'Boglioli Milano', value: 'Boglioli Milano' },
|
|
927
|
+
{ label: 'Bon Homme', value: 'Bon Homme' },
|
|
928
|
+
{ label: 'Brandy Melville', value: 'Brandy Melville' },
|
|
929
|
+
{ label: 'Branting', value: 'Branting' },
|
|
930
|
+
{ label: 'Bredenberg', value: 'Bredenberg' },
|
|
931
|
+
{ label: 'Bric-a-Brac', value: 'Bric-a-Brac' },
|
|
932
|
+
{ label: 'Brooker', value: 'Brooker' },
|
|
933
|
+
{ label: 'Bruno Bresciani', value: 'Bruno Bresciani' },
|
|
934
|
+
{ label: 'Bruno Magli', value: 'Bruno Magli' },
|
|
935
|
+
{ label: 'Bruno Premi', value: 'Bruno Premi' },
|
|
936
|
+
{ label: 'Bruno Zaragoza', value: 'Bruno Zaragoza' },
|
|
937
|
+
{ label: 'Bukvy', value: 'Bukvy' },
|
|
938
|
+
{ label: 'BUSCEMI', value: 'BUSCEMI' },
|
|
939
|
+
{ label: 'Buttero', value: 'Buttero' },
|
|
940
|
+
{ label: 'BVLGARI', value: 'BVLGARI' },
|
|
941
|
+
{ label: 'By Nils', value: 'By Nils' },
|
|
942
|
+
{ label: 'Cable & Gauge', value: 'Cable & Gauge' },
|
|
943
|
+
{ label: 'Caché', value: 'Caché' },
|
|
944
|
+
{ label: 'Calou Stockholm', value: 'Calou Stockholm' },
|
|
945
|
+
{ label: 'Calypso', value: 'Calypso' },
|
|
946
|
+
{ label: 'Camanchi Leathers', value: 'Camanchi Leathers' },
|
|
947
|
+
{ label: 'Canada Snow', value: 'Canada Snow' },
|
|
948
|
+
{ label: 'Cappuccini', value: 'Cappuccini' },
|
|
949
|
+
{ label: 'Capucci', value: 'Capucci' },
|
|
950
|
+
{ label: 'Caractère Abbigliamento', value: 'Caractère Abbigliamento' },
|
|
951
|
+
{ label: 'Carducci', value: 'Carducci' },
|
|
952
|
+
{ label: 'Carhartt WIP', value: 'Carhartt WIP' },
|
|
953
|
+
{ label: 'Carlings', value: 'Carlings' },
|
|
954
|
+
{ label: 'Carmar Denim', value: 'Carmar Denim' },
|
|
955
|
+
{ label: 'Carolee', value: 'Carolee' },
|
|
956
|
+
{ label: 'Carolina Herrera', value: 'Carolina Herrera' },
|
|
957
|
+
{ label: 'Carven', value: 'Carven' },
|
|
958
|
+
{ label: 'Casio', value: 'Casio' },
|
|
959
|
+
{ label: 'Cathrine Hammel', value: 'Cathrine Hammel' },
|
|
960
|
+
{ label: 'CC Shoes', value: 'CC Shoes' },
|
|
961
|
+
{ label: 'CeCe', value: 'CeCe' },
|
|
962
|
+
{ label: 'Cecilie Copenhagen', value: 'Cecilie Copenhagen' },
|
|
963
|
+
{ label: 'Cedar Wood State', value: 'Cedar Wood State' },
|
|
964
|
+
{ label: 'Celebration', value: 'Celebration' },
|
|
965
|
+
{ label: 'Celyn B.', value: 'Celyn B.' },
|
|
966
|
+
{ label: 'Cerruti', value: 'Cerruti' },
|
|
967
|
+
{ label: 'Chalayan', value: 'Chalayan' },
|
|
968
|
+
{ label: 'Chamonelle', value: 'Chamonelle' },
|
|
969
|
+
{ label: 'Charles & Keith', value: 'Charles & Keith' },
|
|
970
|
+
{ label: 'Charles Jourdan', value: 'Charles Jourdan' },
|
|
971
|
+
{ label: 'Charles Tyrwhitt', value: 'Charles Tyrwhitt' },
|
|
972
|
+
{ label: 'Charlotte Eskildsen', value: 'Charlotte Eskildsen' },
|
|
973
|
+
{ label: 'Charon', value: 'Charon' },
|
|
974
|
+
{ label: 'Cheaney', value: 'Cheaney' },
|
|
975
|
+
{ label: 'Chevignon', value: 'Chevignon' },
|
|
976
|
+
{ label: 'Chiara Forthi', value: 'Chiara Forthi' },
|
|
977
|
+
{ label: 'Chinese Laundry', value: 'Chinese Laundry' },
|
|
978
|
+
{ label: 'Chio di stefania D', value: 'Chio di stefania D' },
|
|
979
|
+
{ label: 'Christian Lacroix', value: 'Christian Lacroix' },
|
|
980
|
+
{ label: 'Christian Siriano', value: 'Christian Siriano' },
|
|
981
|
+
{ label: "Church's", value: "Church's" },
|
|
982
|
+
{ label: 'Cindy Crawford', value: 'Cindy Crawford' },
|
|
983
|
+
{ label: 'Claes Göran', value: 'Claes Göran' },
|
|
984
|
+
{ label: 'Clarks Originals', value: 'Clarks Originals' },
|
|
985
|
+
{ label: 'Claude Gerard', value: 'Claude Gerard' },
|
|
986
|
+
{ label: 'Clergerie Paris', value: 'Clergerie Paris' },
|
|
987
|
+
{ label: 'Clou', value: 'Clou' },
|
|
988
|
+
{ label: 'Club L London', value: 'Club L London' },
|
|
989
|
+
{ label: 'Coast', value: 'Coast' },
|
|
990
|
+
{ label: 'Coccinelle', value: 'Coccinelle' },
|
|
991
|
+
{ label: 'Collusion', value: 'Collusion' },
|
|
992
|
+
{ label: 'Colmar', value: 'Colmar' },
|
|
993
|
+
{ label: 'Colorful Standard', value: 'Colorful Standard' },
|
|
994
|
+
{ label: 'Contemporary Reflections', value: 'Contemporary Reflections' },
|
|
995
|
+
{ label: 'Cooper & Stollbrand', value: 'Cooper & Stollbrand' },
|
|
996
|
+
{ label: 'Corneliani', value: 'Corneliani' },
|
|
997
|
+
{ label: 'CQP', value: 'CQP' },
|
|
998
|
+
{ label: 'Craig Green x Björn Borg', value: 'Craig Green x Björn Borg' },
|
|
999
|
+
{ label: 'Crimson', value: 'Crimson' },
|
|
1000
|
+
{ label: 'Crockett & Jones', value: 'Crockett & Jones' },
|
|
1001
|
+
{ label: 'Crumpet', value: 'Crumpet' },
|
|
1002
|
+
{ label: 'Culture Vintage', value: 'Culture Vintage' },
|
|
1003
|
+
{ label: 'Custo Barcelona', value: 'Custo Barcelona' },
|
|
1004
|
+
{ label: 'Cutler and Gross', value: 'Cutler and Gross' },
|
|
1005
|
+
{ label: 'Cuts', value: 'Cuts' },
|
|
1006
|
+
{ label: 'Cynthia Steffe', value: 'Cynthia Steffe' },
|
|
1007
|
+
{ label: 'D-Struct', value: 'D-Struct' },
|
|
1008
|
+
{ label: 'Daniel Hechter Paris', value: 'Daniel Hechter Paris' },
|
|
1009
|
+
{ label: 'Dánte', value: 'Dánte' },
|
|
1010
|
+
{ label: 'Dasia', value: 'Dasia' },
|
|
1011
|
+
{ label: 'David Warren New York', value: 'David Warren New York' },
|
|
1012
|
+
{ label: 'Davvero', value: 'Davvero' },
|
|
1013
|
+
{ label: 'DAY.LIKE', value: 'DAY.LIKE' },
|
|
1014
|
+
{ label: 'Decadent Copenhagen', value: 'Decadent Copenhagen' },
|
|
1015
|
+
{ label: 'DEDICATED', value: 'DEDICATED' },
|
|
1016
|
+
{ label: 'Deitas', value: 'Deitas' },
|
|
1017
|
+
{ label: 'Del Carlo', value: 'Del Carlo' },
|
|
1018
|
+
{ label: 'Delicatelove.', value: 'Delicatelove.' },
|
|
1019
|
+
{ label: 'Denim & Supply', value: 'Denim & Supply' },
|
|
1020
|
+
{ label: 'Denim Day', value: 'Denim Day' },
|
|
1021
|
+
{ label: 'DEPECHE', value: 'DEPECHE' },
|
|
1022
|
+
{ label: 'Der Schumacher', value: 'Der Schumacher' },
|
|
1023
|
+
{ label: 'Derek Lam 10 Crosby', value: 'Derek Lam 10 Crosby' },
|
|
1024
|
+
{ label: 'Des Petits Hauts', value: 'Des Petits Hauts' },
|
|
1025
|
+
{ label: 'Diego Dolcini', value: 'Diego Dolcini' },
|
|
1026
|
+
{ label: 'Diemme', value: 'Diemme' },
|
|
1027
|
+
{ label: 'DinSko', value: 'DinSko' },
|
|
1028
|
+
{ label: 'Diolen', value: 'Diolen' },
|
|
1029
|
+
{ label: 'DITA Official', value: 'DITA Official' },
|
|
1030
|
+
{ label: 'Divided', value: 'Divided' },
|
|
1031
|
+
{ label: 'Divided by H&M', value: 'Divided by H&M' },
|
|
1032
|
+
{ label: 'Dolce Vita', value: 'Dolce Vita' },
|
|
1033
|
+
{ label: 'Dominici', value: 'Dominici' },
|
|
1034
|
+
{ label: 'Dondup', value: 'Dondup' },
|
|
1035
|
+
{ label: 'Dooney & Bourke', value: 'Dooney & Bourke' },
|
|
1036
|
+
{ label: 'Dr. Demin', value: 'Dr. Demin' },
|
|
1037
|
+
{ label: 'Dress the Population', value: 'Dress the Population' },
|
|
1038
|
+
{ label: 'Dressmann', value: 'Dressmann' },
|
|
1039
|
+
{ label: 'DYRBERG / KERN', value: 'DYRBERG / KERN' },
|
|
1040
|
+
{ label: 'East', value: 'East' },
|
|
1041
|
+
{ label: 'Eastpak', value: 'Eastpak' },
|
|
1042
|
+
{ label: 'Ebba Jensen', value: 'Ebba Jensen' },
|
|
1043
|
+
{ label: 'Ebbets Field', value: 'Ebbets Field' },
|
|
1044
|
+
{ label: 'Ecote', value: 'Ecote' },
|
|
1045
|
+
{ label: 'Efva Attling', value: 'Efva Attling' },
|
|
1046
|
+
{ label: 'EGO', value: 'EGO' },
|
|
1047
|
+
{ label: 'ELENA MAKRI', value: 'ELENA MAKRI' },
|
|
1048
|
+
{ label: 'Elevenparis', value: 'Elevenparis' },
|
|
1049
|
+
{ label: 'Elie Tahari', value: 'Elie Tahari' },
|
|
1050
|
+
{ label: 'ELISE GUG', value: 'ELISE GUG' },
|
|
1051
|
+
{ label: 'Ella Moss', value: 'Ella Moss' },
|
|
1052
|
+
{ label: 'Elsa Ekman x Bikbok', value: 'Elsa Ekman x Bikbok' },
|
|
1053
|
+
{ label: 'Elvio Zanon', value: 'Elvio Zanon' },
|
|
1054
|
+
{ label: 'Emilio Denim', value: 'Emilio Denim' },
|
|
1055
|
+
{ label: 'Emily van den Bergh', value: 'Emily van den Bergh' },
|
|
1056
|
+
{ label: 'Envy', value: 'Envy' },
|
|
1057
|
+
{ label: 'Erdem', value: 'Erdem' },
|
|
1058
|
+
{ label: 'Éric Bompard', value: 'Éric Bompard' },
|
|
1059
|
+
{ label: 'Esther Perbandt', value: 'Esther Perbandt' },
|
|
1060
|
+
{ label: 'Eterna', value: 'Eterna' },
|
|
1061
|
+
{ label: 'Evaluna', value: 'Evaluna' },
|
|
1062
|
+
{ label: 'Even & Odd', value: 'Even & Odd' },
|
|
1063
|
+
{ label: 'Everlane', value: 'Everlane' },
|
|
1064
|
+
{ label: 'Fabiana Filippi', value: 'Fabiana Filippi' },
|
|
1065
|
+
{ label: 'Faherty', value: 'Faherty' },
|
|
1066
|
+
{ label: 'Fashion Against AIDS x H&M', value: 'Fashion Against AIDS x H&M' },
|
|
1067
|
+
{ label: 'Fashion Union', value: 'Fashion Union' },
|
|
1068
|
+
{ label: 'Fashion World', value: 'Fashion World' },
|
|
1069
|
+
{ label: 'Father Sons', value: 'Father Sons' },
|
|
1070
|
+
{ label: 'Fenn Wright Manson', value: 'Fenn Wright Manson' },
|
|
1071
|
+
{ label: 'Fifilles Paris', value: 'Fifilles Paris' },
|
|
1072
|
+
{ label: 'Filippo Catarzi', value: 'Filippo Catarzi' },
|
|
1073
|
+
{ label: 'Fille à suivre', value: 'Fille à suivre' },
|
|
1074
|
+
{ label: 'Filling Pieces', value: 'Filling Pieces' },
|
|
1075
|
+
{ label: 'Fiore', value: 'Fiore' },
|
|
1076
|
+
{ label: 'Fiorelli', value: 'Fiorelli' },
|
|
1077
|
+
{ label: 'Fiorentini+Baker', value: 'Fiorentini+Baker' },
|
|
1078
|
+
{ label: 'Fiori', value: 'Fiori' },
|
|
1079
|
+
{ label: 'Firetrap', value: 'Firetrap' },
|
|
1080
|
+
{ label: 'Flannel Bay', value: 'Flannel Bay' },
|
|
1081
|
+
{ label: 'Fly London', value: 'Fly London' },
|
|
1082
|
+
{ label: 'Flybird Apparel', value: 'Flybird Apparel' },
|
|
1083
|
+
{ label: 'Forever Unique', value: 'Forever Unique' },
|
|
1084
|
+
{ label: 'Forever21', value: 'Forever21' },
|
|
1085
|
+
{ label: 'Forpen', value: 'Forpen' },
|
|
1086
|
+
{ label: 'Franco Callegari', value: 'Franco Callegari' },
|
|
1087
|
+
{ label: 'Frank Usher', value: 'Frank Usher' },
|
|
1088
|
+
{ label: 'Free people', value: 'Free people' },
|
|
1089
|
+
{ label: 'Freedom Foundry', value: 'Freedom Foundry' },
|
|
1090
|
+
{ label: 'Freequent', value: 'Freequent' },
|
|
1091
|
+
{ label: 'Fristads', value: 'Fristads' },
|
|
1092
|
+
{ label: 'G-One', value: 'G-One' },
|
|
1093
|
+
{ label: 'Gai+Lisva', value: 'Gai+Lisva' },
|
|
1094
|
+
{ label: 'Garcia', value: 'Garcia' },
|
|
1095
|
+
{ label: 'Gardenia Copenhagen', value: 'Gardenia Copenhagen' },
|
|
1096
|
+
{ label: 'Geoffrey B. Small', value: 'Geoffrey B. Small' },
|
|
1097
|
+
{ label: 'Georges Rech Paris', value: 'Georges Rech Paris' },
|
|
1098
|
+
{ label: 'Gerry Weber', value: 'Gerry Weber' },
|
|
1099
|
+
{ label: 'Giancarlo Paoli', value: 'Giancarlo Paoli' },
|
|
1100
|
+
{ label: 'Gianni Barbato', value: 'Gianni Barbato' },
|
|
1101
|
+
{ label: 'Gitman Bros x Monocle', value: 'Gitman Bros x Monocle' },
|
|
1102
|
+
{ label: 'Gitman Bros.', value: 'Gitman Bros.' },
|
|
1103
|
+
{ label: 'Giuseppe Zanotti', value: 'Giuseppe Zanotti' },
|
|
1104
|
+
{ label: 'Glassons', value: 'Glassons' },
|
|
1105
|
+
{ label: 'GOEN.J', value: 'GOEN.J' },
|
|
1106
|
+
{ label: 'GOOD AFTER NINE', value: 'GOOD AFTER NINE' },
|
|
1107
|
+
{ label: 'Göran Sundberg', value: 'Göran Sundberg' },
|
|
1108
|
+
{ label: 'Gorman', value: 'Gorman' },
|
|
1109
|
+
{ label: 'Gossip', value: 'Gossip' },
|
|
1110
|
+
{ label: 'Greylin', value: 'Greylin' },
|
|
1111
|
+
{ label: 'Gul & Blå', value: 'Gul & Blå' },
|
|
1112
|
+
{ label: 'Guldfynd', value: 'Guldfynd' },
|
|
1113
|
+
{ label: 'Gunilla Pontén', value: 'Gunilla Pontén' },
|
|
1114
|
+
{ label: 'Guy de Jean', value: 'Guy de Jean' },
|
|
1115
|
+
{ label: 'HAAL', value: 'HAAL' },
|
|
1116
|
+
{ label: 'Hackett', value: 'Hackett' },
|
|
1117
|
+
{ label: 'Happy Socks', value: 'Happy Socks' },
|
|
1118
|
+
{ label: 'Harley-Davidson', value: 'Harley-Davidson' },
|
|
1119
|
+
{ label: 'Heart of Lovikka', value: 'Heart of Lovikka' },
|
|
1120
|
+
{ label: 'Helly Hansen', value: 'Helly Hansen' },
|
|
1121
|
+
{ label: 'Henry Rude', value: 'Henry Rude' },
|
|
1122
|
+
{ label: 'HOKA', value: 'HOKA' },
|
|
1123
|
+
{ label: 'Holebrook', value: 'Holebrook' },
|
|
1124
|
+
{ label: 'Holland & Holland', value: 'Holland & Holland' },
|
|
1125
|
+
{ label: 'Holland Esquire', value: 'Holland Esquire' },
|
|
1126
|
+
{ label: 'Holly & Whyte', value: 'Holly & Whyte' },
|
|
1127
|
+
{ label: 'House of Hounds', value: 'House of Hounds' },
|
|
1128
|
+
{ label: 'House of Lola', value: 'House of Lola' },
|
|
1129
|
+
{ label: 'Hudson London', value: 'Hudson London' },
|
|
1130
|
+
{ label: 'Hugo Buscati', value: 'Hugo Buscati' },
|
|
1131
|
+
{ label: 'HUNKØN', value: 'HUNKØN' },
|
|
1132
|
+
{ label: 'I Dig denim', value: 'I Dig denim' },
|
|
1133
|
+
{ label: 'Iceberg', value: 'Iceberg' },
|
|
1134
|
+
{ label: 'Illesteva', value: 'Illesteva' },
|
|
1135
|
+
{ label: 'Impuls', value: 'Impuls' },
|
|
1136
|
+
{ label: 'Ines de la Fressange x Uniqlo', value: 'Ines de la Fressange x Uniqlo' },
|
|
1137
|
+
{ label: 'INUIKII', value: 'INUIKII' },
|
|
1138
|
+
{ label: 'Isaac Mizrahi', value: 'Isaac Mizrahi' },
|
|
1139
|
+
{ label: 'ISSEY MIYAKE INC.', value: 'ISSEY MIYAKE INC.' },
|
|
1140
|
+
{ label: 'Itti & Otto', value: 'Itti & Otto' },
|
|
1141
|
+
{ label: 'Ivanhoe of Sweden', value: 'Ivanhoe of Sweden' },
|
|
1142
|
+
{ label: 'Ivivi', value: 'Ivivi' },
|
|
1143
|
+
{ label: 'Jack Wolfskin', value: 'Jack Wolfskin' },
|
|
1144
|
+
{ label: 'Jacques Esterel', value: 'Jacques Esterel' },
|
|
1145
|
+
{ label: 'Jade Ask', value: 'Jade Ask' },
|
|
1146
|
+
{ label: 'Jaeger-LeCoultre', value: 'Jaeger-LeCoultre' },
|
|
1147
|
+
{ label: 'Jaggar The Label', value: 'Jaggar The Label' },
|
|
1148
|
+
{ label: 'Jake*s', value: 'Jake*s' },
|
|
1149
|
+
{ label: 'Jealous Tomato', value: 'Jealous Tomato' },
|
|
1150
|
+
{ label: 'Jennyfer', value: 'Jennyfer' },
|
|
1151
|
+
{ label: 'Jeremy Scott x Adidas', value: 'Jeremy Scott x Adidas' },
|
|
1152
|
+
{ label: 'Jigsaw', value: 'Jigsaw' },
|
|
1153
|
+
{ label: 'Jil Sander x Uniqlo', value: 'Jil Sander x Uniqlo' },
|
|
1154
|
+
{ label: 'Joan & David', value: 'Joan & David' },
|
|
1155
|
+
{ label: 'JOCAVI', value: 'JOCAVI' },
|
|
1156
|
+
{ label: 'Jofama by Kenza', value: 'Jofama by Kenza' },
|
|
1157
|
+
{ label: 'John Galliano', value: 'John Galliano' },
|
|
1158
|
+
{ label: 'John Varvatos', value: 'John Varvatos' },
|
|
1159
|
+
{ label: 'Jolie Moi', value: 'Jolie Moi' },
|
|
1160
|
+
{ label: 'Jordache', value: 'Jordache' },
|
|
1161
|
+
{ label: 'Jorli', value: 'Jorli' },
|
|
1162
|
+
{ label: 'Josephine & Co', value: 'Josephine & Co' },
|
|
1163
|
+
{ label: 'Just Cavalli', value: 'Just Cavalli' },
|
|
1164
|
+
{ label: 'Just Junkies', value: 'Just Junkies' },
|
|
1165
|
+
{ label: 'JUX', value: 'JUX' },
|
|
1166
|
+
{ label: 'JW Anderson', value: 'JW Anderson' },
|
|
1167
|
+
{ label: 'K&US', value: 'K&US' },
|
|
1168
|
+
{ label: 'Kachi Mushi', value: 'Kachi Mushi' },
|
|
1169
|
+
{ label: 'Kappa', value: 'Kappa' },
|
|
1170
|
+
{ label: 'Karen by Simonsen', value: 'Karen by Simonsen' },
|
|
1171
|
+
{ label: 'Karen Kate', value: 'Karen Kate' },
|
|
1172
|
+
{ label: 'Karen Walker', value: 'Karen Walker' },
|
|
1173
|
+
{ label: 'Karhu', value: 'Karhu' },
|
|
1174
|
+
{ label: 'Kari Traa', value: 'Kari Traa' },
|
|
1175
|
+
{ label: 'Karl Lagerfeld', value: 'Karl Lagerfeld' },
|
|
1176
|
+
{ label: 'KARVE', value: 'KARVE' },
|
|
1177
|
+
{ label: 'Kate Moss x Topshop', value: 'Kate Moss x Topshop' },
|
|
1178
|
+
{ label: 'Katharine Hamnett', value: 'Katharine Hamnett' },
|
|
1179
|
+
{ label: 'Kay Unger', value: 'Kay Unger' },
|
|
1180
|
+
{ label: 'Keepsake The Label', value: 'Keepsake The Label' },
|
|
1181
|
+
{ label: 'King Louie', value: 'King Louie' },
|
|
1182
|
+
{ label: 'King x Jofama', value: 'King x Jofama' },
|
|
1183
|
+
{ label: 'KL by Karl Lagerfeld', value: 'KL by Karl Lagerfeld' },
|
|
1184
|
+
{ label: 'Kleman', value: 'Kleman' },
|
|
1185
|
+
{ label: 'KODA SUNSET', value: 'KODA SUNSET' },
|
|
1186
|
+
{ label: 'Komono', value: 'Komono' },
|
|
1187
|
+
{ label: 'Koola Anna', value: 'Koola Anna' },
|
|
1188
|
+
{ label: 'Kuyichi', value: 'Kuyichi' },
|
|
1189
|
+
{ label: 'L.B.M. 1911', value: 'L.B.M. 1911' },
|
|
1190
|
+
{ label: "L'AGENCE", value: "L'AGENCE" },
|
|
1191
|
+
{ label: "L'onkel", value: "L'onkel" },
|
|
1192
|
+
{ label: 'La Garçonne', value: 'La Garçonne' },
|
|
1193
|
+
{ label: 'La Petite Française', value: 'La Petite Française' },
|
|
1194
|
+
{ label: 'La Petite Parisienne', value: 'La Petite Parisienne' },
|
|
1195
|
+
{ label: 'La Redoute', value: 'La Redoute' },
|
|
1196
|
+
{ label: 'Lack of Color', value: 'Lack of Color' },
|
|
1197
|
+
{ label: 'Lady Arrow', value: 'Lady Arrow' },
|
|
1198
|
+
{ label: 'lala Berlin', value: 'lala Berlin' },
|
|
1199
|
+
{ label: 'LANTLOLLORNA', value: 'LANTLOLLORNA' },
|
|
1200
|
+
{ label: 'Lardini', value: 'Lardini' },
|
|
1201
|
+
{ label: 'Laura Amat', value: 'Laura Amat' },
|
|
1202
|
+
{ label: 'Laura Ashley', value: 'Laura Ashley' },
|
|
1203
|
+
{ label: 'Laura Camino', value: 'Laura Camino' },
|
|
1204
|
+
{ label: 'Laura Clement', value: 'Laura Clement' },
|
|
1205
|
+
{ label: 'Lauren Ralph Lauren', value: 'Lauren Ralph Lauren' },
|
|
1206
|
+
{ label: 'Lavage Foncé', value: 'Lavage Foncé' },
|
|
1207
|
+
{ label: 'LAZOSCHMIDL', value: 'LAZOSCHMIDL' },
|
|
1208
|
+
{ label: 'Lee x Weekday', value: 'Lee x Weekday' },
|
|
1209
|
+
{ label: 'Lene Sand', value: 'Lene Sand' },
|
|
1210
|
+
{ label: 'Les Copains', value: 'Les Copains' },
|
|
1211
|
+
{ label: 'LFT Denim', value: 'LFT Denim' },
|
|
1212
|
+
{ label: 'Libertine-Libertine', value: 'Libertine-Libertine' },
|
|
1213
|
+
{ label: 'Liberty', value: 'Liberty' },
|
|
1214
|
+
{ label: 'Lily and Rose', value: 'Lily and Rose' },
|
|
1215
|
+
{ label: 'Line of Oslo', value: 'Line of Oslo' },
|
|
1216
|
+
{ label: 'Lion of Porches', value: 'Lion of Porches' },
|
|
1217
|
+
{ label: 'Lipsy London', value: 'Lipsy London' },
|
|
1218
|
+
{ label: 'Little Liffner', value: 'Little Liffner' },
|
|
1219
|
+
{ label: 'Little Mistress', value: 'Little Mistress' },
|
|
1220
|
+
{ label: 'Loake 1880', value: 'Loake 1880' },
|
|
1221
|
+
{ label: 'Loevenich', value: 'Loevenich' },
|
|
1222
|
+
{ label: 'Loewe', value: 'Loewe' },
|
|
1223
|
+
{ label: 'Löfsko', value: 'Löfsko' },
|
|
1224
|
+
{ label: 'LOIS', value: 'LOIS' },
|
|
1225
|
+
{ label: 'Lola Espeleta', value: 'Lola Espeleta' },
|
|
1226
|
+
{ label: 'LOROD', value: 'LOROD' },
|
|
1227
|
+
{ label: 'Lottusse', value: 'Lottusse' },
|
|
1228
|
+
{ label: 'Louis Feraud', value: 'Louis Feraud' },
|
|
1229
|
+
{ label: 'Love Raid', value: 'Love Raid' },
|
|
1230
|
+
{ label: 'Luana', value: 'Luana' },
|
|
1231
|
+
{ label: 'Luc Brevet', value: 'Luc Brevet' },
|
|
1232
|
+
{ label: 'Lucchese', value: 'Lucchese' },
|
|
1233
|
+
{ label: 'Lumi Accessories', value: 'Lumi Accessories' },
|
|
1234
|
+
{ label: 'LXLS', value: 'LXLS' },
|
|
1235
|
+
{ label: 'M by Madonna', value: 'M by Madonna' },
|
|
1236
|
+
{ label: 'M by Maiocci', value: 'M by Maiocci' },
|
|
1237
|
+
{ label: 'M Missoni', value: 'M Missoni' },
|
|
1238
|
+
{ label: 'M&S London', value: 'M&S London' },
|
|
1239
|
+
{ label: 'Mac Scott', value: 'Mac Scott' },
|
|
1240
|
+
{ label: 'Macarena Shoes', value: 'Macarena Shoes' },
|
|
1241
|
+
{ label: 'Made in the Shade', value: 'Made in the Shade' },
|
|
1242
|
+
{ label: 'Madewell', value: 'Madewell' },
|
|
1243
|
+
{ label: 'Madison', value: 'Madison' },
|
|
1244
|
+
{ label: 'Maguba', value: 'Maguba' },
|
|
1245
|
+
{ label: 'Maison de Famille', value: 'Maison de Famille' },
|
|
1246
|
+
{ label: 'Maison Labiche', value: 'Maison Labiche' },
|
|
1247
|
+
{ label: 'MaisonCléo', value: 'MaisonCléo' },
|
|
1248
|
+
{ label: 'Malaika Cotton', value: 'Malaika Cotton' },
|
|
1249
|
+
{ label: 'Malloni', value: 'Malloni' },
|
|
1250
|
+
{ label: 'Malungsskinn', value: 'Malungsskinn' },
|
|
1251
|
+
{ label: 'Manastash', value: 'Manastash' },
|
|
1252
|
+
{ label: 'Mandarina Duck', value: 'Mandarina Duck' },
|
|
1253
|
+
{ label: 'MANI', value: 'MANI' },
|
|
1254
|
+
{ label: 'Manolo Blahnik', value: 'Manolo Blahnik' },
|
|
1255
|
+
{ label: 'Marc Aurel', value: 'Marc Aurel' },
|
|
1256
|
+
{ label: 'Marc Fisher', value: 'Marc Fisher' },
|
|
1257
|
+
{ label: 'Marc Lauge', value: 'Marc Lauge' },
|
|
1258
|
+
{ label: 'Marenas', value: 'Marenas' },
|
|
1259
|
+
{ label: 'Margaret Howell', value: 'Margaret Howell' },
|
|
1260
|
+
{ label: 'Margit Brandt', value: 'Margit Brandt' },
|
|
1261
|
+
{ label: 'Maria Nilsdotter', value: 'Maria Nilsdotter' },
|
|
1262
|
+
{ label: 'Mariano Rubinacci', value: 'Mariano Rubinacci' },
|
|
1263
|
+
{ label: 'Marie Lund', value: 'Marie Lund' },
|
|
1264
|
+
{ label: 'Marine Layer', value: 'Marine Layer' },
|
|
1265
|
+
{ label: 'Marja Kurki', value: 'Marja Kurki' },
|
|
1266
|
+
{ label: 'Mark McNairy', value: 'Mark McNairy' },
|
|
1267
|
+
{ label: 'Marquiiz', value: 'Marquiiz' },
|
|
1268
|
+
{ label: 'Martin Grant', value: 'Martin Grant' },
|
|
1269
|
+
{ label: 'Marzio', value: 'Marzio' },
|
|
1270
|
+
{ label: 'Masai', value: 'Masai' },
|
|
1271
|
+
{ label: 'MASKA', value: 'MASKA' },
|
|
1272
|
+
{ label: "Mason's", value: "Mason's" },
|
|
1273
|
+
{ label: 'MASSCOB', value: 'MASSCOB' },
|
|
1274
|
+
{ label: 'Massimo Alba', value: 'Massimo Alba' },
|
|
1275
|
+
{ label: 'Mathilde', value: 'Mathilde' },
|
|
1276
|
+
{ label: 'Matinique', value: 'Matinique' },
|
|
1277
|
+
{ label: 'Matthew Williamson', value: 'Matthew Williamson' },
|
|
1278
|
+
{ label: 'Matthew Williamson x Lindex', value: 'Matthew Williamson x Lindex' },
|
|
1279
|
+
{ label: 'MCS', value: 'MCS' },
|
|
1280
|
+
{ label: 'Meidesign', value: 'Meidesign' },
|
|
1281
|
+
{ label: 'Meotine', value: 'Meotine' },
|
|
1282
|
+
{ label: 'Mes Demoiselles Paris', value: 'Mes Demoiselles Paris' },
|
|
1283
|
+
{ label: 'Michael Antonio', value: 'Michael Antonio' },
|
|
1284
|
+
{ label: 'Michalsky', value: 'Michalsky' },
|
|
1285
|
+
{ label: 'Michel Perry', value: 'Michel Perry' },
|
|
1286
|
+
{ label: 'Midinette', value: 'Midinette' },
|
|
1287
|
+
{ label: 'Miista', value: 'Miista' },
|
|
1288
|
+
{ label: 'Miki MIALY', value: 'Miki MIALY' },
|
|
1289
|
+
{ label: 'Minelli', value: 'Minelli' },
|
|
1290
|
+
{ label: 'MISBHV', value: 'MISBHV' },
|
|
1291
|
+
{ label: 'Miss Elliette', value: 'Miss Elliette' },
|
|
1292
|
+
{ label: 'Miss Sixty', value: 'Miss Sixty' },
|
|
1293
|
+
{ label: 'Missäy', value: 'Missäy' },
|
|
1294
|
+
{ label: 'Missoni Sport', value: 'Missoni Sport' },
|
|
1295
|
+
{ label: 'MM6', value: 'MM6' },
|
|
1296
|
+
{ label: 'Modström', value: 'Modström' },
|
|
1297
|
+
{ label: 'Moncler', value: 'Moncler' },
|
|
1298
|
+
{ label: 'MONROW', value: 'MONROW' },
|
|
1299
|
+
{ label: 'Morgan De Toi', value: 'Morgan De Toi' },
|
|
1300
|
+
{ label: 'Morris Heritage', value: 'Morris Heritage' },
|
|
1301
|
+
{ label: 'Moss Copenhagen', value: 'Moss Copenhagen' },
|
|
1302
|
+
{ label: 'Motivi', value: 'Motivi' },
|
|
1303
|
+
{ label: 'Mountain Equipment', value: 'Mountain Equipment' },
|
|
1304
|
+
{ label: 'Mountain Works', value: 'Mountain Works' },
|
|
1305
|
+
{ label: 'Moussy', value: 'Moussy' },
|
|
1306
|
+
{ label: 'MQ', value: 'MQ' },
|
|
1307
|
+
{ label: 'Mugler', value: 'Mugler' },
|
|
1308
|
+
{ label: 'MUJI', value: 'MUJI' },
|
|
1309
|
+
{ label: 'NAF NAF', value: 'NAF NAF' },
|
|
1310
|
+
{ label: 'Naja Lauf', value: 'Naja Lauf' },
|
|
1311
|
+
{ label: 'Nanibon', value: 'Nanibon' },
|
|
1312
|
+
{ label: 'Nanso', value: 'Nanso' },
|
|
1313
|
+
{ label: 'Nanushka', value: 'Nanushka' },
|
|
1314
|
+
{ label: 'NAVY BOOT', value: 'NAVY BOOT' },
|
|
1315
|
+
{ label: 'Nebuloni E.', value: 'Nebuloni E.' },
|
|
1316
|
+
{ label: 'Never Denim', value: 'Never Denim' },
|
|
1317
|
+
{ label: 'New York Yankees', value: 'New York Yankees' },
|
|
1318
|
+
{ label: 'New Yorker', value: 'New Yorker' },
|
|
1319
|
+
{ label: 'Next', value: 'Next' },
|
|
1320
|
+
{ label: 'Nicholas Kirkwood', value: 'Nicholas Kirkwood' },
|
|
1321
|
+
{ label: 'Nicholas The Label', value: 'Nicholas The Label' },
|
|
1322
|
+
{ label: 'Nicole Miller', value: 'Nicole Miller' },
|
|
1323
|
+
{ label: 'Nicole Studio', value: 'Nicole Studio' },
|
|
1324
|
+
{ label: 'Nikben', value: 'Nikben' },
|
|
1325
|
+
{ label: 'Nina Ricci', value: 'Nina Ricci' },
|
|
1326
|
+
{ label: 'NN Studio', value: 'NN Studio' },
|
|
1327
|
+
{ label: 'Noisy May', value: 'Noisy May' },
|
|
1328
|
+
{ label: 'Non Sense', value: 'Non Sense' },
|
|
1329
|
+
{ label: 'Norham', value: 'Norham' },
|
|
1330
|
+
{ label: 'Norma Kamali', value: 'Norma Kamali' },
|
|
1331
|
+
{ label: 'NORR', value: 'NORR' },
|
|
1332
|
+
{ label: 'North Bend', value: 'North Bend' },
|
|
1333
|
+
{ label: 'Northbrook', value: 'Northbrook' },
|
|
1334
|
+
{ label: 'NUE by Shani', value: 'NUE by Shani' },
|
|
1335
|
+
{ label: 'Núnoo', value: 'Núnoo' },
|
|
1336
|
+
{ label: 'Nyden', value: 'Nyden' },
|
|
1337
|
+
{ label: 'Nyden x H&M', value: 'Nyden x H&M' },
|
|
1338
|
+
{ label: 'NYDJ', value: 'NYDJ' },
|
|
1339
|
+
{ label: 'O Bag', value: 'O Bag' },
|
|
1340
|
+
{ label: "O'Neill", value: "O'Neill" },
|
|
1341
|
+
{ label: 'OBEY', value: 'OBEY' },
|
|
1342
|
+
{ label: 'Odeur Studios', value: 'Odeur Studios' },
|
|
1343
|
+
{ label: 'Oh Polly', value: 'Oh Polly' },
|
|
1344
|
+
{ label: 'Olars Ulla', value: 'Olars Ulla' },
|
|
1345
|
+
{ label: 'Olé by Koton', value: 'Olé by Koton' },
|
|
1346
|
+
{ label: 'Oliver Peoples', value: 'Oliver Peoples' },
|
|
1347
|
+
{ label: 'One Hundred Stars', value: 'One Hundred Stars' },
|
|
1348
|
+
{ label: 'Original Penguin', value: 'Original Penguin' },
|
|
1349
|
+
{ label: 'Orlebar Brown', value: 'Orlebar Brown' },
|
|
1350
|
+
{ label: 'Oscar of Sweden', value: 'Oscar of Sweden' },
|
|
1351
|
+
{ label: "Ottod'Ame", value: "Ottod'Ame" },
|
|
1352
|
+
{ label: 'Ottway The Label', value: 'Ottway The Label' },
|
|
1353
|
+
{ label: 'Oysho', value: 'Oysho' },
|
|
1354
|
+
{ label: 'Pablo', value: 'Pablo' },
|
|
1355
|
+
{ label: 'Pair Eyewear', value: 'Pair Eyewear' },
|
|
1356
|
+
{ label: 'Pal Zileri', value: 'Pal Zileri' },
|
|
1357
|
+
{ label: 'Palladium Boots', value: 'Palladium Boots' },
|
|
1358
|
+
{ label: 'Palmgrens', value: 'Palmgrens' },
|
|
1359
|
+
{ label: 'Palmroth', value: 'Palmroth' },
|
|
1360
|
+
{ label: 'Paloma Barcelo', value: 'Paloma Barcelo' },
|
|
1361
|
+
{ label: 'Pantanetti', value: 'Pantanetti' },
|
|
1362
|
+
{ label: 'Pantolin', value: 'Pantolin' },
|
|
1363
|
+
{ label: 'Paraboot', value: 'Paraboot' },
|
|
1364
|
+
{ label: 'Parajumpers', value: 'Parajumpers' },
|
|
1365
|
+
{ label: 'Pas de Calais', value: 'Pas de Calais' },
|
|
1366
|
+
{ label: 'Pavement', value: 'Pavement' },
|
|
1367
|
+
{ label: 'Pazuki', value: 'Pazuki' },
|
|
1368
|
+
{ label: 'Pedder Red', value: 'Pedder Red' },
|
|
1369
|
+
{ label: 'Pendleton', value: 'Pendleton' },
|
|
1370
|
+
{ label: 'Persol', value: 'Persol' },
|
|
1371
|
+
{ label: 'Peter Hahn', value: 'Peter Hahn' },
|
|
1372
|
+
{ label: 'Peter Pilotto', value: 'Peter Pilotto' },
|
|
1373
|
+
{ label: 'Petit Bateau', value: 'Petit Bateau' },
|
|
1374
|
+
{ label: 'Philosophy', value: 'Philosophy' },
|
|
1375
|
+
{ label: 'Pia Rucci', value: 'Pia Rucci' },
|
|
1376
|
+
{ label: 'Piazza Sempione', value: 'Piazza Sempione' },
|
|
1377
|
+
{ label: 'Pierre Hardy', value: 'Pierre Hardy' },
|
|
1378
|
+
{ label: 'Pilgrim', value: 'Pilgrim' },
|
|
1379
|
+
{ label: 'Pindiere', value: 'Pindiere' },
|
|
1380
|
+
{ label: 'Pinko', value: 'Pinko' },
|
|
1381
|
+
{ label: 'Pins & Needles', value: 'Pins & Needles' },
|
|
1382
|
+
{ label: 'Plain Vanilla', value: 'Plain Vanilla' },
|
|
1383
|
+
{ label: 'Polar Skate Co.', value: 'Polar Skate Co.' },
|
|
1384
|
+
{ label: 'Pollini', value: 'Pollini' },
|
|
1385
|
+
{ label: 'Pop Trading Company', value: 'Pop Trading Company' },
|
|
1386
|
+
{ label: 'Pour Homme', value: 'Pour Homme' },
|
|
1387
|
+
{ label: 'POW', value: 'POW' },
|
|
1388
|
+
{ label: 'Powell-Peralta', value: 'Powell-Peralta' },
|
|
1389
|
+
{ label: 'Premiata', value: 'Premiata' },
|
|
1390
|
+
{ label: 'Pringle of Scotland', value: 'Pringle of Scotland' },
|
|
1391
|
+
{ label: 'Pro Touch', value: 'Pro Touch' },
|
|
1392
|
+
{ label: 'Proenza Schouler', value: 'Proenza Schouler' },
|
|
1393
|
+
{ label: 'Profuomo', value: 'Profuomo' },
|
|
1394
|
+
{ label: 'Project AJ117', value: 'Project AJ117' },
|
|
1395
|
+
{ label: 'Promod', value: 'Promod' },
|
|
1396
|
+
{ label: 'Public Beware', value: 'Public Beware' },
|
|
1397
|
+
{ label: 'Purificación Garcia', value: 'Purificación Garcia' },
|
|
1398
|
+
{ label: 'Puritan', value: 'Puritan' },
|
|
1399
|
+
{ label: 'Quiksilver', value: 'Quiksilver' },
|
|
1400
|
+
{ label: 'Rabalder', value: 'Rabalder' },
|
|
1401
|
+
{ label: 'Rabeanco', value: 'Rabeanco' },
|
|
1402
|
+
{ label: 'Rabens Saloner', value: 'Rabens Saloner' },
|
|
1403
|
+
{ label: 'Rachel Antonoff', value: 'Rachel Antonoff' },
|
|
1404
|
+
{ label: 'Racil', value: 'Racil' },
|
|
1405
|
+
{ label: 'Raf Simons', value: 'Raf Simons' },
|
|
1406
|
+
{ label: 'Raffinati', value: 'Raffinati' },
|
|
1407
|
+
{ label: 'Rahbek Design', value: 'Rahbek Design' },
|
|
1408
|
+
{ label: 'Rails', value: 'Rails' },
|
|
1409
|
+
{ label: 'Rapha', value: 'Rapha' },
|
|
1410
|
+
{ label: 'RAVN RAVN', value: 'RAVN RAVN' },
|
|
1411
|
+
{ label: 'Raxevsky', value: 'Raxevsky' },
|
|
1412
|
+
{ label: 'RE/DONE', value: 'RE/DONE' },
|
|
1413
|
+
{ label: 'Rebecca Stella', value: 'Rebecca Stella' },
|
|
1414
|
+
{ label: 'Rejina Pyo', value: 'Rejina Pyo' },
|
|
1415
|
+
{ label: 'Represent Clo', value: 'Represent Clo' },
|
|
1416
|
+
{ label: 'Rieker', value: 'Rieker' },
|
|
1417
|
+
{ label: 'Rifat Ozbek', value: 'Rifat Ozbek' },
|
|
1418
|
+
{ label: "Ril's", value: "Ril's" },
|
|
1419
|
+
{ label: 'Ripndip', value: 'Ripndip' },
|
|
1420
|
+
{ label: 'Robert Geller', value: 'Robert Geller' },
|
|
1421
|
+
{ label: 'Roberto Cavalli', value: 'Roberto Cavalli' },
|
|
1422
|
+
{ label: 'roccobarocco', value: 'roccobarocco' },
|
|
1423
|
+
{ label: 'Rock & Republic', value: 'Rock & Republic' },
|
|
1424
|
+
{ label: 'ROCKANDBLUE', value: 'ROCKANDBLUE' },
|
|
1425
|
+
{ label: 'Rolla’s Jeans', value: 'Rolla’s Jeans' },
|
|
1426
|
+
{ label: 'Roo Stockholm', value: 'Roo Stockholm' },
|
|
1427
|
+
{ label: 'Rosner', value: 'Rosner' },
|
|
1428
|
+
{ label: 'Rotate', value: 'Rotate' },
|
|
1429
|
+
{ label: 'Rotation', value: 'Rotation' },
|
|
1430
|
+
{ label: 'Ruffle & Bow', value: 'Ruffle & Bow' },
|
|
1431
|
+
{ label: 'Run & Fly', value: 'Run & Fly' },
|
|
1432
|
+
{ label: 'Rushour', value: 'Rushour' },
|
|
1433
|
+
{ label: 'Ruyisa', value: 'Ruyisa' },
|
|
1434
|
+
{ label: 's.Oliver', value: 's.Oliver' },
|
|
1435
|
+
{ label: 'Sabina Söderberg', value: 'Sabina Söderberg' },
|
|
1436
|
+
{ label: 'Sam Edelman', value: 'Sam Edelman' },
|
|
1437
|
+
{ label: 'Samsonite', value: 'Samsonite' },
|
|
1438
|
+
{ label: 'Sandro Ferrone', value: 'Sandro Ferrone' },
|
|
1439
|
+
{ label: 'Saturdays NYC', value: 'Saturdays NYC' },
|
|
1440
|
+
{ label: 'Scalpers', value: 'Scalpers' },
|
|
1441
|
+
{ label: 'Scampi', value: 'Scampi' },
|
|
1442
|
+
{ label: 'Schuh', value: 'Schuh' },
|
|
1443
|
+
{ label: 'Sea New York', value: 'Sea New York' },
|
|
1444
|
+
{ label: 'Selected', value: 'Selected' },
|
|
1445
|
+
{ label: 'Self-Portrait', value: 'Self-Portrait' },
|
|
1446
|
+
{ label: 'Selma Omari', value: 'Selma Omari' },
|
|
1447
|
+
{ label: 'Seven Seventy', value: 'Seven Seventy' },
|
|
1448
|
+
{ label: 'Sezane', value: 'Sezane' },
|
|
1449
|
+
{ label: 'Shein', value: 'Shein' },
|
|
1450
|
+
{ label: 'Simone Rocha', value: 'Simone Rocha' },
|
|
1451
|
+
{ label: 'Simone Rocha x H&M', value: 'Simone Rocha x H&M' },
|
|
1452
|
+
{ label: 'Simple Wish', value: 'Simple Wish' },
|
|
1453
|
+
{ label: 'Size 8 Needle', value: 'Size 8 Needle' },
|
|
1454
|
+
{ label: 'SKFK', value: 'SKFK' },
|
|
1455
|
+
{ label: 'Slenderella', value: 'Slenderella' },
|
|
1456
|
+
{ label: 'Smiley Vintage', value: 'Smiley Vintage' },
|
|
1457
|
+
{ label: 'Smythson', value: 'Smythson' },
|
|
1458
|
+
{ label: 'Snapback', value: 'Snapback' },
|
|
1459
|
+
{ label: 'Sneaky Steve', value: 'Sneaky Steve' },
|
|
1460
|
+
{ label: 'Snickers Workwear', value: 'Snickers Workwear' },
|
|
1461
|
+
{ label: 'snob.', value: 'snob.' },
|
|
1462
|
+
{ label: 'Soeur', value: 'Soeur' },
|
|
1463
|
+
{ label: 'Soft Grey', value: 'Soft Grey' },
|
|
1464
|
+
{ label: 'Solid', value: 'Solid' },
|
|
1465
|
+
{ label: 'Solo', value: 'Solo' },
|
|
1466
|
+
{ label: 'Soludos', value: 'Soludos' },
|
|
1467
|
+
{ label: 'Sorel', value: 'Sorel' },
|
|
1468
|
+
{ label: 'Souvenir Official', value: 'Souvenir Official' },
|
|
1469
|
+
{ label: 'Soyaconcept', value: 'Soyaconcept' },
|
|
1470
|
+
{ label: 'Spanx', value: 'Spanx' },
|
|
1471
|
+
{ label: 'Sparkle & Fade', value: 'Sparkle & Fade' },
|
|
1472
|
+
{ label: 'Stadium', value: 'Stadium' },
|
|
1473
|
+
{ label: 'Stars & Stripes', value: 'Stars & Stripes' },
|
|
1474
|
+
{ label: 'Start-Rite', value: 'Start-Rite' },
|
|
1475
|
+
{ label: 'Stay', value: 'Stay' },
|
|
1476
|
+
{ label: 'Steinbock', value: 'Steinbock' },
|
|
1477
|
+
{ label: 'Stella McCartney x H&M', value: 'Stella McCartney x H&M' },
|
|
1478
|
+
{ label: 'Steven Alan', value: 'Steven Alan' },
|
|
1479
|
+
{ label: 'Stinaa.J', value: 'Stinaa.J' },
|
|
1480
|
+
{ label: 'Stoffa', value: 'Stoffa' },
|
|
1481
|
+
{ label: 'Storm & Marie', value: 'Storm & Marie' },
|
|
1482
|
+
{ label: 'Street One', value: 'Street One' },
|
|
1483
|
+
{ label: 'Strenesse', value: 'Strenesse' },
|
|
1484
|
+
{ label: 'Ströms', value: 'Ströms' },
|
|
1485
|
+
{ label: 'Sugarhill Brighton', value: 'Sugarhill Brighton' },
|
|
1486
|
+
{ label: 'Sunseeker', value: 'Sunseeker' },
|
|
1487
|
+
{ label: 'Sunspel', value: 'Sunspel' },
|
|
1488
|
+
{ label: 'Supreme', value: 'Supreme' },
|
|
1489
|
+
{ label: 'Surface to Air', value: 'Surface to Air' },
|
|
1490
|
+
{ label: 'Suzy Shier', value: 'Suzy Shier' },
|
|
1491
|
+
{ label: 'Svea', value: 'Svea' },
|
|
1492
|
+
{ label: 'Swarovski', value: 'Swarovski' },
|
|
1493
|
+
{ label: 'Tailor Store', value: 'Tailor Store' },
|
|
1494
|
+
{ label: 'Ted Nicol', value: 'Ted Nicol' },
|
|
1495
|
+
{ label: 'Tenson', value: 'Tenson' },
|
|
1496
|
+
{ label: 'Terranova', value: 'Terranova' },
|
|
1497
|
+
{ label: 'Thakoon', value: 'Thakoon' },
|
|
1498
|
+
{ label: 'The Genuine Leather', value: 'The Genuine Leather' },
|
|
1499
|
+
{ label: 'The Hundreds', value: 'The Hundreds' },
|
|
1500
|
+
{ label: 'The Line By K', value: 'The Line By K' },
|
|
1501
|
+
{ label: 'The Resort Co', value: 'The Resort Co' },
|
|
1502
|
+
{ label: 'The Salvages', value: 'The Salvages' },
|
|
1503
|
+
{ label: 'The Savile Row', value: 'The Savile Row' },
|
|
1504
|
+
{ label: "Theyskens' Theory", value: "Theyskens' Theory" },
|
|
1505
|
+
{ label: 'thom/krom', value: 'thom/krom' },
|
|
1506
|
+
{ label: 'Thomas Sabo', value: 'Thomas Sabo' },
|
|
1507
|
+
{ label: 'Three Sixty Five', value: 'Three Sixty Five' },
|
|
1508
|
+
{ label: 'Tiamo', value: 'Tiamo' },
|
|
1509
|
+
{ label: 'Tiffany & Co.', value: 'Tiffany & Co.' },
|
|
1510
|
+
{ label: 'Tissot', value: 'Tissot' },
|
|
1511
|
+
{ label: 'Tog24', value: 'Tog24' },
|
|
1512
|
+
{ label: 'Toga Pulla', value: 'Toga Pulla' },
|
|
1513
|
+
{ label: 'Tom Ford', value: 'Tom Ford' },
|
|
1514
|
+
{ label: 'Tom Wood Project', value: 'Tom Wood Project' },
|
|
1515
|
+
{ label: 'TOMS', value: 'TOMS' },
|
|
1516
|
+
{ label: 'Tosoni Moda', value: 'Tosoni Moda' },
|
|
1517
|
+
{ label: 'Traffic People', value: 'Traffic People' },
|
|
1518
|
+
{ label: 'Transit', value: 'Transit' },
|
|
1519
|
+
{ label: 'Trench & Coat', value: 'Trench & Coat' },
|
|
1520
|
+
{ label: 'Triumph', value: 'Triumph' },
|
|
1521
|
+
{ label: 'True Religion', value: 'True Religion' },
|
|
1522
|
+
{ label: 'Tsumori Chisato', value: 'Tsumori Chisato' },
|
|
1523
|
+
{ label: 'Two Thirds', value: 'Two Thirds' },
|
|
1524
|
+
{ label: 'Txell Miras', value: 'Txell Miras' },
|
|
1525
|
+
{ label: 'UMA', value: 'UMA' },
|
|
1526
|
+
{ label: 'Umai', value: 'Umai' },
|
|
1527
|
+
{ label: 'Umbro', value: 'Umbro' },
|
|
1528
|
+
{ label: 'Under The Same Sun', value: 'Under The Same Sun' },
|
|
1529
|
+
{ label: 'Ungaro', value: 'Ungaro' },
|
|
1530
|
+
{ label: 'Uniforms for the Dedicated', value: 'Uniforms for the Dedicated' },
|
|
1531
|
+
{ label: 'Universal Works', value: 'Universal Works' },
|
|
1532
|
+
{ label: 'Urban Project', value: 'Urban Project' },
|
|
1533
|
+
{ label: 'Valentino Red', value: 'Valentino Red' },
|
|
1534
|
+
{ label: 'Valleverde', value: 'Valleverde' },
|
|
1535
|
+
{ label: 'Vanessa Wu', value: 'Vanessa Wu' },
|
|
1536
|
+
{ label: 'Vans Girls', value: 'Vans Girls' },
|
|
1537
|
+
{ label: 'Vegetarian Shoes', value: 'Vegetarian Shoes' },
|
|
1538
|
+
{ label: 'Velasca Milano', value: 'Velasca Milano' },
|
|
1539
|
+
{ label: 'Velour by Nostalgi', value: 'Velour by Nostalgi' },
|
|
1540
|
+
{ label: 'Vera Pette', value: 'Vera Pette' },
|
|
1541
|
+
{ label: 'Vera Wang', value: 'Vera Wang' },
|
|
1542
|
+
{ label: 'Vero Cuoio', value: 'Vero Cuoio' },
|
|
1543
|
+
{ label: 'Veronique Branquinho', value: 'Veronique Branquinho' },
|
|
1544
|
+
{ label: 'Vetements', value: 'Vetements' },
|
|
1545
|
+
{ label: 'Victoria Beckham', value: 'Victoria Beckham' },
|
|
1546
|
+
{ label: 'Vince Camuto', value: 'Vince Camuto' },
|
|
1547
|
+
{ label: 'Vivace', value: 'Vivace' },
|
|
1548
|
+
{ label: 'Vivianne Westwood', value: 'Vivianne Westwood' },
|
|
1549
|
+
{ label: 'Voyage Passion', value: 'Voyage Passion' },
|
|
1550
|
+
{ label: 'Wallis', value: 'Wallis' },
|
|
1551
|
+
{ label: 'Weill', value: 'Weill' },
|
|
1552
|
+
{ label: 'Werner', value: 'Werner' },
|
|
1553
|
+
{ label: 'WESTCOAST', value: 'WESTCOAST' },
|
|
1554
|
+
{ label: 'Whistles', value: 'Whistles' },
|
|
1555
|
+
{ label: 'Wish', value: 'Wish' },
|
|
1556
|
+
{ label: 'Wonders', value: 'Wonders' },
|
|
1557
|
+
{ label: 'Woolrich', value: 'Woolrich' },
|
|
1558
|
+
{ label: 'Xandres', value: 'Xandres' },
|
|
1559
|
+
{ label: 'Y3', value: 'Y3' },
|
|
1560
|
+
{ label: 'Yanko', value: 'Yanko' },
|
|
1561
|
+
{ label: 'Yerse', value: 'Yerse' },
|
|
1562
|
+
{ label: 'Ylva Liljefors', value: 'Ylva Liljefors' },
|
|
1563
|
+
{ label: 'Yojhi Yamamoto', value: 'Yojhi Yamamoto' },
|
|
1564
|
+
{ label: 'YRU', value: 'YRU' },
|
|
1565
|
+
{ label: 'Zadig & Voltaire', value: 'Zadig & Voltaire' },
|
|
1566
|
+
{ label: 'Zeropoint', value: 'Zeropoint' },
|
|
1567
|
+
{ label: 'Zeta Zukki', value: 'Zeta Zukki' },
|
|
1568
|
+
{ label: 'Zign', value: 'Zign' },
|
|
1569
|
+
{ label: 'Zucca', value: 'Zucca' },
|
|
1570
|
+
];
|
|
1571
|
+
exports.brands = brands;
|
|
1572
|
+
const colors = [
|
|
1573
|
+
{ label: 'Animal Print', value: 'Animal Print' },
|
|
1574
|
+
{ label: 'Apricot', value: 'Apricot' },
|
|
1575
|
+
{ label: 'Army Green', value: 'Army Green' },
|
|
1576
|
+
{ label: 'Beige', value: 'Beige' },
|
|
1577
|
+
{ label: 'Black', value: 'Black' },
|
|
1578
|
+
{ label: 'Black & White', value: 'Black & White' },
|
|
1579
|
+
{ label: 'Blue', value: 'Blue' },
|
|
1580
|
+
{ label: 'Brown', value: 'Brown' },
|
|
1581
|
+
{ label: 'Burgundy', value: 'Burgundy' },
|
|
1582
|
+
{ label: 'Camouflage', value: 'Camouflage' },
|
|
1583
|
+
{ label: 'Checkered', value: 'Checkered' },
|
|
1584
|
+
{ label: 'Cognac', value: 'Cognac' },
|
|
1585
|
+
{ label: 'Color- block', value: 'Color- block' },
|
|
1586
|
+
{ label: 'Copper ', value: 'Copper ' },
|
|
1587
|
+
{ label: 'Coral', value: 'Coral' },
|
|
1588
|
+
{ label: 'Creme', value: 'Creme' },
|
|
1589
|
+
{ label: 'Dark Brown', value: 'Dark Brown' },
|
|
1590
|
+
{ label: 'Dark Green ', value: 'Dark Green ' },
|
|
1591
|
+
{ label: 'Denim', value: 'Denim' },
|
|
1592
|
+
{ label: 'Dove Blue', value: 'Dove Blue' },
|
|
1593
|
+
{ label: 'Dust Pink', value: 'Dust Pink' },
|
|
1594
|
+
{ label: 'Dusty pink', value: 'Dusty pink' },
|
|
1595
|
+
{ label: 'Ecru', value: 'Ecru' },
|
|
1596
|
+
{ label: 'Floral', value: 'Floral' },
|
|
1597
|
+
{ label: 'Fuchsia', value: 'Fuchsia' },
|
|
1598
|
+
{ label: 'Gold', value: 'Gold' },
|
|
1599
|
+
{ label: 'Green', value: 'Green' },
|
|
1600
|
+
{ label: 'Grey', value: 'Grey' },
|
|
1601
|
+
{ label: 'Khaki', value: 'Khaki' },
|
|
1602
|
+
{ label: 'Klein Blue', value: 'Klein Blue' },
|
|
1603
|
+
{ label: 'Leoprint', value: 'Leoprint' },
|
|
1604
|
+
{ label: 'Light Blue', value: 'Light Blue' },
|
|
1605
|
+
{ label: 'Light Yellow', value: 'Light Yellow' },
|
|
1606
|
+
{ label: 'Lilac', value: 'Lilac' },
|
|
1607
|
+
{ label: 'Livid', value: 'Livid' },
|
|
1608
|
+
{ label: 'Metallic', value: 'Metallic' },
|
|
1609
|
+
{ label: 'Mint', value: 'Mint' },
|
|
1610
|
+
{ label: 'Multi-colored', value: 'Multi-colored' },
|
|
1611
|
+
{ label: 'Mustard', value: 'Mustard' },
|
|
1612
|
+
{ label: 'Navy', value: 'Navy' },
|
|
1613
|
+
{ label: 'Neon', value: 'Neon' },
|
|
1614
|
+
{ label: 'Off-white ', value: 'Off-white ' },
|
|
1615
|
+
{ label: 'Olive Green ', value: 'Olive Green ' },
|
|
1616
|
+
{ label: 'Orange', value: 'Orange' },
|
|
1617
|
+
{ label: 'Patterned', value: 'Patterned' },
|
|
1618
|
+
{ label: 'Pink', value: 'Pink' },
|
|
1619
|
+
{ label: 'Pinstriped', value: 'Pinstriped' },
|
|
1620
|
+
{ label: 'Plaid', value: 'Plaid' },
|
|
1621
|
+
{ label: 'Plum', value: 'Plum' },
|
|
1622
|
+
{ label: 'Polka Dot', value: 'Polka Dot' },
|
|
1623
|
+
{ label: 'Powder Pink', value: 'Powder Pink' },
|
|
1624
|
+
{ label: 'Printed', value: 'Printed' },
|
|
1625
|
+
{ label: 'Purple', value: 'Purple' },
|
|
1626
|
+
{ label: 'Red', value: 'Red' },
|
|
1627
|
+
{ label: 'Rosé', value: 'Rosé' },
|
|
1628
|
+
{ label: 'Rust', value: 'Rust' },
|
|
1629
|
+
{ label: 'Sequins', value: 'Sequins' },
|
|
1630
|
+
{ label: 'Silver', value: 'Silver' },
|
|
1631
|
+
{ label: 'Striped', value: 'Striped' },
|
|
1632
|
+
{ label: 'Tan', value: 'Tan' },
|
|
1633
|
+
{ label: 'Taupe', value: 'Taupe' },
|
|
1634
|
+
{ label: 'Turquoise', value: 'Turquoise' },
|
|
1635
|
+
{ label: 'White', value: 'White' },
|
|
1636
|
+
{ label: 'Yellow', value: 'Yellow' },
|
|
1637
|
+
];
|
|
1638
|
+
exports.colors = colors;
|
|
1639
|
+
const conditions = [
|
|
1640
|
+
{
|
|
1641
|
+
label: 'New with tags',
|
|
1642
|
+
value: 'New with tags',
|
|
1643
|
+
description: 'Straight from the store, with tags.',
|
|
1644
|
+
color: '#cfdfff',
|
|
1645
|
+
},
|
|
1646
|
+
{
|
|
1647
|
+
label: 'Never worn',
|
|
1648
|
+
value: 'Never worn',
|
|
1649
|
+
description: 'Tags are missing but you have never worn this item and it’s never been washed. Shoes have not been used outdoors.',
|
|
1650
|
+
},
|
|
1651
|
+
{
|
|
1652
|
+
label: 'Hardly ever worn',
|
|
1653
|
+
value: 'Hardly ever worn',
|
|
1654
|
+
description: 'This item has been worn 1-2 times, it’s in a very good condition. No visible defects, no smell, no spots, no sweat marks.',
|
|
1655
|
+
},
|
|
1656
|
+
{
|
|
1657
|
+
label: 'Good condition',
|
|
1658
|
+
value: 'Good condition',
|
|
1659
|
+
description: 'This item has been worn over time, but is still well-preserved. Signs of wear is ok, but no defects like smaller stains or holes.',
|
|
1660
|
+
key: 'goodCondition',
|
|
1661
|
+
},
|
|
1662
|
+
{
|
|
1663
|
+
label: 'Fair condition',
|
|
1664
|
+
value: 'Fair condition',
|
|
1665
|
+
description: 'Worn frequently, may have defects like smaller stains or discoloration. Many old vintage items are worn frequently, have their flaws but are still cool! Only criteria: Make sure it has no sweat marks, no big stains or odors.',
|
|
1666
|
+
key: 'fairCondition',
|
|
1667
|
+
},
|
|
1668
|
+
];
|
|
1669
|
+
exports.conditions = conditions;
|
|
1670
|
+
const gender = [
|
|
1671
|
+
{
|
|
1672
|
+
label: 'Woman',
|
|
1673
|
+
value: 'Woman',
|
|
1674
|
+
},
|
|
1675
|
+
{
|
|
1676
|
+
label: 'Man',
|
|
1677
|
+
value: 'Man',
|
|
1678
|
+
},
|
|
1679
|
+
{
|
|
1680
|
+
label: 'Unisex',
|
|
1681
|
+
value: 'Unisex',
|
|
1682
|
+
},
|
|
1683
|
+
];
|
|
1684
|
+
exports.gender = gender;
|
|
1685
|
+
const jeanSizes = [
|
|
1686
|
+
{ label: '24', value: '24' },
|
|
1687
|
+
{ label: '25', value: '25' },
|
|
1688
|
+
{ label: '25/32', value: '25/32' },
|
|
1689
|
+
{ label: '26', value: '26' },
|
|
1690
|
+
{ label: '27', value: '27' },
|
|
1691
|
+
{ label: '27/32', value: '27/32' },
|
|
1692
|
+
{ label: '28', value: '28' },
|
|
1693
|
+
{ label: '28/34', value: '28/34' },
|
|
1694
|
+
{ label: '29/32', value: '29/32' },
|
|
1695
|
+
{ label: '30', value: '30' },
|
|
1696
|
+
{ label: '30/34', value: '30/34' },
|
|
1697
|
+
{ label: '31', value: '31' },
|
|
1698
|
+
{ label: '34/32', value: '34/32' },
|
|
1699
|
+
];
|
|
1700
|
+
exports.jeanSizes = jeanSizes;
|
|
1701
|
+
const shoeSizes = [
|
|
1702
|
+
{ label: '36', value: '36' },
|
|
1703
|
+
{ label: '36.5', value: '36.5' },
|
|
1704
|
+
{ label: '37', value: '37' },
|
|
1705
|
+
{ label: '37.3', value: '37.3' },
|
|
1706
|
+
{ label: '37.5', value: '37.5' },
|
|
1707
|
+
{ label: '38', value: '38' },
|
|
1708
|
+
{ label: '38.5', value: '38.5' },
|
|
1709
|
+
{ label: '39', value: '39' },
|
|
1710
|
+
{ label: '39.5', value: '39.5' },
|
|
1711
|
+
{ label: '40', value: '40' },
|
|
1712
|
+
{ label: '40.5', value: '40.5' },
|
|
1713
|
+
{ label: '41', value: '41' },
|
|
1714
|
+
{ label: '42', value: '42' },
|
|
1715
|
+
{ label: '42.3', value: '42.3' },
|
|
1716
|
+
{ label: '43', value: '43' },
|
|
1717
|
+
{ label: '44', value: '44' },
|
|
1718
|
+
{ label: '44.3', value: '44.3' },
|
|
1719
|
+
{ label: '44.5', value: '44.5' },
|
|
1720
|
+
{ label: '44.6', value: '44.6' },
|
|
1721
|
+
{ label: '45', value: '45' },
|
|
1722
|
+
{ label: '45.3', value: '45.3' },
|
|
1723
|
+
];
|
|
1724
|
+
exports.shoeSizes = shoeSizes;
|
|
1725
|
+
const clothingMaterials = [
|
|
1726
|
+
{
|
|
1727
|
+
label: 'Acetate',
|
|
1728
|
+
value: 'Acetate',
|
|
1729
|
+
key: 'acetate',
|
|
1730
|
+
},
|
|
1731
|
+
{
|
|
1732
|
+
label: 'Acrylic',
|
|
1733
|
+
value: 'Acrylic',
|
|
1734
|
+
key: 'acrylic',
|
|
1735
|
+
},
|
|
1736
|
+
{
|
|
1737
|
+
label: 'Alpaca',
|
|
1738
|
+
value: 'Alpaca',
|
|
1739
|
+
key: 'alpaca',
|
|
1740
|
+
},
|
|
1741
|
+
{
|
|
1742
|
+
label: 'Bamboo',
|
|
1743
|
+
value: 'Bamboo',
|
|
1744
|
+
key: 'bamboo',
|
|
1745
|
+
},
|
|
1746
|
+
{
|
|
1747
|
+
label: 'Cashmere',
|
|
1748
|
+
value: 'Cashmere',
|
|
1749
|
+
key: 'cashmere',
|
|
1750
|
+
},
|
|
1751
|
+
{
|
|
1752
|
+
label: 'Cotton',
|
|
1753
|
+
value: 'Cotton',
|
|
1754
|
+
key: 'cotton',
|
|
1755
|
+
},
|
|
1756
|
+
{
|
|
1757
|
+
label: 'Cupro',
|
|
1758
|
+
value: 'Cupro',
|
|
1759
|
+
key: 'cupro',
|
|
1760
|
+
},
|
|
1761
|
+
{
|
|
1762
|
+
label: 'Down',
|
|
1763
|
+
value: 'Down',
|
|
1764
|
+
key: 'down',
|
|
1765
|
+
},
|
|
1766
|
+
{
|
|
1767
|
+
label: 'Elasthane',
|
|
1768
|
+
value: 'Elasthane',
|
|
1769
|
+
key: 'cottonElasthane',
|
|
1770
|
+
},
|
|
1771
|
+
{
|
|
1772
|
+
label: 'Feather',
|
|
1773
|
+
value: 'Feather',
|
|
1774
|
+
key: 'feather',
|
|
1775
|
+
},
|
|
1776
|
+
{
|
|
1777
|
+
label: 'Fur',
|
|
1778
|
+
value: 'Fur',
|
|
1779
|
+
key: 'fur',
|
|
1780
|
+
},
|
|
1781
|
+
{
|
|
1782
|
+
label: 'Hemp',
|
|
1783
|
+
value: 'Hemp',
|
|
1784
|
+
key: 'hemp',
|
|
1785
|
+
},
|
|
1786
|
+
{
|
|
1787
|
+
label: 'Leather',
|
|
1788
|
+
value: 'Leather',
|
|
1789
|
+
key: 'leather',
|
|
1790
|
+
},
|
|
1791
|
+
{
|
|
1792
|
+
label: 'Linen',
|
|
1793
|
+
value: 'Linen',
|
|
1794
|
+
key: 'linen',
|
|
1795
|
+
},
|
|
1796
|
+
{
|
|
1797
|
+
label: 'Lurex',
|
|
1798
|
+
value: 'Lurex',
|
|
1799
|
+
key: 'lurex',
|
|
1800
|
+
},
|
|
1801
|
+
{
|
|
1802
|
+
label: 'Lycra',
|
|
1803
|
+
value: 'Lycra',
|
|
1804
|
+
key: 'lycra',
|
|
1805
|
+
},
|
|
1806
|
+
{
|
|
1807
|
+
label: 'Lyocel',
|
|
1808
|
+
value: 'Lyocel',
|
|
1809
|
+
key: 'lyocel',
|
|
1810
|
+
},
|
|
1811
|
+
{
|
|
1812
|
+
label: 'Metallic Fibers',
|
|
1813
|
+
value: 'metallicFibers',
|
|
1814
|
+
key: 'metallicFibers',
|
|
1815
|
+
},
|
|
1816
|
+
{
|
|
1817
|
+
label: 'Missing Material',
|
|
1818
|
+
value: 'missingMaterial',
|
|
1819
|
+
key: 'missingMaterial',
|
|
1820
|
+
},
|
|
1821
|
+
{
|
|
1822
|
+
label: 'Modal',
|
|
1823
|
+
value: 'Modal',
|
|
1824
|
+
key: 'modal',
|
|
1825
|
+
},
|
|
1826
|
+
{
|
|
1827
|
+
label: 'Mohair',
|
|
1828
|
+
value: 'Mohair',
|
|
1829
|
+
key: 'mohair',
|
|
1830
|
+
},
|
|
1831
|
+
{
|
|
1832
|
+
label: 'Nylon',
|
|
1833
|
+
value: 'Nylon',
|
|
1834
|
+
key: 'nylon',
|
|
1835
|
+
},
|
|
1836
|
+
{
|
|
1837
|
+
label: 'Polyamide',
|
|
1838
|
+
value: 'Polyamide',
|
|
1839
|
+
key: 'polyamide',
|
|
1840
|
+
},
|
|
1841
|
+
{
|
|
1842
|
+
label: 'Polyester',
|
|
1843
|
+
value: 'Polyester',
|
|
1844
|
+
key: 'polyester',
|
|
1845
|
+
},
|
|
1846
|
+
{
|
|
1847
|
+
label: 'Polyurethane',
|
|
1848
|
+
value: 'Polyurethane',
|
|
1849
|
+
key: 'polyurethane ',
|
|
1850
|
+
},
|
|
1851
|
+
{
|
|
1852
|
+
label: 'Rami',
|
|
1853
|
+
value: 'Rami',
|
|
1854
|
+
key: 'rami',
|
|
1855
|
+
},
|
|
1856
|
+
{
|
|
1857
|
+
label: 'Rayon',
|
|
1858
|
+
value: 'Rayon',
|
|
1859
|
+
key: 'rayon',
|
|
1860
|
+
},
|
|
1861
|
+
{
|
|
1862
|
+
label: 'Silk',
|
|
1863
|
+
value: 'Silk',
|
|
1864
|
+
key: 'silk',
|
|
1865
|
+
},
|
|
1866
|
+
{
|
|
1867
|
+
label: 'Spandex',
|
|
1868
|
+
value: 'Spandex',
|
|
1869
|
+
key: 'spandex',
|
|
1870
|
+
},
|
|
1871
|
+
{
|
|
1872
|
+
label: 'Suede',
|
|
1873
|
+
value: 'Suede',
|
|
1874
|
+
key: 'suede',
|
|
1875
|
+
},
|
|
1876
|
+
{
|
|
1877
|
+
label: 'Synthetic',
|
|
1878
|
+
value: 'Synthetic',
|
|
1879
|
+
key: 'synthetic',
|
|
1880
|
+
},
|
|
1881
|
+
{
|
|
1882
|
+
label: 'Tencel',
|
|
1883
|
+
value: 'Tencel',
|
|
1884
|
+
key: 'tencel',
|
|
1885
|
+
},
|
|
1886
|
+
{
|
|
1887
|
+
label: 'Tweed',
|
|
1888
|
+
value: 'Tweed',
|
|
1889
|
+
key: 'tweed',
|
|
1890
|
+
},
|
|
1891
|
+
{
|
|
1892
|
+
label: 'Viscose',
|
|
1893
|
+
value: 'Viscose',
|
|
1894
|
+
key: 'viscose',
|
|
1895
|
+
},
|
|
1896
|
+
{
|
|
1897
|
+
label: 'Wool',
|
|
1898
|
+
value: 'Wool',
|
|
1899
|
+
key: 'wool',
|
|
1900
|
+
},
|
|
1901
|
+
];
|
|
1902
|
+
exports.clothingMaterials = clothingMaterials;
|
|
1903
|
+
const productCategories = [
|
|
1904
|
+
{
|
|
1905
|
+
label: 'Clothing',
|
|
1906
|
+
value: 'Clothing',
|
|
1907
|
+
color: '#cfdfff',
|
|
1908
|
+
},
|
|
1909
|
+
{
|
|
1910
|
+
label: 'Shoes',
|
|
1911
|
+
value: 'Shoes',
|
|
1912
|
+
color: '#d0f0fd',
|
|
1913
|
+
},
|
|
1914
|
+
{
|
|
1915
|
+
label: 'Bags',
|
|
1916
|
+
value: 'Bags',
|
|
1917
|
+
color: '#d0f0fd',
|
|
1918
|
+
},
|
|
1919
|
+
{
|
|
1920
|
+
label: 'Accessories',
|
|
1921
|
+
value: 'Accessories',
|
|
1922
|
+
color: '#d0f0fd',
|
|
1923
|
+
},
|
|
1924
|
+
{
|
|
1925
|
+
label: 'Jewelry',
|
|
1926
|
+
value: 'Jewelry',
|
|
1927
|
+
color: '#d0f0fd',
|
|
1928
|
+
},
|
|
1929
|
+
];
|
|
1930
|
+
exports.productCategories = productCategories;
|
|
1931
|
+
const clothing = [
|
|
1932
|
+
{
|
|
1933
|
+
label: 'Athletic',
|
|
1934
|
+
value: 'Athletic',
|
|
1935
|
+
styles: [
|
|
1936
|
+
'Hoodies',
|
|
1937
|
+
'Jacket',
|
|
1938
|
+
'Joggers',
|
|
1939
|
+
'Leggings',
|
|
1940
|
+
'Outerwear',
|
|
1941
|
+
'Pants',
|
|
1942
|
+
'T-Shirt',
|
|
1943
|
+
'Shorts',
|
|
1944
|
+
'Sports Bras',
|
|
1945
|
+
'Sweater',
|
|
1946
|
+
'Sweatshirt',
|
|
1947
|
+
'Swimsuit',
|
|
1948
|
+
'Tank Tops',
|
|
1949
|
+
'Top',
|
|
1950
|
+
],
|
|
1951
|
+
},
|
|
1952
|
+
{
|
|
1953
|
+
label: 'Blazer',
|
|
1954
|
+
value: 'Blazer',
|
|
1955
|
+
styles: ['Single Breasted Jacket', 'Suit', 'Tuxedo'],
|
|
1956
|
+
},
|
|
1957
|
+
{
|
|
1958
|
+
label: 'Blouse',
|
|
1959
|
+
value: 'Blouse',
|
|
1960
|
+
styles: [],
|
|
1961
|
+
},
|
|
1962
|
+
{
|
|
1963
|
+
label: 'Dress',
|
|
1964
|
+
value: 'Dress',
|
|
1965
|
+
styles: [
|
|
1966
|
+
'A Line',
|
|
1967
|
+
'Asymmetrical',
|
|
1968
|
+
'Bias',
|
|
1969
|
+
'Cocktail',
|
|
1970
|
+
'Denim',
|
|
1971
|
+
'Empire',
|
|
1972
|
+
'Evening',
|
|
1973
|
+
'Gown',
|
|
1974
|
+
'Halterneck',
|
|
1975
|
+
'Kaftan',
|
|
1976
|
+
'Kimono',
|
|
1977
|
+
'Knee Length',
|
|
1978
|
+
'Knitted',
|
|
1979
|
+
'Lace',
|
|
1980
|
+
'Maxi',
|
|
1981
|
+
'Midi',
|
|
1982
|
+
'Mini',
|
|
1983
|
+
'Net',
|
|
1984
|
+
'Off-Shoulder',
|
|
1985
|
+
'Patterned',
|
|
1986
|
+
'Pencil',
|
|
1987
|
+
'Pleated',
|
|
1988
|
+
'Puff Sleeve',
|
|
1989
|
+
'Relaxed',
|
|
1990
|
+
'Shirt',
|
|
1991
|
+
'Sleeveless',
|
|
1992
|
+
'Slip',
|
|
1993
|
+
'Structural',
|
|
1994
|
+
'Sweatshirt',
|
|
1995
|
+
'Vintage',
|
|
1996
|
+
'V-Neck',
|
|
1997
|
+
'Wrap',
|
|
1998
|
+
],
|
|
1999
|
+
},
|
|
2000
|
+
{
|
|
2001
|
+
label: 'Jeans',
|
|
2002
|
+
value: 'Jeans',
|
|
2003
|
+
styles: [
|
|
2004
|
+
'Baggy',
|
|
2005
|
+
'Balloon',
|
|
2006
|
+
'Boot Leg',
|
|
2007
|
+
'Boyfriend',
|
|
2008
|
+
'Corduroy',
|
|
2009
|
+
'Cropped',
|
|
2010
|
+
'Culottes',
|
|
2011
|
+
'Flared',
|
|
2012
|
+
'High Waist',
|
|
2013
|
+
'Loose',
|
|
2014
|
+
'Mom Jeans',
|
|
2015
|
+
'Overalls',
|
|
2016
|
+
'Regular',
|
|
2017
|
+
'Skinny',
|
|
2018
|
+
'Slim Fit',
|
|
2019
|
+
'Straight Leg',
|
|
2020
|
+
'Tapered',
|
|
2021
|
+
'Vintage',
|
|
2022
|
+
'Wide Leg',
|
|
2023
|
+
],
|
|
2024
|
+
},
|
|
2025
|
+
{
|
|
2026
|
+
label: 'Jumpsuit',
|
|
2027
|
+
value: 'Jumpsuit',
|
|
2028
|
+
styles: ['Denim', 'Evening', 'Full Length', 'Mini', 'Playsuit'],
|
|
2029
|
+
},
|
|
2030
|
+
{
|
|
2031
|
+
label: 'Knitwear',
|
|
2032
|
+
value: 'Knitwear',
|
|
2033
|
+
styles: [
|
|
2034
|
+
'Cardigan',
|
|
2035
|
+
'Cashmere',
|
|
2036
|
+
'Collar',
|
|
2037
|
+
'Crewneck',
|
|
2038
|
+
'Dress',
|
|
2039
|
+
'Hoodie',
|
|
2040
|
+
'Long Sleeve',
|
|
2041
|
+
'Merino',
|
|
2042
|
+
'Pik\u00e9',
|
|
2043
|
+
'Polo Shirt',
|
|
2044
|
+
'Puff Sleeve',
|
|
2045
|
+
'Short Sleeve',
|
|
2046
|
+
'Sweater',
|
|
2047
|
+
'Top',
|
|
2048
|
+
'Turtleneck',
|
|
2049
|
+
'Vest',
|
|
2050
|
+
'V-Neck',
|
|
2051
|
+
'Zip Up',
|
|
2052
|
+
],
|
|
2053
|
+
},
|
|
2054
|
+
{
|
|
2055
|
+
label: 'Outerwear',
|
|
2056
|
+
value: 'Outerwear',
|
|
2057
|
+
styles: [
|
|
2058
|
+
'Aviator',
|
|
2059
|
+
'Blazer',
|
|
2060
|
+
'Bomber Jacket',
|
|
2061
|
+
'Boucl\u00e9 Jacket',
|
|
2062
|
+
'Cape',
|
|
2063
|
+
'Cape Coat',
|
|
2064
|
+
'Coat',
|
|
2065
|
+
'Corduroy Jacket',
|
|
2066
|
+
'Cropped Jacket',
|
|
2067
|
+
'Denim Jacket',
|
|
2068
|
+
'Down Jacket',
|
|
2069
|
+
'Eco Leather',
|
|
2070
|
+
'Faux Fur Jacket',
|
|
2071
|
+
'Fleece Jacket',
|
|
2072
|
+
'Fur Coat',
|
|
2073
|
+
'Jacket',
|
|
2074
|
+
'Kimono',
|
|
2075
|
+
'Leather Jacket',
|
|
2076
|
+
'Linen',
|
|
2077
|
+
'Longline Jacket',
|
|
2078
|
+
'Overshirt',
|
|
2079
|
+
'Parka',
|
|
2080
|
+
'Peacoat',
|
|
2081
|
+
'Performance Jacket',
|
|
2082
|
+
'Poncho',
|
|
2083
|
+
'Puffer',
|
|
2084
|
+
'Rain Coat',
|
|
2085
|
+
'Shearling and Fur',
|
|
2086
|
+
'Shirt Jacket',
|
|
2087
|
+
'Short Jacket',
|
|
2088
|
+
'Suede Jacket',
|
|
2089
|
+
'Teddy Jacket',
|
|
2090
|
+
'Trench Coat',
|
|
2091
|
+
'Tweed Jacket',
|
|
2092
|
+
'Utility Jacket',
|
|
2093
|
+
'Vest',
|
|
2094
|
+
'Waistcoat',
|
|
2095
|
+
'Windbreaker Jacket',
|
|
2096
|
+
'Wool Jacket',
|
|
2097
|
+
],
|
|
2098
|
+
},
|
|
2099
|
+
{
|
|
2100
|
+
label: 'Pants',
|
|
2101
|
+
value: 'Pants',
|
|
2102
|
+
styles: [
|
|
2103
|
+
'Athletic',
|
|
2104
|
+
'Cargo',
|
|
2105
|
+
'Chino',
|
|
2106
|
+
'Corduroy',
|
|
2107
|
+
'Cropped',
|
|
2108
|
+
'Culottes',
|
|
2109
|
+
'Dress',
|
|
2110
|
+
'Faux Leather',
|
|
2111
|
+
'Flare',
|
|
2112
|
+
'High Waist',
|
|
2113
|
+
'Joggers',
|
|
2114
|
+
'Knit',
|
|
2115
|
+
'Leather',
|
|
2116
|
+
'Leggings',
|
|
2117
|
+
'Linen',
|
|
2118
|
+
'Loose',
|
|
2119
|
+
'Relaxed',
|
|
2120
|
+
'Satin',
|
|
2121
|
+
'Set',
|
|
2122
|
+
'Shorts',
|
|
2123
|
+
'Skinny',
|
|
2124
|
+
'Slacks',
|
|
2125
|
+
'Slim Fit',
|
|
2126
|
+
'Straight Leg',
|
|
2127
|
+
'Suede',
|
|
2128
|
+
'Suit',
|
|
2129
|
+
'Sweatpants',
|
|
2130
|
+
'Tapered',
|
|
2131
|
+
'Track Pants',
|
|
2132
|
+
'Training',
|
|
2133
|
+
'Tuxedo',
|
|
2134
|
+
'Velvet',
|
|
2135
|
+
'Wide Leg',
|
|
2136
|
+
],
|
|
2137
|
+
},
|
|
2138
|
+
{
|
|
2139
|
+
label: 'Shirts',
|
|
2140
|
+
value: 'Shirts',
|
|
2141
|
+
styles: [
|
|
2142
|
+
'Checkered',
|
|
2143
|
+
'Classic',
|
|
2144
|
+
'Corduroy',
|
|
2145
|
+
'Cotton',
|
|
2146
|
+
'Denim',
|
|
2147
|
+
'Dress Shirt',
|
|
2148
|
+
'Embroidered',
|
|
2149
|
+
'Kaftan',
|
|
2150
|
+
'Linen',
|
|
2151
|
+
'Long Sleeve',
|
|
2152
|
+
'Overshirt',
|
|
2153
|
+
'Pik\u00e9',
|
|
2154
|
+
'Set',
|
|
2155
|
+
'Shirt',
|
|
2156
|
+
'Short Sleeve',
|
|
2157
|
+
'Sleeveless',
|
|
2158
|
+
'T-Shirt',
|
|
2159
|
+
'Top',
|
|
2160
|
+
],
|
|
2161
|
+
},
|
|
2162
|
+
{
|
|
2163
|
+
label: 'Shirts and Blouses',
|
|
2164
|
+
value: 'Shirts and Blouses',
|
|
2165
|
+
styles: [
|
|
2166
|
+
'Blouse',
|
|
2167
|
+
'Body',
|
|
2168
|
+
'Cropped Blouse',
|
|
2169
|
+
'Cropped Shirt',
|
|
2170
|
+
'Denim Shirt',
|
|
2171
|
+
'Dress Shirt',
|
|
2172
|
+
'Jacket',
|
|
2173
|
+
'Kaftan',
|
|
2174
|
+
'Kimono',
|
|
2175
|
+
'Leather',
|
|
2176
|
+
'Leather Shirt',
|
|
2177
|
+
'Long Sleeve',
|
|
2178
|
+
'Longline Shirt',
|
|
2179
|
+
'Overshirt',
|
|
2180
|
+
'Oversize',
|
|
2181
|
+
'Oxford',
|
|
2182
|
+
'Patterned',
|
|
2183
|
+
'Pik\u00e9',
|
|
2184
|
+
'Polo Shirt',
|
|
2185
|
+
'Robe',
|
|
2186
|
+
'Set',
|
|
2187
|
+
'Shirt',
|
|
2188
|
+
'Short Sleeve',
|
|
2189
|
+
'Sleveless',
|
|
2190
|
+
'Top',
|
|
2191
|
+
'T-Shirt',
|
|
2192
|
+
'Turtleneck',
|
|
2193
|
+
'Vest',
|
|
2194
|
+
'V-Neck',
|
|
2195
|
+
'Waist Coat',
|
|
2196
|
+
'Wrap Blouse',
|
|
2197
|
+
],
|
|
2198
|
+
},
|
|
2199
|
+
{
|
|
2200
|
+
label: 'Shorts',
|
|
2201
|
+
value: 'Shorts',
|
|
2202
|
+
styles: ['Cargo', 'Casual', 'City', 'Denim', 'Mini', 'Overall', 'Paper Bag', 'Set'],
|
|
2203
|
+
},
|
|
2204
|
+
{
|
|
2205
|
+
label: 'Skirt',
|
|
2206
|
+
value: 'Skirt',
|
|
2207
|
+
styles: [
|
|
2208
|
+
'A-Line',
|
|
2209
|
+
'Asymmetrical',
|
|
2210
|
+
'Denim',
|
|
2211
|
+
'Knee Length',
|
|
2212
|
+
'Leather',
|
|
2213
|
+
'Maxi',
|
|
2214
|
+
'Midi',
|
|
2215
|
+
'Mini',
|
|
2216
|
+
'Pencil',
|
|
2217
|
+
'Pleated',
|
|
2218
|
+
'Puffy',
|
|
2219
|
+
'Ruffled',
|
|
2220
|
+
'Sequin',
|
|
2221
|
+
'Suede',
|
|
2222
|
+
'Tule',
|
|
2223
|
+
'Wrap',
|
|
2224
|
+
],
|
|
2225
|
+
},
|
|
2226
|
+
{
|
|
2227
|
+
label: 'Suit Jacket',
|
|
2228
|
+
value: 'Suit Jacket',
|
|
2229
|
+
styles: [
|
|
2230
|
+
'Blazer',
|
|
2231
|
+
'Blazer Set',
|
|
2232
|
+
'Boucl\u00e9 Jacket',
|
|
2233
|
+
'Corduroy',
|
|
2234
|
+
'Cropped Blazer',
|
|
2235
|
+
'Double Breasted Jacket',
|
|
2236
|
+
'Jacket',
|
|
2237
|
+
'Kimono',
|
|
2238
|
+
'Lace Set',
|
|
2239
|
+
'Long Fur Coat',
|
|
2240
|
+
'Longline Blazer',
|
|
2241
|
+
'Poncho',
|
|
2242
|
+
'Set',
|
|
2243
|
+
'Short Jacket',
|
|
2244
|
+
'Single Breasted Jacket',
|
|
2245
|
+
'Suit',
|
|
2246
|
+
'Tuxedo',
|
|
2247
|
+
'Tweed Jacket',
|
|
2248
|
+
'Velvet Blazer',
|
|
2249
|
+
'Vest',
|
|
2250
|
+
'Vintage',
|
|
2251
|
+
'Waistcoat',
|
|
2252
|
+
'Wrap Blazer',
|
|
2253
|
+
],
|
|
2254
|
+
},
|
|
2255
|
+
{
|
|
2256
|
+
label: 'Sweater',
|
|
2257
|
+
value: 'Sweater',
|
|
2258
|
+
styles: [],
|
|
2259
|
+
},
|
|
2260
|
+
{
|
|
2261
|
+
label: 'Sweatshirt',
|
|
2262
|
+
value: 'Sweatshirt',
|
|
2263
|
+
styles: [
|
|
2264
|
+
'Crewneck',
|
|
2265
|
+
'Cropped',
|
|
2266
|
+
'Hoodie',
|
|
2267
|
+
'Jumper',
|
|
2268
|
+
'Polo Shirt',
|
|
2269
|
+
'Puff Sleeve',
|
|
2270
|
+
'Sleeveless',
|
|
2271
|
+
'Sweatshirt',
|
|
2272
|
+
'Teddy',
|
|
2273
|
+
'Turtleneck',
|
|
2274
|
+
'V-Neck',
|
|
2275
|
+
'Zip Hoodie',
|
|
2276
|
+
'Zip Up',
|
|
2277
|
+
],
|
|
2278
|
+
},
|
|
2279
|
+
{
|
|
2280
|
+
label: 'T-Shirt',
|
|
2281
|
+
value: 'T-Shirt',
|
|
2282
|
+
styles: [
|
|
2283
|
+
'Athletic',
|
|
2284
|
+
'Body',
|
|
2285
|
+
'Cropped',
|
|
2286
|
+
'Long Sleeve',
|
|
2287
|
+
'Pik\u00e9',
|
|
2288
|
+
'Puff Sleeve',
|
|
2289
|
+
'Short Sleeve',
|
|
2290
|
+
'Sleeveless',
|
|
2291
|
+
'Top',
|
|
2292
|
+
'Vest',
|
|
2293
|
+
'V-Neck',
|
|
2294
|
+
],
|
|
2295
|
+
},
|
|
2296
|
+
{
|
|
2297
|
+
label: 'Tank Top',
|
|
2298
|
+
value: 'Tank Top',
|
|
2299
|
+
styles: [],
|
|
2300
|
+
},
|
|
2301
|
+
{
|
|
2302
|
+
label: 'Top',
|
|
2303
|
+
value: 'Top',
|
|
2304
|
+
styles: ['Cashmere', 'Top'],
|
|
2305
|
+
},
|
|
2306
|
+
];
|
|
2307
|
+
exports.clothing = clothing;
|
|
2308
|
+
const mensClothing = [
|
|
2309
|
+
{
|
|
2310
|
+
label: 'Athletic',
|
|
2311
|
+
value: 'Athletic',
|
|
2312
|
+
styles: [
|
|
2313
|
+
'Hoodies',
|
|
2314
|
+
'Jacket',
|
|
2315
|
+
'Joggers',
|
|
2316
|
+
'Leggings',
|
|
2317
|
+
'Outerwear',
|
|
2318
|
+
'Pants',
|
|
2319
|
+
'T-Shirt',
|
|
2320
|
+
'Shorts',
|
|
2321
|
+
'Sweater',
|
|
2322
|
+
'Sweatshirt',
|
|
2323
|
+
'Tank Tops',
|
|
2324
|
+
'Top',
|
|
2325
|
+
],
|
|
2326
|
+
},
|
|
2327
|
+
{
|
|
2328
|
+
label: 'Blazer',
|
|
2329
|
+
value: 'Blazer',
|
|
2330
|
+
styles: ['Single Breasted Jacket', 'Suit', 'Tuxedo'],
|
|
2331
|
+
},
|
|
2332
|
+
{
|
|
2333
|
+
label: 'Dress',
|
|
2334
|
+
value: 'Dress',
|
|
2335
|
+
styles: ['Kaftan', 'Kimono'],
|
|
2336
|
+
},
|
|
2337
|
+
{
|
|
2338
|
+
label: 'Jeans',
|
|
2339
|
+
value: 'Jeans',
|
|
2340
|
+
styles: [
|
|
2341
|
+
'Baggy',
|
|
2342
|
+
'Balloon',
|
|
2343
|
+
'Boot Leg',
|
|
2344
|
+
'Corduroy',
|
|
2345
|
+
'Cropped',
|
|
2346
|
+
'Culottes',
|
|
2347
|
+
'Flared',
|
|
2348
|
+
'High Waist',
|
|
2349
|
+
'Loose',
|
|
2350
|
+
'Overalls',
|
|
2351
|
+
'Regular',
|
|
2352
|
+
'Skinny',
|
|
2353
|
+
'Slim Fit',
|
|
2354
|
+
'Straight Leg',
|
|
2355
|
+
'Tapered',
|
|
2356
|
+
'Vintage',
|
|
2357
|
+
'Wide Leg',
|
|
2358
|
+
],
|
|
2359
|
+
},
|
|
2360
|
+
{
|
|
2361
|
+
label: 'Jumpsuit',
|
|
2362
|
+
value: 'Jumpsuit',
|
|
2363
|
+
styles: ['Denim', 'Full Length', 'Playsuit'],
|
|
2364
|
+
},
|
|
2365
|
+
{
|
|
2366
|
+
label: 'Knitwear',
|
|
2367
|
+
value: 'Knitwear',
|
|
2368
|
+
styles: [
|
|
2369
|
+
'Cardigan',
|
|
2370
|
+
'Cashmere',
|
|
2371
|
+
'Collar',
|
|
2372
|
+
'Crewneck',
|
|
2373
|
+
'Hoodie',
|
|
2374
|
+
'Long Sleeve',
|
|
2375
|
+
'Merino',
|
|
2376
|
+
'Pik\u00e9',
|
|
2377
|
+
'Polo Shirt',
|
|
2378
|
+
'Short Sleeve',
|
|
2379
|
+
'Sweater',
|
|
2380
|
+
'Top',
|
|
2381
|
+
'Turtleneck',
|
|
2382
|
+
'Vest',
|
|
2383
|
+
'V-Neck',
|
|
2384
|
+
'Zip Up',
|
|
2385
|
+
],
|
|
2386
|
+
},
|
|
2387
|
+
{
|
|
2388
|
+
label: 'Outerwear',
|
|
2389
|
+
value: 'Outerwear',
|
|
2390
|
+
styles: [
|
|
2391
|
+
'Aviator',
|
|
2392
|
+
'Blazer',
|
|
2393
|
+
'Bomber Jacket',
|
|
2394
|
+
'Boucl\u00e9 Jacket',
|
|
2395
|
+
'Cape',
|
|
2396
|
+
'Cape Coat',
|
|
2397
|
+
'Coat',
|
|
2398
|
+
'Corduroy Jacket',
|
|
2399
|
+
'Denim Jacket',
|
|
2400
|
+
'Down Jacket',
|
|
2401
|
+
'Eco Leather',
|
|
2402
|
+
'Faux Fur Jacket',
|
|
2403
|
+
'Fleece Jacket',
|
|
2404
|
+
'Fur Coat',
|
|
2405
|
+
'Jacket',
|
|
2406
|
+
'Kimono',
|
|
2407
|
+
'Leather Jacket',
|
|
2408
|
+
'Linen',
|
|
2409
|
+
'Longline Jacket',
|
|
2410
|
+
'Overshirt',
|
|
2411
|
+
'Parka',
|
|
2412
|
+
'Peacoat',
|
|
2413
|
+
'Performance Jacket',
|
|
2414
|
+
'Poncho',
|
|
2415
|
+
'Puffer',
|
|
2416
|
+
'Rain Coat',
|
|
2417
|
+
'Shearling and Fur',
|
|
2418
|
+
'Shirt Jacket',
|
|
2419
|
+
'Short Jacket',
|
|
2420
|
+
'Suede Jacket',
|
|
2421
|
+
'Teddy Jacket',
|
|
2422
|
+
'Trench Coat',
|
|
2423
|
+
'Tweed Jacket',
|
|
2424
|
+
'Utility Jacket',
|
|
2425
|
+
'Vest',
|
|
2426
|
+
'Waistcoat',
|
|
2427
|
+
'Windbreaker Jacket',
|
|
2428
|
+
'Wool Jacket',
|
|
2429
|
+
],
|
|
2430
|
+
},
|
|
2431
|
+
{
|
|
2432
|
+
label: 'Pants',
|
|
2433
|
+
value: 'Pants',
|
|
2434
|
+
styles: [
|
|
2435
|
+
'Athletic',
|
|
2436
|
+
'Cargo',
|
|
2437
|
+
'Chino',
|
|
2438
|
+
'Corduroy',
|
|
2439
|
+
'Cropped',
|
|
2440
|
+
'Culottes',
|
|
2441
|
+
'Dress',
|
|
2442
|
+
'Faux Leather',
|
|
2443
|
+
'Flare',
|
|
2444
|
+
'High Waist',
|
|
2445
|
+
'Joggers',
|
|
2446
|
+
'Knit',
|
|
2447
|
+
'Leather',
|
|
2448
|
+
'Linen',
|
|
2449
|
+
'Loose',
|
|
2450
|
+
'Relaxed',
|
|
2451
|
+
'Set',
|
|
2452
|
+
'Shorts',
|
|
2453
|
+
'Skinny',
|
|
2454
|
+
'Slacks',
|
|
2455
|
+
'Slim Fit',
|
|
2456
|
+
'Straight Leg',
|
|
2457
|
+
'Suede',
|
|
2458
|
+
'Suit',
|
|
2459
|
+
'Sweatpants',
|
|
2460
|
+
'Tapered',
|
|
2461
|
+
'Track Pants',
|
|
2462
|
+
'Training',
|
|
2463
|
+
'Tuxedo',
|
|
2464
|
+
'Velvet',
|
|
2465
|
+
'Wide Leg',
|
|
2466
|
+
],
|
|
2467
|
+
},
|
|
2468
|
+
{
|
|
2469
|
+
label: 'Shirts',
|
|
2470
|
+
value: 'Shirts',
|
|
2471
|
+
styles: [
|
|
2472
|
+
'Checkered',
|
|
2473
|
+
'Classic',
|
|
2474
|
+
'Corduroy',
|
|
2475
|
+
'Cotton',
|
|
2476
|
+
'Denim',
|
|
2477
|
+
'Dress Shirt',
|
|
2478
|
+
'Embroidered',
|
|
2479
|
+
'Kaftan',
|
|
2480
|
+
'Linen',
|
|
2481
|
+
'Long Sleeve',
|
|
2482
|
+
'Oxford',
|
|
2483
|
+
'Overshirt',
|
|
2484
|
+
'Pik\u00e9',
|
|
2485
|
+
'Set',
|
|
2486
|
+
'Shirt',
|
|
2487
|
+
'Short Sleeve',
|
|
2488
|
+
'Sleeveless',
|
|
2489
|
+
'T-Shirt',
|
|
2490
|
+
'Top',
|
|
2491
|
+
],
|
|
2492
|
+
},
|
|
2493
|
+
{
|
|
2494
|
+
label: 'Shirts and Blouses',
|
|
2495
|
+
value: 'Shirts and Blouses',
|
|
2496
|
+
styles: ['T-Shirt'],
|
|
2497
|
+
},
|
|
2498
|
+
{
|
|
2499
|
+
label: 'Shorts',
|
|
2500
|
+
value: 'Shorts',
|
|
2501
|
+
styles: ['Cargo', 'Casual', 'City', 'Denim', 'Mini', 'Overall', 'Paper Bag', 'Set'],
|
|
2502
|
+
},
|
|
2503
|
+
{
|
|
2504
|
+
label: 'Suit Jacket',
|
|
2505
|
+
value: 'Suit Jacket',
|
|
2506
|
+
styles: [
|
|
2507
|
+
'Blazer',
|
|
2508
|
+
'Blazer Set',
|
|
2509
|
+
'Corduroy',
|
|
2510
|
+
'Double Breasted Jacket',
|
|
2511
|
+
'Jacket',
|
|
2512
|
+
'Long Fur Coat',
|
|
2513
|
+
'Longline Blazer',
|
|
2514
|
+
'Set',
|
|
2515
|
+
'Short Jacket',
|
|
2516
|
+
'Single Breasted Jacket',
|
|
2517
|
+
'Suit',
|
|
2518
|
+
'Tuxedo',
|
|
2519
|
+
'Tweed Jacket',
|
|
2520
|
+
'Velvet Blazer',
|
|
2521
|
+
'Vest',
|
|
2522
|
+
'Vintage',
|
|
2523
|
+
'Waistcoat',
|
|
2524
|
+
'Wrap Blazer',
|
|
2525
|
+
],
|
|
2526
|
+
},
|
|
2527
|
+
{
|
|
2528
|
+
label: 'Sweater',
|
|
2529
|
+
value: 'Sweater',
|
|
2530
|
+
styles: [],
|
|
2531
|
+
},
|
|
2532
|
+
{
|
|
2533
|
+
label: 'Sweatshirt',
|
|
2534
|
+
value: 'Sweatshirt',
|
|
2535
|
+
styles: [
|
|
2536
|
+
'Crewneck',
|
|
2537
|
+
'Hoodie',
|
|
2538
|
+
'Jumper',
|
|
2539
|
+
'Polo Shirt',
|
|
2540
|
+
'Sleeveless',
|
|
2541
|
+
'Sweatshirt',
|
|
2542
|
+
'Teddy',
|
|
2543
|
+
'Turtleneck',
|
|
2544
|
+
'V-Neck',
|
|
2545
|
+
'Zip Hoodie',
|
|
2546
|
+
'Zip Up',
|
|
2547
|
+
],
|
|
2548
|
+
},
|
|
2549
|
+
{
|
|
2550
|
+
label: 'Swimwear',
|
|
2551
|
+
value: 'Swimwear',
|
|
2552
|
+
styles: ['Trunks'],
|
|
2553
|
+
},
|
|
2554
|
+
{
|
|
2555
|
+
label: 'T-Shirt',
|
|
2556
|
+
value: 'T-Shirt',
|
|
2557
|
+
styles: ['Athletic', 'Long Sleeve', 'Pik\u00e9', 'Short Sleeve', 'Sleeveless', 'Top', 'Vest', 'V-Neck'],
|
|
2558
|
+
},
|
|
2559
|
+
{
|
|
2560
|
+
label: 'Tank Top',
|
|
2561
|
+
value: 'Tank Top',
|
|
2562
|
+
styles: [],
|
|
2563
|
+
},
|
|
2564
|
+
{
|
|
2565
|
+
label: 'Top',
|
|
2566
|
+
value: 'Top',
|
|
2567
|
+
styles: ['Cashmere', 'Top'],
|
|
2568
|
+
},
|
|
2569
|
+
];
|
|
2570
|
+
exports.mensClothing = mensClothing;
|
|
2571
|
+
const unisexClothing = [
|
|
2572
|
+
{
|
|
2573
|
+
label: 'Athletic',
|
|
2574
|
+
value: 'Athletic',
|
|
2575
|
+
styles: [
|
|
2576
|
+
'Hoodies',
|
|
2577
|
+
'Jacket',
|
|
2578
|
+
'Joggers',
|
|
2579
|
+
'Leggings',
|
|
2580
|
+
'Outerwear',
|
|
2581
|
+
'Pants',
|
|
2582
|
+
'T-Shirt',
|
|
2583
|
+
'Shorts',
|
|
2584
|
+
'Sweater',
|
|
2585
|
+
'Sweatshirt',
|
|
2586
|
+
'Tank Tops',
|
|
2587
|
+
'Top',
|
|
2588
|
+
],
|
|
2589
|
+
},
|
|
2590
|
+
{
|
|
2591
|
+
label: 'Blazer',
|
|
2592
|
+
value: 'Blazer',
|
|
2593
|
+
styles: ['Single Breasted Jacket', 'Suit', 'Tuxedo'],
|
|
2594
|
+
},
|
|
2595
|
+
{
|
|
2596
|
+
label: 'Dress',
|
|
2597
|
+
value: 'Dress',
|
|
2598
|
+
styles: ['Kaftan', 'Kimono'],
|
|
2599
|
+
},
|
|
2600
|
+
{
|
|
2601
|
+
label: 'Jeans',
|
|
2602
|
+
value: 'Jeans',
|
|
2603
|
+
styles: [
|
|
2604
|
+
'Baggy',
|
|
2605
|
+
'Balloon',
|
|
2606
|
+
'Boot Leg',
|
|
2607
|
+
'Corduroy',
|
|
2608
|
+
'Cropped',
|
|
2609
|
+
'Culottes',
|
|
2610
|
+
'Flared',
|
|
2611
|
+
'High Waist',
|
|
2612
|
+
'Loose',
|
|
2613
|
+
'Overalls',
|
|
2614
|
+
'Regular',
|
|
2615
|
+
'Skinny',
|
|
2616
|
+
'Slim Fit',
|
|
2617
|
+
'Straight Leg',
|
|
2618
|
+
'Tapered',
|
|
2619
|
+
'Vintage',
|
|
2620
|
+
'Wide Leg',
|
|
2621
|
+
],
|
|
2622
|
+
},
|
|
2623
|
+
{
|
|
2624
|
+
label: 'Jumpsuit',
|
|
2625
|
+
value: 'Jumpsuit',
|
|
2626
|
+
styles: ['Denim', 'Full Length', 'Playsuit'],
|
|
2627
|
+
},
|
|
2628
|
+
{
|
|
2629
|
+
label: 'Knitwear',
|
|
2630
|
+
value: 'Knitwear',
|
|
2631
|
+
styles: [
|
|
2632
|
+
'Cardigan',
|
|
2633
|
+
'Cashmere',
|
|
2634
|
+
'Collar',
|
|
2635
|
+
'Crewneck',
|
|
2636
|
+
'Hoodie',
|
|
2637
|
+
'Long Sleeve',
|
|
2638
|
+
'Merino',
|
|
2639
|
+
'Pik\u00e9',
|
|
2640
|
+
'Polo Shirt',
|
|
2641
|
+
'Short Sleeve',
|
|
2642
|
+
'Sweater',
|
|
2643
|
+
'Top',
|
|
2644
|
+
'Turtleneck',
|
|
2645
|
+
'Vest',
|
|
2646
|
+
'V-Neck',
|
|
2647
|
+
'Zip Up',
|
|
2648
|
+
],
|
|
2649
|
+
},
|
|
2650
|
+
{
|
|
2651
|
+
label: 'Outerwear',
|
|
2652
|
+
value: 'Outerwear',
|
|
2653
|
+
styles: [
|
|
2654
|
+
'Aviator',
|
|
2655
|
+
'Blazer',
|
|
2656
|
+
'Bomber Jacket',
|
|
2657
|
+
'Boucl\u00e9 Jacket',
|
|
2658
|
+
'Cape',
|
|
2659
|
+
'Cape Coat',
|
|
2660
|
+
'Coat',
|
|
2661
|
+
'Corduroy Jacket',
|
|
2662
|
+
'Denim Jacket',
|
|
2663
|
+
'Down Jacket',
|
|
2664
|
+
'Eco Leather',
|
|
2665
|
+
'Faux Fur Jacket',
|
|
2666
|
+
'Fleece Jacket',
|
|
2667
|
+
'Fur Coat',
|
|
2668
|
+
'Jacket',
|
|
2669
|
+
'Kimono',
|
|
2670
|
+
'Leather Jacket',
|
|
2671
|
+
'Linen',
|
|
2672
|
+
'Longline Jacket',
|
|
2673
|
+
'Overshirt',
|
|
2674
|
+
'Parka',
|
|
2675
|
+
'Peacoat',
|
|
2676
|
+
'Performance Jacket',
|
|
2677
|
+
'Poncho',
|
|
2678
|
+
'Puffer',
|
|
2679
|
+
'Rain Coat',
|
|
2680
|
+
'Shearling and Fur',
|
|
2681
|
+
'Shirt Jacket',
|
|
2682
|
+
'Short Jacket',
|
|
2683
|
+
'Suede Jacket',
|
|
2684
|
+
'Teddy Jacket',
|
|
2685
|
+
'Trench Coat',
|
|
2686
|
+
'Tweed Jacket',
|
|
2687
|
+
'Utility Jacket',
|
|
2688
|
+
'Vest',
|
|
2689
|
+
'Waistcoat',
|
|
2690
|
+
'Windbreaker Jacket',
|
|
2691
|
+
'Wool Jacket',
|
|
2692
|
+
],
|
|
2693
|
+
},
|
|
2694
|
+
{
|
|
2695
|
+
label: 'Pants',
|
|
2696
|
+
value: 'Pants',
|
|
2697
|
+
styles: [
|
|
2698
|
+
'Athletic',
|
|
2699
|
+
'Cargo',
|
|
2700
|
+
'Chino',
|
|
2701
|
+
'Corduroy',
|
|
2702
|
+
'Cropped',
|
|
2703
|
+
'Culottes',
|
|
2704
|
+
'Dress',
|
|
2705
|
+
'Faux Leather',
|
|
2706
|
+
'Flare',
|
|
2707
|
+
'High Waist',
|
|
2708
|
+
'Joggers',
|
|
2709
|
+
'Knit',
|
|
2710
|
+
'Leather',
|
|
2711
|
+
'Linen',
|
|
2712
|
+
'Loose',
|
|
2713
|
+
'Relaxed',
|
|
2714
|
+
'Set',
|
|
2715
|
+
'Shorts',
|
|
2716
|
+
'Skinny',
|
|
2717
|
+
'Slacks',
|
|
2718
|
+
'Slim Fit',
|
|
2719
|
+
'Straight Leg',
|
|
2720
|
+
'Suede',
|
|
2721
|
+
'Suit',
|
|
2722
|
+
'Sweatpants',
|
|
2723
|
+
'Tapered',
|
|
2724
|
+
'Track Pants',
|
|
2725
|
+
'Training',
|
|
2726
|
+
'Tuxedo',
|
|
2727
|
+
'Velvet',
|
|
2728
|
+
'Wide Leg',
|
|
2729
|
+
],
|
|
2730
|
+
},
|
|
2731
|
+
{
|
|
2732
|
+
label: 'Shirts',
|
|
2733
|
+
value: 'Shirts',
|
|
2734
|
+
styles: [
|
|
2735
|
+
'Checkered',
|
|
2736
|
+
'Classic',
|
|
2737
|
+
'Corduroy',
|
|
2738
|
+
'Cotton',
|
|
2739
|
+
'Denim',
|
|
2740
|
+
'Dress Shirt',
|
|
2741
|
+
'Embroidered',
|
|
2742
|
+
'Kaftan',
|
|
2743
|
+
'Linen',
|
|
2744
|
+
'Long Sleeve',
|
|
2745
|
+
'Overshirt',
|
|
2746
|
+
'Pik\u00e9',
|
|
2747
|
+
'Set',
|
|
2748
|
+
'Shirt',
|
|
2749
|
+
'Short Sleeve',
|
|
2750
|
+
'Sleeveless',
|
|
2751
|
+
'T-Shirt',
|
|
2752
|
+
'Top',
|
|
2753
|
+
],
|
|
2754
|
+
},
|
|
2755
|
+
{
|
|
2756
|
+
label: 'Shirts and Blouses',
|
|
2757
|
+
value: 'Shirts and Blouses',
|
|
2758
|
+
styles: ['T-Shirt'],
|
|
2759
|
+
},
|
|
2760
|
+
{
|
|
2761
|
+
label: 'Shorts',
|
|
2762
|
+
value: 'Shorts',
|
|
2763
|
+
styles: ['Cargo', 'Casual', 'City', 'Denim', 'Mini', 'Overall', 'Paper Bag', 'Set'],
|
|
2764
|
+
},
|
|
2765
|
+
{
|
|
2766
|
+
label: 'Suit Jacket',
|
|
2767
|
+
value: 'Suit Jacket',
|
|
2768
|
+
styles: [
|
|
2769
|
+
'Blazer',
|
|
2770
|
+
'Blazer Set',
|
|
2771
|
+
'Corduroy',
|
|
2772
|
+
'Double Breasted Jacket',
|
|
2773
|
+
'Jacket',
|
|
2774
|
+
'Long Fur Coat',
|
|
2775
|
+
'Longline Blazer',
|
|
2776
|
+
'Set',
|
|
2777
|
+
'Short Jacket',
|
|
2778
|
+
'Single Breasted Jacket',
|
|
2779
|
+
'Suit',
|
|
2780
|
+
'Tuxedo',
|
|
2781
|
+
'Tweed Jacket',
|
|
2782
|
+
'Velvet Blazer',
|
|
2783
|
+
'Vest',
|
|
2784
|
+
'Vintage',
|
|
2785
|
+
'Waistcoat',
|
|
2786
|
+
'Wrap Blazer',
|
|
2787
|
+
],
|
|
2788
|
+
},
|
|
2789
|
+
{
|
|
2790
|
+
label: 'Sweater',
|
|
2791
|
+
value: 'Sweater',
|
|
2792
|
+
styles: [],
|
|
2793
|
+
},
|
|
2794
|
+
{
|
|
2795
|
+
label: 'Sweatshirt',
|
|
2796
|
+
value: 'Sweatshirt',
|
|
2797
|
+
styles: [
|
|
2798
|
+
'Crewneck',
|
|
2799
|
+
'Hoodie',
|
|
2800
|
+
'Jumper',
|
|
2801
|
+
'Polo Shirt',
|
|
2802
|
+
'Sleeveless',
|
|
2803
|
+
'Sweatshirt',
|
|
2804
|
+
'Teddy',
|
|
2805
|
+
'Turtleneck',
|
|
2806
|
+
'V-Neck',
|
|
2807
|
+
'Zip Hoodie',
|
|
2808
|
+
'Zip Up',
|
|
2809
|
+
],
|
|
2810
|
+
},
|
|
2811
|
+
{
|
|
2812
|
+
label: 'T-Shirt',
|
|
2813
|
+
value: 'T-Shirt',
|
|
2814
|
+
styles: ['Athletic', 'Long Sleeve', 'Pik\u00e9', 'Short Sleeve', 'Sleeveless', 'Top', 'Vest', 'V-Neck'],
|
|
2815
|
+
},
|
|
2816
|
+
{
|
|
2817
|
+
label: 'Tank Top',
|
|
2818
|
+
value: 'Tank Top',
|
|
2819
|
+
styles: [],
|
|
2820
|
+
},
|
|
2821
|
+
{
|
|
2822
|
+
label: 'Top',
|
|
2823
|
+
value: 'Top',
|
|
2824
|
+
styles: ['Cashmere', 'Top'],
|
|
2825
|
+
},
|
|
2826
|
+
];
|
|
2827
|
+
exports.unisexClothing = unisexClothing;
|
|
2828
|
+
const shoes = [
|
|
2829
|
+
{
|
|
2830
|
+
label: 'Boots',
|
|
2831
|
+
value: 'Boots',
|
|
2832
|
+
styles: [
|
|
2833
|
+
'Ankle',
|
|
2834
|
+
'Chelsea',
|
|
2835
|
+
'Chunky',
|
|
2836
|
+
'Cowboy',
|
|
2837
|
+
'Croco',
|
|
2838
|
+
'Desert',
|
|
2839
|
+
'Dress',
|
|
2840
|
+
'Flat',
|
|
2841
|
+
'High Heel',
|
|
2842
|
+
'Knee High',
|
|
2843
|
+
'Loafers',
|
|
2844
|
+
'Long',
|
|
2845
|
+
'Mid Heel',
|
|
2846
|
+
'Moon',
|
|
2847
|
+
'Platform',
|
|
2848
|
+
'Pointed',
|
|
2849
|
+
'Rain',
|
|
2850
|
+
'Rubber Boots',
|
|
2851
|
+
'Steel Toe',
|
|
2852
|
+
],
|
|
2853
|
+
},
|
|
2854
|
+
{
|
|
2855
|
+
label: 'Dress Shoes',
|
|
2856
|
+
value: 'Dress Shoes',
|
|
2857
|
+
styles: ['Brogues', 'Derby Shoes', 'Mocassim'],
|
|
2858
|
+
},
|
|
2859
|
+
{
|
|
2860
|
+
label: 'Flats',
|
|
2861
|
+
value: 'Flats',
|
|
2862
|
+
styles: [
|
|
2863
|
+
'Ballet Flat',
|
|
2864
|
+
'Brogues',
|
|
2865
|
+
'Dress',
|
|
2866
|
+
'Espadrillos',
|
|
2867
|
+
'Flip Flops',
|
|
2868
|
+
'Loafer',
|
|
2869
|
+
'Pointed',
|
|
2870
|
+
'Slip-On',
|
|
2871
|
+
'Slippers',
|
|
2872
|
+
],
|
|
2873
|
+
},
|
|
2874
|
+
{
|
|
2875
|
+
label: 'Mules',
|
|
2876
|
+
value: 'Mules',
|
|
2877
|
+
styles: ['Clogs', 'Flat', 'Kitten Heel', 'Mid Heel'],
|
|
2878
|
+
},
|
|
2879
|
+
{
|
|
2880
|
+
label: 'Platforms',
|
|
2881
|
+
value: 'Platforms',
|
|
2882
|
+
styles: ['Brogues', 'Loafer', 'Mules'],
|
|
2883
|
+
},
|
|
2884
|
+
{
|
|
2885
|
+
label: 'Pumps',
|
|
2886
|
+
value: 'Pumps',
|
|
2887
|
+
styles: ['Block Heel', 'High Heel', 'Kitten Heel', 'Leather', 'Mid Heel', 'Mid Heel', 'Slingback'],
|
|
2888
|
+
},
|
|
2889
|
+
{
|
|
2890
|
+
label: 'Sandals',
|
|
2891
|
+
value: 'Sandals',
|
|
2892
|
+
styles: ['Block Heel', 'Flat', 'Flip Flops', 'High Heel', 'Low Heel', 'Mid Heel', 'Mules', 'Platform'],
|
|
2893
|
+
},
|
|
2894
|
+
{
|
|
2895
|
+
label: 'Sneakers',
|
|
2896
|
+
value: 'Sneakers',
|
|
2897
|
+
styles: ['All Star', 'Casual', 'Chunky', 'Court', 'High Top', 'Performance', 'Platform', 'Retro', 'Superstar'],
|
|
2898
|
+
},
|
|
2899
|
+
{
|
|
2900
|
+
label: 'Wedges',
|
|
2901
|
+
value: 'Wedges',
|
|
2902
|
+
styles: [],
|
|
2903
|
+
},
|
|
2904
|
+
];
|
|
2905
|
+
exports.shoes = shoes;
|
|
2906
|
+
const mensShoes = [
|
|
2907
|
+
{
|
|
2908
|
+
label: 'Boat Shoes',
|
|
2909
|
+
value: 'Boat Shoes',
|
|
2910
|
+
styles: [],
|
|
2911
|
+
},
|
|
2912
|
+
{
|
|
2913
|
+
label: 'Boots',
|
|
2914
|
+
value: 'Boots',
|
|
2915
|
+
styles: [
|
|
2916
|
+
'Ankle',
|
|
2917
|
+
'Chelsea',
|
|
2918
|
+
'Chunky',
|
|
2919
|
+
'Cowboy',
|
|
2920
|
+
'Croco',
|
|
2921
|
+
'Desert',
|
|
2922
|
+
'Dress',
|
|
2923
|
+
'Flat',
|
|
2924
|
+
'High Heel',
|
|
2925
|
+
'Knee High',
|
|
2926
|
+
'Loafers',
|
|
2927
|
+
'Long',
|
|
2928
|
+
'Mid Heel',
|
|
2929
|
+
'Platform',
|
|
2930
|
+
'Pointed',
|
|
2931
|
+
'Rain',
|
|
2932
|
+
'Rubber Boots',
|
|
2933
|
+
'Steel Toe',
|
|
2934
|
+
],
|
|
2935
|
+
},
|
|
2936
|
+
{
|
|
2937
|
+
label: 'Dress Shoes',
|
|
2938
|
+
value: 'Dress Shoes',
|
|
2939
|
+
styles: ['Brogues', 'Derby Shoes', 'Mocassim'],
|
|
2940
|
+
},
|
|
2941
|
+
{
|
|
2942
|
+
label: 'Flats',
|
|
2943
|
+
value: 'Flats',
|
|
2944
|
+
styles: ['Brogues', 'Dress', 'Espadrillos', 'Flip Flops', 'Pointed', 'Slip-On', 'Slippers'],
|
|
2945
|
+
},
|
|
2946
|
+
{
|
|
2947
|
+
label: 'Platforms',
|
|
2948
|
+
value: 'Platforms',
|
|
2949
|
+
styles: ['Brogues', 'Loafer'],
|
|
2950
|
+
},
|
|
2951
|
+
{
|
|
2952
|
+
label: 'Sandals',
|
|
2953
|
+
value: 'Sandals',
|
|
2954
|
+
styles: ['Block Heel', 'Flat', 'Flip Flops', 'High Heel', 'Low Heel', 'Mid Heel', 'Platform'],
|
|
2955
|
+
},
|
|
2956
|
+
{
|
|
2957
|
+
label: 'Sneakers',
|
|
2958
|
+
value: 'Sneakers',
|
|
2959
|
+
styles: ['All Star', 'Casual', 'Chunky', 'Court', 'High Top', 'Performance', 'Platform', 'Retro', 'Superstar'],
|
|
2960
|
+
},
|
|
2961
|
+
{
|
|
2962
|
+
label: 'Wedges',
|
|
2963
|
+
value: 'Wedges',
|
|
2964
|
+
styles: [],
|
|
2965
|
+
},
|
|
2966
|
+
];
|
|
2967
|
+
exports.mensShoes = mensShoes;
|
|
2968
|
+
const unisexShoes = [
|
|
2969
|
+
{
|
|
2970
|
+
label: 'Boots',
|
|
2971
|
+
value: 'Boots',
|
|
2972
|
+
styles: [
|
|
2973
|
+
'Ankle',
|
|
2974
|
+
'Chelsea',
|
|
2975
|
+
'Chunky',
|
|
2976
|
+
'Cowboy',
|
|
2977
|
+
'Croco',
|
|
2978
|
+
'Desert',
|
|
2979
|
+
'Dress',
|
|
2980
|
+
'Flat',
|
|
2981
|
+
'High Heel',
|
|
2982
|
+
'Knee High',
|
|
2983
|
+
'Loafers',
|
|
2984
|
+
'Long',
|
|
2985
|
+
'Mid Heel',
|
|
2986
|
+
'Platform',
|
|
2987
|
+
'Pointed',
|
|
2988
|
+
'Rain',
|
|
2989
|
+
'Rubber Boots',
|
|
2990
|
+
'Steel Toe',
|
|
2991
|
+
],
|
|
2992
|
+
},
|
|
2993
|
+
{
|
|
2994
|
+
label: 'Dress Shoes',
|
|
2995
|
+
value: 'Dress Shoes',
|
|
2996
|
+
styles: ['Brogues', 'Derby Shoes', 'Mocassim'],
|
|
2997
|
+
},
|
|
2998
|
+
{
|
|
2999
|
+
label: 'Flats',
|
|
3000
|
+
value: 'Flats',
|
|
3001
|
+
styles: ['Brogues', 'Dress', 'Espadrillos', 'Flip Flops', 'Pointed', 'Slip-On', 'Slippers'],
|
|
3002
|
+
},
|
|
3003
|
+
{
|
|
3004
|
+
label: 'Platforms',
|
|
3005
|
+
value: 'Platforms',
|
|
3006
|
+
styles: ['Brogues', 'Loafer'],
|
|
3007
|
+
},
|
|
3008
|
+
{
|
|
3009
|
+
label: 'Sandals',
|
|
3010
|
+
value: 'Sandals',
|
|
3011
|
+
styles: ['Block Heel', 'Flat', 'Flip Flops', 'High Heel', 'Low Heel', 'Mid Heel', 'Platform'],
|
|
3012
|
+
},
|
|
3013
|
+
{
|
|
3014
|
+
label: 'Sneakers',
|
|
3015
|
+
value: 'Sneakers',
|
|
3016
|
+
styles: ['All Star', 'Casual', 'Chunky', 'Court', 'High Top', 'Performance', 'Platform', 'Retro', 'Superstar'],
|
|
3017
|
+
},
|
|
3018
|
+
{
|
|
3019
|
+
label: 'Wedges',
|
|
3020
|
+
value: 'Wedges',
|
|
3021
|
+
styles: [],
|
|
3022
|
+
},
|
|
3023
|
+
];
|
|
3024
|
+
exports.unisexShoes = unisexShoes;
|
|
3025
|
+
const bags = [
|
|
3026
|
+
{
|
|
3027
|
+
label: 'Backpack',
|
|
3028
|
+
value: 'Backpack',
|
|
3029
|
+
styles: ['Leather', 'Sports', 'Utility'],
|
|
3030
|
+
},
|
|
3031
|
+
{
|
|
3032
|
+
label: 'Briefcase',
|
|
3033
|
+
value: 'Briefcase',
|
|
3034
|
+
styles: [],
|
|
3035
|
+
},
|
|
3036
|
+
{
|
|
3037
|
+
label: 'Clutch Bag',
|
|
3038
|
+
value: 'Clutch Bag',
|
|
3039
|
+
styles: [],
|
|
3040
|
+
},
|
|
3041
|
+
{
|
|
3042
|
+
label: 'Cross Body Bag',
|
|
3043
|
+
value: 'Cross Body Bag',
|
|
3044
|
+
styles: ['Bag', 'Chain', 'Clutch', 'Cross Body', 'Handbag', 'Leather', 'Mini'],
|
|
3045
|
+
},
|
|
3046
|
+
{
|
|
3047
|
+
label: 'Evening Bag',
|
|
3048
|
+
value: 'Evening Bag',
|
|
3049
|
+
styles: ['Boxed Clutch', 'Clutch', 'Fur', 'Mini Chain'],
|
|
3050
|
+
},
|
|
3051
|
+
{
|
|
3052
|
+
label: 'Handbag',
|
|
3053
|
+
value: 'Handbag',
|
|
3054
|
+
styles: ['Bag', 'Baguette', 'Bum Bag', 'Handbag', 'Laptop Bag', 'Medium', 'Satin', 'Shopping', 'Travel Bag'],
|
|
3055
|
+
},
|
|
3056
|
+
{
|
|
3057
|
+
label: 'Messenger Bag',
|
|
3058
|
+
value: 'Messenger Bag',
|
|
3059
|
+
styles: [],
|
|
3060
|
+
},
|
|
3061
|
+
{
|
|
3062
|
+
label: 'Shoulder Bag',
|
|
3063
|
+
value: 'Shoulder Bag',
|
|
3064
|
+
styles: [
|
|
3065
|
+
'Bag',
|
|
3066
|
+
'Baguette',
|
|
3067
|
+
'Basket Bag',
|
|
3068
|
+
'Bucket Bag',
|
|
3069
|
+
'Double Chain',
|
|
3070
|
+
'Fallabella',
|
|
3071
|
+
'Leather',
|
|
3072
|
+
'Mulberry Croc Print Bayswater',
|
|
3073
|
+
'Tote',
|
|
3074
|
+
'Travel',
|
|
3075
|
+
'Vintage',
|
|
3076
|
+
],
|
|
3077
|
+
},
|
|
3078
|
+
{
|
|
3079
|
+
label: 'Tote Bag',
|
|
3080
|
+
value: 'Tote Bag',
|
|
3081
|
+
styles: ['Bow', 'Handbag', 'Leather', 'Shoulder Bag'],
|
|
3082
|
+
},
|
|
3083
|
+
{
|
|
3084
|
+
label: 'Weekend',
|
|
3085
|
+
value: 'Weekend',
|
|
3086
|
+
styles: [],
|
|
3087
|
+
},
|
|
3088
|
+
];
|
|
3089
|
+
exports.bags = bags;
|
|
3090
|
+
const mensBags = [
|
|
3091
|
+
{
|
|
3092
|
+
label: 'Backpack',
|
|
3093
|
+
value: 'Backpack',
|
|
3094
|
+
styles: ['Leather', 'Sports', 'Utility'],
|
|
3095
|
+
},
|
|
3096
|
+
{
|
|
3097
|
+
label: 'Briefcase',
|
|
3098
|
+
value: 'Briefcase',
|
|
3099
|
+
styles: [],
|
|
3100
|
+
},
|
|
3101
|
+
{
|
|
3102
|
+
label: 'Cross Body Bag',
|
|
3103
|
+
value: 'Cross Body Bag',
|
|
3104
|
+
styles: ['Bag', 'Cross Body', 'Leather', 'Mini'],
|
|
3105
|
+
},
|
|
3106
|
+
{
|
|
3107
|
+
label: 'Handbag',
|
|
3108
|
+
value: 'Handbag',
|
|
3109
|
+
styles: ['Bag', 'Bum Bag', 'Laptop Bag', 'Shopping', 'Travel Bag'],
|
|
3110
|
+
},
|
|
3111
|
+
{
|
|
3112
|
+
label: 'Messenger Bag',
|
|
3113
|
+
value: 'Messenger Bag',
|
|
3114
|
+
styles: [],
|
|
3115
|
+
},
|
|
3116
|
+
{
|
|
3117
|
+
label: 'Shoulder Bag',
|
|
3118
|
+
value: 'Shoulder Bag',
|
|
3119
|
+
styles: ['Bag', 'Leather', 'Tote', 'Travel', 'Vintage'],
|
|
3120
|
+
},
|
|
3121
|
+
{
|
|
3122
|
+
label: 'Tote Bag',
|
|
3123
|
+
value: 'Tote Bag',
|
|
3124
|
+
styles: ['Leather', 'Shoulder Bag'],
|
|
3125
|
+
},
|
|
3126
|
+
{
|
|
3127
|
+
label: 'Weekend',
|
|
3128
|
+
value: 'Weekend',
|
|
3129
|
+
styles: [],
|
|
3130
|
+
},
|
|
3131
|
+
];
|
|
3132
|
+
exports.mensBags = mensBags;
|
|
3133
|
+
const unisexBags = [
|
|
3134
|
+
{
|
|
3135
|
+
label: 'Backpack',
|
|
3136
|
+
value: 'Backpack',
|
|
3137
|
+
styles: ['Leather', 'Sports', 'Utility'],
|
|
3138
|
+
},
|
|
3139
|
+
{
|
|
3140
|
+
label: 'Briefcase',
|
|
3141
|
+
value: 'Briefcase',
|
|
3142
|
+
styles: [],
|
|
3143
|
+
},
|
|
3144
|
+
{
|
|
3145
|
+
label: 'Cross Body Bag',
|
|
3146
|
+
value: 'Cross Body Bag',
|
|
3147
|
+
styles: ['Bag', 'Cross Body', 'Leather', 'Mini'],
|
|
3148
|
+
},
|
|
3149
|
+
{
|
|
3150
|
+
label: 'Handbag',
|
|
3151
|
+
value: 'Handbag',
|
|
3152
|
+
styles: ['Bag', 'Bum Bag', 'Laptop Bag', 'Shopping', 'Travel Bag'],
|
|
3153
|
+
},
|
|
3154
|
+
{
|
|
3155
|
+
label: 'Messenger Bag',
|
|
3156
|
+
value: 'Messenger Bag',
|
|
3157
|
+
styles: [],
|
|
3158
|
+
},
|
|
3159
|
+
{
|
|
3160
|
+
label: 'Shoulder Bag',
|
|
3161
|
+
value: 'Shoulder Bag',
|
|
3162
|
+
styles: ['Bag', 'Leather', 'Tote', 'Travel', 'Vintage'],
|
|
3163
|
+
},
|
|
3164
|
+
{
|
|
3165
|
+
label: 'Tote Bag',
|
|
3166
|
+
value: 'Tote Bag',
|
|
3167
|
+
styles: ['Leather', 'Shoulder Bag'],
|
|
3168
|
+
},
|
|
3169
|
+
{
|
|
3170
|
+
label: 'Weekend',
|
|
3171
|
+
value: 'Weekend',
|
|
3172
|
+
styles: [],
|
|
3173
|
+
},
|
|
3174
|
+
];
|
|
3175
|
+
exports.unisexBags = unisexBags;
|
|
3176
|
+
const accessories = [
|
|
3177
|
+
{
|
|
3178
|
+
label: 'Belt',
|
|
3179
|
+
value: 'Belt',
|
|
3180
|
+
styles: ['Braided', 'Elastic', 'Fringe', 'Leather', 'Metal', 'Ruffle', 'Wrap'],
|
|
3181
|
+
},
|
|
3182
|
+
{
|
|
3183
|
+
label: 'Brooch',
|
|
3184
|
+
value: 'Brooch',
|
|
3185
|
+
styles: ['Bar', 'Foliate', 'Pendant', 'Portrait'],
|
|
3186
|
+
},
|
|
3187
|
+
{
|
|
3188
|
+
label: 'Gloves',
|
|
3189
|
+
value: 'Gloves',
|
|
3190
|
+
styles: ['Fingerless', 'Leather', 'Silk', 'Standard'],
|
|
3191
|
+
},
|
|
3192
|
+
{
|
|
3193
|
+
label: 'Hair Accessory',
|
|
3194
|
+
value: 'Hair Accessory',
|
|
3195
|
+
styles: ['Brooch', 'Hair Clip', 'Scrunchie'],
|
|
3196
|
+
},
|
|
3197
|
+
{
|
|
3198
|
+
label: 'Hat',
|
|
3199
|
+
value: 'Hat',
|
|
3200
|
+
styles: ['Baseball Cap', 'Beanie', 'Beret', 'Cap', 'Fedora', 'Fiddler', 'Net Cap', 'Sailor', 'Snapback', 'Sun Hat'],
|
|
3201
|
+
},
|
|
3202
|
+
{
|
|
3203
|
+
label: 'Scarf',
|
|
3204
|
+
value: 'Scarf',
|
|
3205
|
+
styles: ['Cashmere', 'Collar', 'Fur', 'Plain', 'Printed', 'Silk', 'Skinny', 'Summer', 'Wool'],
|
|
3206
|
+
},
|
|
3207
|
+
{
|
|
3208
|
+
label: 'Sunglasses',
|
|
3209
|
+
value: 'Sunglasses',
|
|
3210
|
+
styles: ['Aviator', 'Cat-Eye', 'D-Frame', 'Oversize', 'Oversized', 'Round Frame', 'Small', 'Square Frame'],
|
|
3211
|
+
},
|
|
3212
|
+
{
|
|
3213
|
+
label: 'Tie',
|
|
3214
|
+
value: 'Tie',
|
|
3215
|
+
styles: ['Bolo', 'Bow', 'Collar', 'Knitted', 'Neck', 'Patterned', 'Plain', 'Polka Dot', 'Striped'],
|
|
3216
|
+
},
|
|
3217
|
+
{
|
|
3218
|
+
label: 'Wallet',
|
|
3219
|
+
value: 'Wallet',
|
|
3220
|
+
styles: ['Big', 'Billfold', 'Cardholder', 'Money Clip', 'Zip Wallet'],
|
|
3221
|
+
},
|
|
3222
|
+
{
|
|
3223
|
+
label: 'Watch',
|
|
3224
|
+
value: 'Watch',
|
|
3225
|
+
styles: [],
|
|
3226
|
+
},
|
|
3227
|
+
];
|
|
3228
|
+
exports.accessories = accessories;
|
|
3229
|
+
const mensAccessories = [
|
|
3230
|
+
{
|
|
3231
|
+
label: 'Belt',
|
|
3232
|
+
value: 'Belt',
|
|
3233
|
+
styles: ['Braided', 'Elastic', 'Fringe', 'Leather', 'Metal', 'Ruffle', 'Wrap'],
|
|
3234
|
+
},
|
|
3235
|
+
{
|
|
3236
|
+
label: 'Brooch',
|
|
3237
|
+
value: 'Brooch',
|
|
3238
|
+
styles: ['Bar', 'Foliate', 'Pendant', 'Portrait'],
|
|
3239
|
+
},
|
|
3240
|
+
{
|
|
3241
|
+
label: 'Gloves',
|
|
3242
|
+
value: 'Gloves',
|
|
3243
|
+
styles: ['Fingerless', 'Leather', 'Silk', 'Standard'],
|
|
3244
|
+
},
|
|
3245
|
+
{
|
|
3246
|
+
label: 'Hair Accessory',
|
|
3247
|
+
value: 'Hair Accessory',
|
|
3248
|
+
styles: ['Brooch'],
|
|
3249
|
+
},
|
|
3250
|
+
{
|
|
3251
|
+
label: 'Hat',
|
|
3252
|
+
value: 'Hat',
|
|
3253
|
+
styles: ['Baseball Cap', 'Beanie', 'Beret', 'Cap', 'Fedora', 'Fiddler', 'Net Cap', 'Sailor', 'Snapback', 'Sun Hat'],
|
|
3254
|
+
},
|
|
3255
|
+
{
|
|
3256
|
+
label: 'Scarf',
|
|
3257
|
+
value: 'Scarf',
|
|
3258
|
+
styles: ['Cashmere', 'Collar', 'Fur', 'Plain', 'Printed', 'Silk', 'Skinny', 'Summer', 'Wool'],
|
|
3259
|
+
},
|
|
3260
|
+
{
|
|
3261
|
+
label: 'Sunglasses',
|
|
3262
|
+
value: 'Sunglasses',
|
|
3263
|
+
styles: ['Aviator', 'Cat-Eye', 'D-Frame', 'Oversize', 'Oversized', 'Round Frame', 'Small', 'Square Frame'],
|
|
3264
|
+
},
|
|
3265
|
+
{
|
|
3266
|
+
label: 'Tie',
|
|
3267
|
+
value: 'Tie',
|
|
3268
|
+
styles: ['Bolo', 'Bow', 'Collar', 'Knitted', 'Neck', 'Patterned', 'Plain', 'Polka Dot', 'Striped'],
|
|
3269
|
+
},
|
|
3270
|
+
{
|
|
3271
|
+
label: 'Wallet',
|
|
3272
|
+
value: 'Wallet',
|
|
3273
|
+
styles: ['Big', 'Billfold', 'Cardholder', 'Money Clip', 'Zip Wallet'],
|
|
3274
|
+
},
|
|
3275
|
+
{
|
|
3276
|
+
label: 'Watch',
|
|
3277
|
+
value: 'Watch',
|
|
3278
|
+
styles: [],
|
|
3279
|
+
},
|
|
3280
|
+
];
|
|
3281
|
+
exports.mensAccessories = mensAccessories;
|
|
3282
|
+
const unisexAccessories = [
|
|
3283
|
+
{
|
|
3284
|
+
label: 'Belt',
|
|
3285
|
+
value: 'Belt',
|
|
3286
|
+
styles: ['Braided', 'Elastic', 'Fringe', 'Leather', 'Metal', 'Ruffle', 'Wrap'],
|
|
3287
|
+
},
|
|
3288
|
+
{
|
|
3289
|
+
label: 'Brooch',
|
|
3290
|
+
value: 'Brooch',
|
|
3291
|
+
styles: ['Bar', 'Foliate', 'Pendant', 'Portrait'],
|
|
3292
|
+
},
|
|
3293
|
+
{
|
|
3294
|
+
label: 'Gloves',
|
|
3295
|
+
value: 'Gloves',
|
|
3296
|
+
styles: ['Fingerless', 'Leather', 'Silk', 'Standard'],
|
|
3297
|
+
},
|
|
3298
|
+
{
|
|
3299
|
+
label: 'Hair Accessory',
|
|
3300
|
+
value: 'Hair Accessory',
|
|
3301
|
+
styles: ['Brooch'],
|
|
3302
|
+
},
|
|
3303
|
+
{
|
|
3304
|
+
label: 'Hat',
|
|
3305
|
+
value: 'Hat',
|
|
3306
|
+
styles: ['Baseball Cap', 'Beanie', 'Beret', 'Cap', 'Fedora', 'Fiddler', 'Net Cap', 'Sailor', 'Snapback', 'Sun Hat'],
|
|
3307
|
+
},
|
|
3308
|
+
{
|
|
3309
|
+
label: 'Scarf',
|
|
3310
|
+
value: 'Scarf',
|
|
3311
|
+
styles: ['Cashmere', 'Collar', 'Fur', 'Plain', 'Printed', 'Silk', 'Skinny', 'Summer', 'Wool'],
|
|
3312
|
+
},
|
|
3313
|
+
{
|
|
3314
|
+
label: 'Sunglasses',
|
|
3315
|
+
value: 'Sunglasses',
|
|
3316
|
+
styles: ['Aviator', 'Cat-Eye', 'D-Frame', 'Oversize', 'Oversized', 'Round Frame', 'Small', 'Square Frame'],
|
|
3317
|
+
},
|
|
3318
|
+
{
|
|
3319
|
+
label: 'Tie',
|
|
3320
|
+
value: 'Tie',
|
|
3321
|
+
styles: ['Bolo', 'Bow', 'Collar', 'Knitted', 'Neck', 'Patterned', 'Plain', 'Polka Dot', 'Striped'],
|
|
3322
|
+
},
|
|
3323
|
+
{
|
|
3324
|
+
label: 'Wallet',
|
|
3325
|
+
value: 'Wallet',
|
|
3326
|
+
styles: ['Big', 'Billfold', 'Cardholder', 'Money Clip', 'Zip Wallet'],
|
|
3327
|
+
},
|
|
3328
|
+
{
|
|
3329
|
+
label: 'Watch',
|
|
3330
|
+
value: 'Watch',
|
|
3331
|
+
styles: [],
|
|
3332
|
+
},
|
|
3333
|
+
];
|
|
3334
|
+
exports.unisexAccessories = unisexAccessories;
|
|
3335
|
+
const jewelry = [
|
|
3336
|
+
{
|
|
3337
|
+
label: 'Bracelet',
|
|
3338
|
+
value: 'Bracelet',
|
|
3339
|
+
styles: ['Bangle', 'Chain', 'Goldplated Silver', 'Leather', 'Triple'],
|
|
3340
|
+
},
|
|
3341
|
+
{
|
|
3342
|
+
label: 'Broche',
|
|
3343
|
+
value: 'Broche',
|
|
3344
|
+
styles: [],
|
|
3345
|
+
},
|
|
3346
|
+
{
|
|
3347
|
+
label: 'Earrings',
|
|
3348
|
+
value: 'Earrings',
|
|
3349
|
+
styles: ['Clip-On', 'Cuff', 'Flower', 'Fringe', 'Geometric', 'Gold', 'Pendant', 'Silver', 'Stud', 'Tassel'],
|
|
3350
|
+
},
|
|
3351
|
+
{
|
|
3352
|
+
label: 'Necklace',
|
|
3353
|
+
value: 'Necklace',
|
|
3354
|
+
styles: ['Body', 'Chain', 'Chunky', 'Pendant', 'Set'],
|
|
3355
|
+
},
|
|
3356
|
+
{
|
|
3357
|
+
label: 'Ring',
|
|
3358
|
+
value: 'Ring',
|
|
3359
|
+
styles: [],
|
|
3360
|
+
},
|
|
3361
|
+
];
|
|
3362
|
+
exports.jewelry = jewelry;
|
|
3363
|
+
const mensJewelry = [
|
|
3364
|
+
{
|
|
3365
|
+
label: 'Bracelet',
|
|
3366
|
+
value: 'Bracelet',
|
|
3367
|
+
styles: ['Bangle', 'Chain', 'Goldplated Silver', 'Leather', 'Triple'],
|
|
3368
|
+
},
|
|
3369
|
+
{
|
|
3370
|
+
label: 'Broche',
|
|
3371
|
+
value: 'Broche',
|
|
3372
|
+
styles: [],
|
|
3373
|
+
},
|
|
3374
|
+
{
|
|
3375
|
+
label: 'Earrings',
|
|
3376
|
+
value: 'Earrings',
|
|
3377
|
+
styles: ['Clip-On', 'Cuff', 'Geometric', 'Gold', 'Silver', 'Stud', 'Tassel'],
|
|
3378
|
+
},
|
|
3379
|
+
{
|
|
3380
|
+
label: 'Necklace',
|
|
3381
|
+
value: 'Necklace',
|
|
3382
|
+
styles: ['Body', 'Chain', 'Chunky', 'Pendant', 'Set'],
|
|
3383
|
+
},
|
|
3384
|
+
{
|
|
3385
|
+
label: 'Ring',
|
|
3386
|
+
value: 'Ring',
|
|
3387
|
+
styles: [],
|
|
3388
|
+
},
|
|
3389
|
+
];
|
|
3390
|
+
exports.mensJewelry = mensJewelry;
|
|
3391
|
+
const unisexJewelry = [
|
|
3392
|
+
{
|
|
3393
|
+
label: 'Bracelet',
|
|
3394
|
+
value: 'Bracelet',
|
|
3395
|
+
styles: ['Bangle', 'Chain', 'Goldplated Silver', 'Leather', 'Triple'],
|
|
3396
|
+
},
|
|
3397
|
+
{
|
|
3398
|
+
label: 'Broche',
|
|
3399
|
+
value: 'Broche',
|
|
3400
|
+
styles: [],
|
|
3401
|
+
},
|
|
3402
|
+
{
|
|
3403
|
+
label: 'Earrings',
|
|
3404
|
+
value: 'Earrings',
|
|
3405
|
+
styles: ['Clip-On', 'Cuff', 'Geometric', 'Gold', 'Silver', 'Stud', 'Tassel'],
|
|
3406
|
+
},
|
|
3407
|
+
{
|
|
3408
|
+
label: 'Necklace',
|
|
3409
|
+
value: 'Necklace',
|
|
3410
|
+
styles: ['Body', 'Chain', 'Chunky', 'Pendant', 'Set'],
|
|
3411
|
+
},
|
|
3412
|
+
{
|
|
3413
|
+
label: 'Ring',
|
|
3414
|
+
value: 'Ring',
|
|
3415
|
+
styles: [],
|
|
3416
|
+
},
|
|
3417
|
+
];
|
|
3418
|
+
exports.unisexJewelry = unisexJewelry;
|
|
3419
|
+
const salesChannelOptions = [
|
|
3420
|
+
{
|
|
3421
|
+
label: 'Mirakl',
|
|
3422
|
+
value: 'Mirakl',
|
|
3423
|
+
},
|
|
3424
|
+
{
|
|
3425
|
+
label: 'ReRobe Store',
|
|
3426
|
+
value: 'ReRobe Store',
|
|
3427
|
+
},
|
|
3428
|
+
{
|
|
3429
|
+
label: 'Tradera',
|
|
3430
|
+
value: 'Tradera',
|
|
3431
|
+
},
|
|
3432
|
+
];
|
|
3433
|
+
exports.salesChannelOptions = salesChannelOptions;
|
|
3434
|
+
const discountTypeOptions = [
|
|
3435
|
+
{
|
|
3436
|
+
label: 'Percentage',
|
|
3437
|
+
value: 'percentage',
|
|
3438
|
+
},
|
|
3439
|
+
{
|
|
3440
|
+
label: 'Amount',
|
|
3441
|
+
value: 'amount',
|
|
3442
|
+
},
|
|
3443
|
+
];
|
|
3444
|
+
exports.discountTypeOptions = discountTypeOptions;
|
|
3445
|
+
const productIsOnSaleOptions = [
|
|
3446
|
+
{
|
|
3447
|
+
label: 'Yes',
|
|
3448
|
+
value: 'yes',
|
|
3449
|
+
},
|
|
3450
|
+
{
|
|
3451
|
+
label: 'No',
|
|
3452
|
+
value: 'no',
|
|
3453
|
+
},
|
|
3454
|
+
];
|
|
3455
|
+
exports.productIsOnSaleOptions = productIsOnSaleOptions;
|