@redsift/design-system-legacy 8.0.0-alpha.8 → 8.0.1

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.
Files changed (136) hide show
  1. package/{index.js.map → dist/index.js.map} +1 -1
  2. package/dist/package.json +65 -0
  3. package/package.json +2 -3
  4. package/rollup.config.js +70 -0
  5. package/src/components/Alert/Alert.jsx +94 -0
  6. package/src/components/Alert/index.ts +1 -0
  7. package/src/components/Alert/readme.md +114 -0
  8. package/src/components/Button/Button.jsx +161 -0
  9. package/src/components/Button/index.ts +1 -0
  10. package/src/components/Button/readme.md +173 -0
  11. package/src/components/Card/Card.jsx +34 -0
  12. package/src/components/Card/index.ts +1 -0
  13. package/src/components/Card/readme.md +54 -0
  14. package/src/components/CardHeader/CardHeader.jsx +40 -0
  15. package/src/components/CardHeader/index.ts +1 -0
  16. package/src/components/Checkbox/Checkbox.jsx +123 -0
  17. package/src/components/Checkbox/index.ts +1 -0
  18. package/src/components/Checkbox/readme.md +54 -0
  19. package/src/components/CheckboxTree/CheckboxTree.jsx +167 -0
  20. package/src/components/CheckboxTree/CheckboxTree.styles.ts +49 -0
  21. package/src/components/CheckboxTree/index.ts +1 -0
  22. package/src/components/CheckboxTree/readme.md +60 -0
  23. package/src/components/IconContainer/IconContainer.jsx +51 -0
  24. package/src/components/IconContainer/index.ts +1 -0
  25. package/src/components/Input/Input.jsx +27 -0
  26. package/src/components/Input/OutlineInput/OutlineInput.jsx +188 -0
  27. package/src/components/Input/RegularInput/RegularInput.jsx +55 -0
  28. package/src/components/Input/RegularInput/RegularInput.styles.ts +98 -0
  29. package/src/components/Input/index.ts +1 -0
  30. package/src/components/Input/readme.md +82 -0
  31. package/src/components/Pagination/Pagination.jsx +111 -0
  32. package/src/components/Pagination/index.ts +1 -0
  33. package/src/components/Pagination/readme.md +34 -0
  34. package/src/components/Radio/Radio.jsx +121 -0
  35. package/src/components/Radio/index.ts +1 -0
  36. package/src/components/Radio/readme.md +90 -0
  37. package/src/components/Select/Select.jsx +360 -0
  38. package/src/components/Select/SelectComponents.jsx +342 -0
  39. package/src/components/Select/index.ts +1 -0
  40. package/src/components/Select/readme.md +2507 -0
  41. package/src/components/Switch/Switch.jsx +130 -0
  42. package/src/components/Switch/index.ts +1 -0
  43. package/src/components/Switch/readme.md +55 -0
  44. package/src/components/Table/ExportCSVButton.jsx +34 -0
  45. package/src/components/Table/Table.jsx +872 -0
  46. package/src/components/Table/TableComponents.jsx +239 -0
  47. package/src/components/Table/TableFilters.jsx +23 -0
  48. package/src/components/Table/TableStyles.jsx +514 -0
  49. package/src/components/Table/index.ts +1 -0
  50. package/src/components/Table/readme.md +2190 -0
  51. package/src/components/Tabs/Tabs.jsx +116 -0
  52. package/src/components/Tabs/TabsComponents.jsx +124 -0
  53. package/src/components/Tabs/index.ts +1 -0
  54. package/src/components/Tabs/readme.md +171 -0
  55. package/src/components/Typography/Typography.jsx +77 -0
  56. package/src/components/Typography/index.ts +1 -0
  57. package/src/components/Typography/readme.md +88 -0
  58. package/src/components/icons/ActionsIcon.jsx +24 -0
  59. package/src/components/icons/AddIcon.jsx +8 -0
  60. package/src/components/icons/Arrow.jsx +39 -0
  61. package/src/components/icons/ArrowDown.jsx +8 -0
  62. package/src/components/icons/ArrowIcon.jsx +25 -0
  63. package/src/components/icons/ArrowUp.jsx +8 -0
  64. package/src/components/icons/BarchartHorizontal.jsx +18 -0
  65. package/src/components/icons/BellIcon.jsx +19 -0
  66. package/src/components/icons/BimiSetupIcon.jsx +25 -0
  67. package/src/components/icons/Chevron.jsx +42 -0
  68. package/src/components/icons/ChevronLeft.jsx +8 -0
  69. package/src/components/icons/ChevronRight.jsx +8 -0
  70. package/src/components/icons/ClearIcon.jsx +8 -0
  71. package/src/components/icons/Cloud.jsx +34 -0
  72. package/src/components/icons/Cross.jsx +25 -0
  73. package/src/components/icons/DeleteIcon.jsx +19 -0
  74. package/src/components/icons/DynamicDmarcIcon.jsx +43 -0
  75. package/src/components/icons/EditOutline.jsx +8 -0
  76. package/src/components/icons/Email.jsx +68 -0
  77. package/src/components/icons/EmailSourcesIcon.jsx +36 -0
  78. package/src/components/icons/ExpandLayoutIcon.jsx +38 -0
  79. package/src/components/icons/ExportIcon.jsx +7 -0
  80. package/src/components/icons/Eye.jsx +28 -0
  81. package/src/components/icons/Facebook.jsx +31 -0
  82. package/src/components/icons/FilterList.jsx +8 -0
  83. package/src/components/icons/FindOutHowIcon.jsx +49 -0
  84. package/src/components/icons/FlatArrow.jsx +33 -0
  85. package/src/components/icons/ForwardArrowIcon.jsx +54 -0
  86. package/src/components/icons/Github.jsx +41 -0
  87. package/src/components/icons/Globe.jsx +29 -0
  88. package/src/components/icons/Hand.jsx +21 -0
  89. package/src/components/icons/InfinityLoop.jsx +22 -0
  90. package/src/components/icons/InfinityLoopBreak.jsx +35 -0
  91. package/src/components/icons/IngrainIcon.jsx +33 -0
  92. package/src/components/icons/LanguageIcon.jsx +44 -0
  93. package/src/components/icons/Linkedin.jsx +37 -0
  94. package/src/components/icons/LocationPin.jsx +34 -0
  95. package/src/components/icons/MicrosoftShield.jsx +44 -0
  96. package/src/components/icons/News.jsx +65 -0
  97. package/src/components/icons/Nodes.jsx +17 -0
  98. package/src/components/icons/OnDmarcIcon.jsx +29 -0
  99. package/src/components/icons/OnDmarcLogo.jsx +74 -0
  100. package/src/components/icons/OnDomainIcon.jsx +27 -0
  101. package/src/components/icons/OnInboxIcon.jsx +42 -0
  102. package/src/components/icons/OnInboxLogo.jsx +97 -0
  103. package/src/components/icons/OnInboxManagerIcon.jsx +46 -0
  104. package/src/components/icons/OpenInNewTabIcon.jsx +28 -0
  105. package/src/components/icons/Padlock.jsx +37 -0
  106. package/src/components/icons/PlusIcon.jsx +16 -0
  107. package/src/components/icons/Question.jsx +19 -0
  108. package/src/components/icons/Recruiting.jsx +34 -0
  109. package/src/components/icons/ReportsIcon.jsx +25 -0
  110. package/src/components/icons/SearchIcon.jsx +7 -0
  111. package/src/components/icons/Shield.jsx +17 -0
  112. package/src/components/icons/ShieldPassIcon.jsx +23 -0
  113. package/src/components/icons/ShieldSolid.jsx +33 -0
  114. package/src/components/icons/ShieldWarningIcon.jsx +40 -0
  115. package/src/components/icons/ShieldWarningInvertedIcon.jsx +36 -0
  116. package/src/components/icons/Spinner.jsx +100 -0
  117. package/src/components/icons/Team.jsx +164 -0
  118. package/src/components/icons/ThreeDotsIcon.jsx +18 -0
  119. package/src/components/icons/Thumb.jsx +17 -0
  120. package/src/components/icons/Traffic.jsx +22 -0
  121. package/src/components/icons/Twitter.jsx +47 -0
  122. package/src/components/icons/Upload.jsx +12 -0
  123. package/src/components/icons/VerticalDots.jsx +28 -0
  124. package/src/components/icons/Warning.jsx +36 -0
  125. package/src/components/icons/WarningTriangle.jsx +44 -0
  126. package/src/components/icons/Youtube.jsx +28 -0
  127. package/src/components/icons/index.ts +69 -0
  128. package/src/hooks/useDebouncedValue.jsx +19 -0
  129. package/src/hooks/useFetch.jsx +26 -0
  130. package/src/hooks/useIsMobile.jsx +25 -0
  131. package/src/hooks/useOnClickOutside.jsx +14 -0
  132. package/src/hooks/useToggle.jsx +8 -0
  133. package/src/index.ts +23 -0
  134. package/tsconfig.json +3 -0
  135. /package/{CONTRIBUTING.md → dist/CONTRIBUTING.md} +0 -0
  136. /package/{index.js → dist/index.js} +0 -0
@@ -0,0 +1,2507 @@
1
+ ### Accessibility
2
+
3
+ - Ensure both the label and id props are completed
4
+
5
+ ### Props
6
+
7
+ | Prop | Default | Options |
8
+ | :----------: | :------: | ------------------------------------------------------------------------------------------------: |
9
+ | color | "#000" | string |
10
+ | icon | null | ReactComponent |
11
+ | minimal | false | boolean |
12
+ | label | | string **Required** |
13
+ | id | | string **Required** |
14
+ | onChange | | (value: T) => void **Required** |
15
+ | options | [] | Array of {label?: string or () => ReactComponent, value: string, disabled?: boolean} **Required** |
16
+ | tintColor | "#000" | string |
17
+ | value | null | T or Null |
18
+ | isSearchable | false | boolean |
19
+ | variant | outlined | outlined,basic,minimal |
20
+
21
+ ### Examples
22
+
23
+ ```jsx
24
+ import Icon from '../Icon/Icon';
25
+ <div
26
+ style={{
27
+ display: 'flex',
28
+ flexWrap: 'wrap',
29
+ flexDirection: 'row',
30
+ alignItems: 'center',
31
+ justifyContent: 'space-evenly',
32
+ }}
33
+ >
34
+ <Select
35
+ id="domain1"
36
+ label="Domain"
37
+ icon={<Icon type="shield" width="20px" />}
38
+ options={[
39
+ { label: () => 'Redsift', value: 'redsift.io' },
40
+ { label: () => 'OnDMARC', value: 'ondmarc.redsift.com' },
41
+ { label: () => 'OnINBOX', value: 'oninbox.redsift.io' },
42
+ ]}
43
+ tintColor="#0A0"
44
+ onChange={(value) => console.info('Selected: ' + value)}
45
+ />
46
+ <Select
47
+ id="domain2"
48
+ label="Domain with string label"
49
+ options={[
50
+ { label: 'Red Sift', value: 'redsift' },
51
+ { label: 'OnDMARC', value: 'ondmarc' },
52
+ { label: 'OnINBOX', value: 'oninbox' },
53
+ ]}
54
+ tintColor="#0A0"
55
+ value="ondmarc"
56
+ onChange={(value) => console.info('Selected: ' + value)}
57
+ />
58
+ </div>;
59
+ ```
60
+
61
+ ### Searchable examples
62
+
63
+ ```jsx
64
+ import Icon from '../Icon/Icon';
65
+ <div
66
+ style={{
67
+ display: 'flex',
68
+ flexWrap: 'wrap',
69
+ flexDirection: 'row',
70
+ alignItems: 'center',
71
+ justifyContent: 'space-evenly',
72
+ }}
73
+ >
74
+ <Select
75
+ id="domain3"
76
+ label="Domain"
77
+ icon={<Icon type="shield" width="20px" />}
78
+ options={[
79
+ { label: 'Red Sift', value: 'redsift' },
80
+ { label: 'OnDMARC', value: 'ondmarc' },
81
+ { label: 'OnINBOX', value: 'oninbox' },
82
+ ]}
83
+ tintColor="#0A0"
84
+ onChange={(value) => console.info('Selected: ' + value)}
85
+ isSearchable
86
+ />
87
+ <Select
88
+ id="domain5"
89
+ label="Company (from random-data generator) with alert"
90
+ options={[
91
+ { value: 'gravatar.com' },
92
+ { value: 'cpanel.net' },
93
+ { value: 'mayoclinic.com' },
94
+ { value: 'sun.com' },
95
+ { value: 'wunderground.com' },
96
+ { value: 'photobucket.com' },
97
+ { value: 'unc.edu' },
98
+ { value: 'soundcloud.com' },
99
+ { value: 'marriott.com' },
100
+ { value: 'biglobe.ne.jp' },
101
+ { value: 'wired.com' },
102
+ { value: 'bloomberg.com' },
103
+ { value: 'virginia.edu' },
104
+ { value: 'scientificamerican.com' },
105
+ { value: 'house.gov' },
106
+ { value: 'google.com.br' },
107
+ { value: 'upenn.edu' },
108
+ { value: 'artisteer.com' },
109
+ { value: 'mapquest.com' },
110
+ { value: 'angelfire.com' },
111
+ { value: 'boston.com' },
112
+ { value: 'spotify.com' },
113
+ { value: 'example.com' },
114
+ { value: 'prlog.org' },
115
+ { value: 'tinypic.com' },
116
+ { value: 'weibo.com' },
117
+ { value: 'webnode.com' },
118
+ { value: 'yahoo.com' },
119
+ { value: 'eepurl.com' },
120
+ { value: 'columbia.edu' },
121
+ { value: 'ox.ac.uk' },
122
+ { value: 'nyu.edu' },
123
+ { value: 'dropbox.com' },
124
+ { value: 'ucoz.com' },
125
+ { value: 'naver.com' },
126
+ { value: 'msn.com' },
127
+ { value: 'tinyurl.com' },
128
+ { value: 'mac.com' },
129
+ { value: 'merriam-webster.com' },
130
+ { value: 'dyndns.org' },
131
+ { value: 'hc360.com' },
132
+ { value: 'nsw.gov.au' },
133
+ { value: 'twitpic.com' },
134
+ { value: 'fc2.com' },
135
+ { value: 'baidu.com' },
136
+ { value: 'oracle.com' },
137
+ { value: 'orangepages.com' },
138
+ ]}
139
+ tintColor="#0A0"
140
+ value="ondmarc.com"
141
+ onChange={(value) => alert('Selected: ' + value)}
142
+ isSearchable
143
+ />
144
+ </div>;
145
+ ```
146
+
147
+ ### Disabled examples
148
+
149
+ ```jsx
150
+ import Icon from '../Icon/Icon';
151
+ <div
152
+ style={{
153
+ display: 'flex',
154
+ flexWrap: 'wrap',
155
+ flexDirection: 'row',
156
+ alignItems: 'center',
157
+ justifyContent: 'space-evenly',
158
+ }}
159
+ >
160
+ <Select
161
+ disabled
162
+ id="domain1"
163
+ label="Domain"
164
+ icon={<Icon type="shield" width="20px" />}
165
+ options={[
166
+ { label: () => 'Redsift', value: 'redsift.io' },
167
+ { label: () => 'OnDMARC', value: 'ondmarc.redsift.com' },
168
+ { label: () => 'OnINBOX', value: 'oninbox.redsift.io' },
169
+ ]}
170
+ tintColor="#0A0"
171
+ onChange={(value) => console.info('Selected: ' + value)}
172
+ />
173
+ <Select
174
+ disabled
175
+ id="domain2"
176
+ label="Domain with string label"
177
+ options={[
178
+ { label: 'Red Sift', value: 'redsift' },
179
+ { label: 'OnDMARC', value: 'ondmarc' },
180
+ { label: 'OnINBOX', value: 'oninbox' },
181
+ ]}
182
+ tintColor="#0A0"
183
+ value="ondmarc"
184
+ onChange={(value) => console.info('Selected: ' + value)}
185
+ />
186
+ </div>;
187
+ ```
188
+
189
+ ### Minimal variant examples
190
+
191
+ ```jsx
192
+ import Icon from '../Icon/Icon';
193
+ <div
194
+ style={{
195
+ display: 'flex',
196
+ flexWrap: 'wrap',
197
+ flexDirection: 'row',
198
+ alignItems: 'center',
199
+ justifyContent: 'space-evenly',
200
+ }}
201
+ >
202
+ <div
203
+ style={{
204
+ display: 'flex',
205
+ flex: 1,
206
+ backgroundColor: '#33B222',
207
+ padding: '1em',
208
+ }}
209
+ >
210
+ <Select
211
+ variant="minimal"
212
+ id="domain1"
213
+ label="Domain"
214
+ icon={<Icon type="shield" fill="#fff" width="15px" />}
215
+ options={[
216
+ { label: () => 'Redsift', value: 'redsift.io' },
217
+ { label: () => 'OnDMARC', value: 'ondmarc.redsift.com' },
218
+ { label: () => 'OnINBOX', value: 'oninbox.redsift.io' },
219
+ ]}
220
+ tintColor="#FFF"
221
+ onChange={(value) => console.info('Selected: ' + value)}
222
+ />
223
+ </div>
224
+ <div
225
+ style={{
226
+ display: 'flex',
227
+ flex: 1,
228
+ backgroundColor: '#33B222',
229
+ padding: '1em',
230
+ }}
231
+ >
232
+ <Select
233
+ variant="minimal"
234
+ id="language"
235
+ label="Domain"
236
+ icon={<Icon type="globe" stroke="#fff" fill="#fff" width="20px" />}
237
+ options={[
238
+ { label: 'English', value: 'en' },
239
+ { label: 'Français', value: 'fr' },
240
+ { label: 'Español (EU)', value: 'es-ES' },
241
+ { label: 'Español (Latino)', value: 'es' },
242
+ { label: 'Portugués', value: 'pt' },
243
+ ]}
244
+ value="en"
245
+ tintColor="#FFF"
246
+ onChange={(value) => console.info('Selected: ' + value)}
247
+ />
248
+ </div>
249
+ <div style={{ display: 'flex', flex: 1, padding: '1em' }}>
250
+ <Select
251
+ variant="minimal"
252
+ id="domain2"
253
+ label="Domain with string label"
254
+ options={[
255
+ { label: 'Red Sift', value: 'redsift' },
256
+ { label: 'OnDMARC', value: 'ondmarc' },
257
+ { label: 'OnINBOX', value: 'oninbox' },
258
+ ]}
259
+ tintColor="#222"
260
+ value="ondmarc"
261
+ onChange={(value) => console.info('Selected: ' + value)}
262
+ />
263
+ </div>
264
+ </div>;
265
+ ```
266
+
267
+ ### Basic variant examples
268
+
269
+ ```jsx
270
+ <div
271
+ style={{
272
+ display: 'flex',
273
+ flexWrap: 'wrap',
274
+ flexDirection: 'row',
275
+ alignItems: 'center',
276
+ justifyContent: 'space-evenly',
277
+ }}
278
+ >
279
+ <div style={{ display: 'flex', flex: 1, padding: '1em' }}>
280
+ <Select
281
+ variant="basic"
282
+ id="domain2"
283
+ label="Domain with string label"
284
+ options={[
285
+ { label: 'Red Sift', value: 'redsift' },
286
+ { label: 'OnDMARC', value: 'ondmarc' },
287
+ { label: 'OnINBOX', value: 'oninbox' },
288
+ ]}
289
+ tintColor="#02ac61"
290
+ value="ondmarc"
291
+ onChange={(value) => console.info('Selected: ' + value)}
292
+ />
293
+ <Select
294
+ variant="basic"
295
+ id="domain3"
296
+ label="Domain with string label"
297
+ options={[
298
+ { label: 'Red Sift', value: 'redsift' },
299
+ { label: 'OnDMARC', value: 'ondmarc' },
300
+ { label: 'OnINBOX', value: 'oninbox' },
301
+ ]}
302
+ tintColor="#666"
303
+ value="ondmarc"
304
+ onChange={(value) => console.info('Selected: ' + value)}
305
+ />
306
+ </div>
307
+ </div>
308
+ ```
309
+
310
+ ### Disabled examples
311
+
312
+ ```jsx
313
+ <div
314
+ style={{
315
+ display: 'flex',
316
+ flexWrap: 'wrap',
317
+ flexDirection: 'row',
318
+ alignItems: 'center',
319
+ justifyContent: 'space-evenly',
320
+ }}
321
+ >
322
+ <div style={{ display: 'flex', flex: 1, padding: '1em' }}>
323
+ <Select
324
+ id="domain-disabled-1"
325
+ label="Domain with disabled items"
326
+ options={[
327
+ { label: 'Red Sift', value: 'redsift' },
328
+ { label: 'OnDMARC', value: 'ondmarc', disabled: true },
329
+ { label: 'OnINBOX', value: 'oninbox' },
330
+ { label: 'InGRAIN', value: 'ingrain', disabled: true },
331
+ ]}
332
+ tintColor="#02ac61"
333
+ value="ondmarc"
334
+ onChange={(value) => console.info('Selected: ' + value)}
335
+ />
336
+ <Select
337
+ id="domain-disabled-2"
338
+ label="Domain with string label"
339
+ variant="basic"
340
+ isSearchable
341
+ options={[
342
+ { label: 'Red Sift', value: 'redsift' },
343
+ { label: 'OnDMARC', value: 'ondmarc', disabled: true },
344
+ { label: 'OnINBOX', value: 'oninbox' },
345
+ { label: 'InGRAIN', value: 'ingrain' },
346
+ ]}
347
+ tintColor="#666"
348
+ value="ondmarc"
349
+ onChange={(value) => console.info('Selected: ' + value)}
350
+ />
351
+ </div>
352
+ </div>
353
+ ```
354
+
355
+ ### useWindowed examples
356
+
357
+ ```jsx
358
+ <div
359
+ style={{
360
+ display: 'flex',
361
+ flexWrap: 'wrap',
362
+ flexDirection: 'row',
363
+ alignItems: 'center',
364
+ justifyContent: 'space-evenly',
365
+ }}
366
+ >
367
+ <div style={{ display: 'flex', flex: 1, padding: '1em' }}>
368
+ <Select
369
+ useWindowed
370
+ id="domain-disabled-1"
371
+ label="Domain with disabled items"
372
+ options={[
373
+ { label: 'Red Sift', value: 'redsift' },
374
+ { label: 'OnDMARC', value: 'ondmarc' },
375
+ { label: 'OnINBOX', value: 'oninbox' },
376
+ { label: 'InGRAIN', value: 'ingrain' },
377
+ ]}
378
+ tintColor="#02ac61"
379
+ value="ondmarc"
380
+ onChange={(value) => console.info('Selected: ' + value)}
381
+ />
382
+ <Select
383
+ id="domain-disabled-2"
384
+ label="Domain with string label"
385
+ variant="basic"
386
+ isSearchable
387
+ options={[
388
+ {
389
+ value: 'asulab.ch',
390
+ },
391
+ {
392
+ value: 'belenoscleanpower.com',
393
+ },
394
+ {
395
+ value: 'belenosengineering.com',
396
+ },
397
+ {
398
+ value: 'cdnp.ch',
399
+ },
400
+ {
401
+ value: 'chh-microtechnique.ch',
402
+ },
403
+ {
404
+ value: 'citedutemps.com',
405
+ },
406
+ {
407
+ value: 'comadur.ch',
408
+ },
409
+ {
410
+ value: 'distico.ch',
411
+ },
412
+ {
413
+ value: 'dyb.ch',
414
+ },
415
+ {
416
+ value: 'emmicro-us.com',
417
+ },
418
+ {
419
+ value: 'emmicroelectronic.com',
420
+ },
421
+ {
422
+ value: 'th.eta.ch',
423
+ },
424
+ {
425
+ value: 'eta.ch',
426
+ },
427
+ {
428
+ value: 'ruedinsa.ch',
429
+ },
430
+ {
431
+ value: 'uhrenmuseum-glashuette.com',
432
+ },
433
+ {
434
+ value: 'icb.ch',
435
+ },
436
+ {
437
+ value: 'lascor.it',
438
+ },
439
+ {
440
+ value: 'meco.ch',
441
+ },
442
+ {
443
+ value: 'microcrystal.com',
444
+ },
445
+ {
446
+ value: 'moebius-lubricants.ch',
447
+ },
448
+ {
449
+ value: 'nivarox.ch',
450
+ },
451
+ {
452
+ value: 'renata.com',
453
+ },
454
+ {
455
+ value: 'st-sportservice.com',
456
+ },
457
+ {
458
+ value: 'simon-membrez.ch',
459
+ },
460
+ {
461
+ value: 'swatch-art-peace-hotel.com',
462
+ },
463
+ {
464
+ value: 'swatchgroup.com',
465
+ },
466
+ {
467
+ value: 'swisstiming.com',
468
+ },
469
+ {
470
+ value: 'universo.ch',
471
+ },
472
+ {
473
+ value: 'leprelet.ch',
474
+ },
475
+ {
476
+ value: 'microcrystal.ch',
477
+ },
478
+ {
479
+ value: 'novi.ch',
480
+ },
481
+ {
482
+ value: 'rubattel-weyermann.ch',
483
+ },
484
+ {
485
+ value: 'swatchgroupimmo.com',
486
+ },
487
+ {
488
+ value: 'termiboites.ch',
489
+ },
490
+ {
491
+ value: 'swatchgroup.ae',
492
+ },
493
+ {
494
+ value: 'swatchgroup.at',
495
+ },
496
+ {
497
+ value: 'swatchgroup.co.id',
498
+ },
499
+ {
500
+ value: 'swatchgroup.co.za',
501
+ },
502
+ {
503
+ value: 'swatchgroup.com.au',
504
+ },
505
+ {
506
+ value: 'swatchgroup.com.my',
507
+ },
508
+ {
509
+ value: 'swatchgroup.com.sg',
510
+ },
511
+ {
512
+ value: 'swatchgroup.biz',
513
+ },
514
+ {
515
+ value: 'bcpe.ch',
516
+ },
517
+ {
518
+ value: 'emmarin.ch',
519
+ },
520
+ {
521
+ value: 'emmarin.com',
522
+ },
523
+ {
524
+ value: 'emmicroelectronic-us.com',
525
+ },
526
+ {
527
+ value: 'emmicroelectronic.ch',
528
+ },
529
+ {
530
+ value: 'assemti.ch',
531
+ },
532
+ {
533
+ value: 'endura.ch',
534
+ },
535
+ {
536
+ value: 'sefea.com',
537
+ },
538
+ {
539
+ value: 'indexor.ch',
540
+ },
541
+ {
542
+ value: 'tourbillon.com',
543
+ },
544
+ {
545
+ value: 'nghayekwatchmakingschool.com',
546
+ },
547
+ {
548
+ value: 'microcrystal.de',
549
+ },
550
+ {
551
+ value: 'ceursh.com',
552
+ },
553
+ {
554
+ value: 'microcomponents.ch',
555
+ },
556
+ {
557
+ value: 'smh.ch',
558
+ },
559
+ {
560
+ value: 'valdar.ch',
561
+ },
562
+ {
563
+ value: 'swatchgroup.ch',
564
+ },
565
+ {
566
+ value: 'balmainwatches.com',
567
+ },
568
+ {
569
+ value: 'blancpain.com',
570
+ },
571
+ {
572
+ value: 'blancpain.ch',
573
+ },
574
+ {
575
+ value: 'breguet.ch',
576
+ },
577
+ {
578
+ value: 'breguet.com',
579
+ },
580
+ {
581
+ value: 'certina.ch',
582
+ },
583
+ {
584
+ value: 'certina.com',
585
+ },
586
+ {
587
+ value: 'glashuette-original.com',
588
+ },
589
+ {
590
+ value: 'hamiltonwatch.com',
591
+ },
592
+ {
593
+ value: 'jaquet-droz.com',
594
+ },
595
+ {
596
+ value: 'longines.com',
597
+ },
598
+ {
599
+ value: 'mido.ch',
600
+ },
601
+ {
602
+ value: 'omegacs.ch',
603
+ },
604
+ {
605
+ value: 'omegawatches.com',
606
+ },
607
+ {
608
+ value: 'rado.com',
609
+ },
610
+ {
611
+ value: 'swatch.com',
612
+ },
613
+ {
614
+ value: 'tissotwatches.com',
615
+ },
616
+ {
617
+ value: 'union-glashuette.com',
618
+ },
619
+ {
620
+ value: 'omega.ch',
621
+ },
622
+ {
623
+ value: 'timeflagship.com',
624
+ },
625
+ {
626
+ value: 'swatch.ca',
627
+ },
628
+ {
629
+ value: 'swatch.es',
630
+ },
631
+ {
632
+ value: 'swatch.fr',
633
+ },
634
+ {
635
+ value: 'swatch.it',
636
+ },
637
+ {
638
+ value: 'swatchretail.com',
639
+ },
640
+ {
641
+ value: 'tissot.ch',
642
+ },
643
+ {
644
+ value: 'tissotshop.com',
645
+ },
646
+ {
647
+ value: 'tissotwatches.ca',
648
+ },
649
+ {
650
+ value: 'midowatches.com',
651
+ },
652
+ {
653
+ value: 'tissot-academy.com',
654
+ },
655
+ {
656
+ value: 'tissottiming.com',
657
+ },
658
+ {
659
+ value: 'swatch.ch',
660
+ },
661
+ {
662
+ value: 'jaquetdroz.com',
663
+ },
664
+ {
665
+ value: 'certina.ru',
666
+ },
667
+ {
668
+ value: 'longines.de',
669
+ },
670
+ {
671
+ value: 'zifferblaetter.de',
672
+ },
673
+ {
674
+ value: 'longines.fr',
675
+ },
676
+ {
677
+ value: 'longines.co.uk',
678
+ },
679
+ {
680
+ value: 'longines.com.au',
681
+ },
682
+ {
683
+ value: 'longines.it',
684
+ },
685
+ {
686
+ value: 'longines.nl',
687
+ },
688
+ {
689
+ value: 'swatchstorebologna.it',
690
+ },
691
+ {
692
+ value: 'tissot.pl',
693
+ },
694
+ {
695
+ value: 'balmainwatches.ch',
696
+ },
697
+ {
698
+ value: 'bel.swatchgroup.com',
699
+ },
700
+ {
701
+ value: 'br.swatchgroup.com',
702
+ },
703
+ {
704
+ value: 'cn.swatchgroup.com',
705
+ },
706
+ {
707
+ value: 'cpk.swatchgroup.com',
708
+ },
709
+ {
710
+ value: 'cs.swatchgroup.com',
711
+ },
712
+ {
713
+ value: 'dk.swatchgroup.com',
714
+ },
715
+ {
716
+ value: 'es.swatchgroup.com',
717
+ },
718
+ {
719
+ value: 'fi.swatchgroup.com',
720
+ },
721
+ {
722
+ value: 'gr.swatchgroup.com',
723
+ },
724
+ {
725
+ value: 'hk.swatchgroup.com',
726
+ },
727
+ {
728
+ value: 'in.swatchgroup.com',
729
+ },
730
+ {
731
+ value: 'ir.swatchgroup.com',
732
+ },
733
+ {
734
+ value: 'it.swatchgroup.com',
735
+ },
736
+ {
737
+ value: 'jp.swatchgroup.com',
738
+ },
739
+ {
740
+ value: 'kr.swatchgroup.com',
741
+ },
742
+ {
743
+ value: 'mo.swatchgroup.com',
744
+ },
745
+ {
746
+ value: 'nl.swatchgroup.com',
747
+ },
748
+ {
749
+ value: 'no.swatchgroup.com',
750
+ },
751
+ {
752
+ value: 'ru.swatchgroup.com',
753
+ },
754
+ {
755
+ value: 'se.swatchgroup.com',
756
+ },
757
+ {
758
+ value: 'sh.cn.swatchgroup.com',
759
+ },
760
+ {
761
+ value: 'sz.cn.swatchgroup.com',
762
+ },
763
+ {
764
+ value: 'th.swatchgroup.com',
765
+ },
766
+ {
767
+ value: 'tr.swatchgroup.com',
768
+ },
769
+ {
770
+ value: 'tw.swatchgroup.com',
771
+ },
772
+ {
773
+ value: 'uk.swatchgroup.com',
774
+ },
775
+ {
776
+ value: 'panthera.network',
777
+ },
778
+ {
779
+ value: 'qm.swatchgroup.com',
780
+ },
781
+ {
782
+ value: 'omegatiming.com',
783
+ },
784
+ {
785
+ value: 'swatchgroup.net',
786
+ },
787
+ {
788
+ value: 'hotel.swatch-art-peace-hotel.com',
789
+ },
790
+ {
791
+ value: 'hourpassion.com',
792
+ },
793
+ {
794
+ value: 'omegawatches.cn',
795
+ },
796
+ {
797
+ value: 'manage2sail.com',
798
+ },
799
+ {
800
+ value: 'swatch.cn',
801
+ },
802
+ {
803
+ value: 'swatchgroup.jp',
804
+ },
805
+ {
806
+ value: 'italyplatform.longines.com',
807
+ },
808
+ {
809
+ value: 'newsletter.longines.com',
810
+ },
811
+ {
812
+ value: 'press.omega.ch',
813
+ },
814
+ {
815
+ value: 'omegawatches.com.hk',
816
+ },
817
+ {
818
+ value: 'omegawatches.fr',
819
+ },
820
+ {
821
+ value: 'omegawatches.jp',
822
+ },
823
+ {
824
+ value: 'timeforwomen.com',
825
+ },
826
+ {
827
+ value: 'feelit.rado.com',
828
+ },
829
+ {
830
+ value: 'newsletter.rado.com',
831
+ },
832
+ {
833
+ value: 'us.rado.com',
834
+ },
835
+ {
836
+ value: 'noreply-email.swatch.com',
837
+ },
838
+ {
839
+ value: 'reply-email.swatch.com',
840
+ },
841
+ {
842
+ value: 'us.swatch.com',
843
+ },
844
+ {
845
+ value: 'swatch.ua',
846
+ },
847
+ {
848
+ value: 'fr.swatchgroup.com',
849
+ },
850
+ {
851
+ value: 'tsga.swatchgroup.com',
852
+ },
853
+ {
854
+ value: 'highlights.omegatiming.com',
855
+ },
856
+ {
857
+ value: 'tissotarena.ch',
858
+ },
859
+ {
860
+ value: 'eml.us.tissotshop.com',
861
+ },
862
+ {
863
+ value: 'tissotvelodrome.ch',
864
+ },
865
+ {
866
+ value: 'newsletter.tissotwatches.com',
867
+ },
868
+ {
869
+ value: 'asucomm.ch',
870
+ },
871
+ {
872
+ value: 'asulab.com',
873
+ },
874
+ {
875
+ value: 'asulab.eu',
876
+ },
877
+ {
878
+ value: 'asulab.info',
879
+ },
880
+ {
881
+ value: 'asulab.net',
882
+ },
883
+ {
884
+ value: 'asulab.org',
885
+ },
886
+ {
887
+ value: 'asulab.swiss',
888
+ },
889
+ {
890
+ value: 'balmain-watch.com',
891
+ },
892
+ {
893
+ value: 'balmain-watches.com',
894
+ },
895
+ {
896
+ value: 'balmain.in',
897
+ },
898
+ {
899
+ value: 'balmain.swiss',
900
+ },
901
+ {
902
+ value: 'balmain.watch',
903
+ },
904
+ {
905
+ value: 'balmainhodinky.cz',
906
+ },
907
+ {
908
+ value: 'balmainhodinky.sk',
909
+ },
910
+ {
911
+ value: 'balmainwatch.biz',
912
+ },
913
+ {
914
+ value: 'balmainwatch.ch',
915
+ },
916
+ {
917
+ value: 'balmainwatch.info',
918
+ },
919
+ {
920
+ value: 'balmainwatch.net',
921
+ },
922
+ {
923
+ value: 'balmainwatch.org',
924
+ },
925
+ {
926
+ value: 'balmainwatches-vintage.com',
927
+ },
928
+ {
929
+ value: 'balmainwatches.ar',
930
+ },
931
+ {
932
+ value: 'balmainwatches.asia',
933
+ },
934
+ {
935
+ value: 'balmainwatches.at',
936
+ },
937
+ {
938
+ value: 'balmainwatches.be',
939
+ },
940
+ {
941
+ value: 'balmainwatches.biz',
942
+ },
943
+ {
944
+ value: 'balmainwatches.cn',
945
+ },
946
+ {
947
+ value: 'balmainwatches.co.kr',
948
+ },
949
+ {
950
+ value: 'balmainwatches.com.my',
951
+ },
952
+ {
953
+ value: 'balmainwatches.com.sg',
954
+ },
955
+ {
956
+ value: 'balmainwatches.com.tw',
957
+ },
958
+ {
959
+ value: 'balmainwatches.cz',
960
+ },
961
+ {
962
+ value: 'balmainwatches.de',
963
+ },
964
+ {
965
+ value: 'balmainwatches.es',
966
+ },
967
+ {
968
+ value: 'balmainwatches.eu',
969
+ },
970
+ {
971
+ value: 'balmainwatches.fr',
972
+ },
973
+ {
974
+ value: 'balmainwatches.hk',
975
+ },
976
+ {
977
+ value: 'balmainwatches.in',
978
+ },
979
+ {
980
+ value: 'balmainwatches.info',
981
+ },
982
+ {
983
+ value: 'balmainwatches.it',
984
+ },
985
+ {
986
+ value: 'balmainwatches.jp',
987
+ },
988
+ {
989
+ value: 'balmainwatches.kr',
990
+ },
991
+ {
992
+ value: 'balmainwatches.lu',
993
+ },
994
+ {
995
+ value: 'balmainwatches.my',
996
+ },
997
+ {
998
+ value: 'balmainwatches.nl',
999
+ },
1000
+ {
1001
+ value: 'balmainwatches.sg',
1002
+ },
1003
+ {
1004
+ value: 'balmainwatches.sk',
1005
+ },
1006
+ {
1007
+ value: 'balmainwatches.tw',
1008
+ },
1009
+ {
1010
+ value: 'balmainwatches.us',
1011
+ },
1012
+ {
1013
+ value: 'balmainwatches.台灣',
1014
+ },
1015
+ {
1016
+ value: 'balmainwatchesvintage.com',
1017
+ },
1018
+ {
1019
+ value: 'hodinky-balmain.cz',
1020
+ },
1021
+ {
1022
+ value: 'hodinky-balmain.sk',
1023
+ },
1024
+ {
1025
+ value: 'hodinkybalmain.cz',
1026
+ },
1027
+ {
1028
+ value: 'hodinkybalmain.sk',
1029
+ },
1030
+ {
1031
+ value: 'pierrebalmain.com.fr',
1032
+ },
1033
+ {
1034
+ value: 'pierrebalmainwatches.com',
1035
+ },
1036
+ {
1037
+ value: 'バルマンウォッチ.com',
1038
+ },
1039
+ {
1040
+ value: 'バルマンウォッチ.net',
1041
+ },
1042
+ {
1043
+ value: '宝曼.com',
1044
+ },
1045
+ {
1046
+ value: '宝曼.net',
1047
+ },
1048
+ {
1049
+ value: 'belenos-clean-power.asia',
1050
+ },
1051
+ {
1052
+ value: 'belenos-clean-power.biz',
1053
+ },
1054
+ {
1055
+ value: 'belenos-clean-power.ch',
1056
+ },
1057
+ {
1058
+ value: 'belenos-clean-power.co.uk',
1059
+ },
1060
+ {
1061
+ value: 'belenos-clean-power.com',
1062
+ },
1063
+ {
1064
+ value: 'belenos-clean-power.de',
1065
+ },
1066
+ {
1067
+ value: 'belenos-clean-power.es',
1068
+ },
1069
+ {
1070
+ value: 'belenos-clean-power.eu',
1071
+ },
1072
+ {
1073
+ value: 'belenos-clean-power.fr',
1074
+ },
1075
+ {
1076
+ value: 'belenos-clean-power.info',
1077
+ },
1078
+ {
1079
+ value: 'belenos-clean-power.it',
1080
+ },
1081
+ {
1082
+ value: 'belenos-clean-power.li',
1083
+ },
1084
+ {
1085
+ value: 'belenos-clean-power.mobi',
1086
+ },
1087
+ {
1088
+ value: 'belenos-clean-power.net',
1089
+ },
1090
+ {
1091
+ value: 'belenos-clean-power.org',
1092
+ },
1093
+ {
1094
+ value: 'belenos-clean-power.us',
1095
+ },
1096
+ {
1097
+ value: 'belenos-cleanpower.asia',
1098
+ },
1099
+ {
1100
+ value: 'belenos-cleanpower.biz',
1101
+ },
1102
+ {
1103
+ value: 'belenos-cleanpower.ch',
1104
+ },
1105
+ {
1106
+ value: 'belenos-cleanpower.co.uk',
1107
+ },
1108
+ {
1109
+ value: 'belenos-cleanpower.com',
1110
+ },
1111
+ {
1112
+ value: 'belenos-cleanpower.de',
1113
+ },
1114
+ {
1115
+ value: 'belenos-cleanpower.es',
1116
+ },
1117
+ {
1118
+ value: 'belenos-cleanpower.eu',
1119
+ },
1120
+ {
1121
+ value: 'belenos-cleanpower.fr',
1122
+ },
1123
+ {
1124
+ value: 'belenos-cleanpower.info',
1125
+ },
1126
+ {
1127
+ value: 'belenos-cleanpower.it',
1128
+ },
1129
+ {
1130
+ value: 'belenos-cleanpower.li',
1131
+ },
1132
+ {
1133
+ value: 'belenos-cleanpower.mobi',
1134
+ },
1135
+ {
1136
+ value: 'belenos-cleanpower.net',
1137
+ },
1138
+ {
1139
+ value: 'belenos-cleanpower.org',
1140
+ },
1141
+ {
1142
+ value: 'belenos-cleanpower.us',
1143
+ },
1144
+ {
1145
+ value: 'belenos.asia',
1146
+ },
1147
+ {
1148
+ value: 'belenos.info',
1149
+ },
1150
+ {
1151
+ value: 'belenos.mobi',
1152
+ },
1153
+ {
1154
+ value: 'belenos.us',
1155
+ },
1156
+ {
1157
+ value: 'belenoscleanpower.asia',
1158
+ },
1159
+ {
1160
+ value: 'belenoscleanpower.biz',
1161
+ },
1162
+ {
1163
+ value: 'belenoscleanpower.ch',
1164
+ },
1165
+ {
1166
+ value: 'belenoscleanpower.co.uk',
1167
+ },
1168
+ {
1169
+ value: 'belenoscleanpower.de',
1170
+ },
1171
+ {
1172
+ value: 'belenoscleanpower.es',
1173
+ },
1174
+ {
1175
+ value: 'belenoscleanpower.eu',
1176
+ },
1177
+ {
1178
+ value: 'belenoscleanpower.fr',
1179
+ },
1180
+ {
1181
+ value: 'belenoscleanpower.info',
1182
+ },
1183
+ {
1184
+ value: 'belenoscleanpower.it',
1185
+ },
1186
+ {
1187
+ value: 'belenoscleanpower.li',
1188
+ },
1189
+ {
1190
+ value: 'belenoscleanpower.mobi',
1191
+ },
1192
+ {
1193
+ value: 'belenoscleanpower.net',
1194
+ },
1195
+ {
1196
+ value: 'belenoscleanpower.org',
1197
+ },
1198
+ {
1199
+ value: 'belenoscleanpower.us',
1200
+ },
1201
+ {
1202
+ value: 'hydrogen-power.ch',
1203
+ },
1204
+ {
1205
+ value: 'hydrogenpower.ch',
1206
+ },
1207
+ {
1208
+ value: 'blancpain.co.hu',
1209
+ },
1210
+ {
1211
+ value: 'blancpain.de',
1212
+ },
1213
+ {
1214
+ value: 'blancpain.hu',
1215
+ },
1216
+ {
1217
+ value: 'fredericpiguet.ch',
1218
+ },
1219
+ {
1220
+ value: 'blancpain-ocean-commitment.com',
1221
+ },
1222
+ {
1223
+ value: 'blancpain.cn',
1224
+ },
1225
+ {
1226
+ value: 'blancpain.tv',
1227
+ },
1228
+ {
1229
+ value: '50fathoms.com',
1230
+ },
1231
+ {
1232
+ value: 'blanc-pain.com',
1233
+ },
1234
+ {
1235
+ value: 'blancpain-ocean-commitment.ch',
1236
+ },
1237
+ {
1238
+ value: 'blancpain-ocean-commitment.cn',
1239
+ },
1240
+ {
1241
+ value: 'blancpain-ocean-commitment.net',
1242
+ },
1243
+ {
1244
+ value: 'blancpain-ocean-commitment.org',
1245
+ },
1246
+ {
1247
+ value: 'blancpain-oceancommitment.ch',
1248
+ },
1249
+ {
1250
+ value: 'blancpain-oceancommitment.com',
1251
+ },
1252
+ {
1253
+ value: 'blancpain-oceancommitment.net',
1254
+ },
1255
+ {
1256
+ value: 'blancpain-oceancommitment.org',
1257
+ },
1258
+ {
1259
+ value: 'blancpain-store.com',
1260
+ },
1261
+ {
1262
+ value: 'blancpain-vintage.com',
1263
+ },
1264
+ {
1265
+ value: 'blancpain-watches.com',
1266
+ },
1267
+ {
1268
+ value: 'blancpain-watches.net',
1269
+ },
1270
+ {
1271
+ value: 'blancpain-watches.ru',
1272
+ },
1273
+ {
1274
+ value: 'blancpain.ar',
1275
+ },
1276
+ {
1277
+ value: 'blancpain.asia',
1278
+ },
1279
+ {
1280
+ value: 'blancpain.at',
1281
+ },
1282
+ {
1283
+ value: 'blancpain.be',
1284
+ },
1285
+ {
1286
+ value: 'blancpain.berlin',
1287
+ },
1288
+ {
1289
+ value: 'blancpain.biz',
1290
+ },
1291
+ {
1292
+ value: 'blancpain.blog',
1293
+ },
1294
+ {
1295
+ value: 'blancpain.ca',
1296
+ },
1297
+ {
1298
+ value: 'blancpain.club',
1299
+ },
1300
+ {
1301
+ value: 'blancpain.cm',
1302
+ },
1303
+ {
1304
+ value: 'blancpain.co',
1305
+ },
1306
+ {
1307
+ value: 'blancpain.co.id',
1308
+ },
1309
+ {
1310
+ value: 'blancpain.co.il',
1311
+ },
1312
+ {
1313
+ value: 'blancpain.co.in',
1314
+ },
1315
+ {
1316
+ value: 'blancpain.co.kr',
1317
+ },
1318
+ {
1319
+ value: 'blancpain.co.uk',
1320
+ },
1321
+ {
1322
+ value: 'blancpain.co.za',
1323
+ },
1324
+ {
1325
+ value: 'blancpain.com.au',
1326
+ },
1327
+ {
1328
+ value: 'blancpain.com.br',
1329
+ },
1330
+ {
1331
+ value: 'blancpain.com.cn',
1332
+ },
1333
+ {
1334
+ value: 'blancpain.com.es',
1335
+ },
1336
+ {
1337
+ value: 'blancpain.com.fr',
1338
+ },
1339
+ {
1340
+ value: 'blancpain.com.hk',
1341
+ },
1342
+ {
1343
+ value: 'blancpain.com.mx',
1344
+ },
1345
+ {
1346
+ value: 'blancpain.com.my',
1347
+ },
1348
+ {
1349
+ value: 'blancpain.com.pt',
1350
+ },
1351
+ {
1352
+ value: 'blancpain.com.ro',
1353
+ },
1354
+ {
1355
+ value: 'blancpain.com.sg',
1356
+ },
1357
+ {
1358
+ value: 'blancpain.com.tr',
1359
+ },
1360
+ {
1361
+ value: 'blancpain.com.tw',
1362
+ },
1363
+ {
1364
+ value: 'blancpain.com.vn',
1365
+ },
1366
+ {
1367
+ value: 'blancpain.cz',
1368
+ },
1369
+ {
1370
+ value: 'blancpain.dk',
1371
+ },
1372
+ {
1373
+ value: 'blancpain.es',
1374
+ },
1375
+ {
1376
+ value: 'blancpain.eu',
1377
+ },
1378
+ {
1379
+ value: 'blancpain.fi',
1380
+ },
1381
+ {
1382
+ value: 'blancpain.fr',
1383
+ },
1384
+ {
1385
+ value: 'blancpain.gr',
1386
+ },
1387
+ {
1388
+ value: 'blancpain.hk',
1389
+ },
1390
+ {
1391
+ value: 'blancpain.id',
1392
+ },
1393
+ {
1394
+ value: 'blancpain.ie',
1395
+ },
1396
+ {
1397
+ value: 'blancpain.in',
1398
+ },
1399
+ {
1400
+ value: 'blancpain.info',
1401
+ },
1402
+ {
1403
+ value: 'blancpain.it',
1404
+ },
1405
+ {
1406
+ value: 'blancpain.jp',
1407
+ },
1408
+ {
1409
+ value: 'blancpain.kaufen',
1410
+ },
1411
+ {
1412
+ value: 'blancpain.kr',
1413
+ },
1414
+ {
1415
+ value: 'blancpain.li',
1416
+ },
1417
+ {
1418
+ value: 'blancpain.london',
1419
+ },
1420
+ {
1421
+ value: 'blancpain.lu',
1422
+ },
1423
+ {
1424
+ value: 'blancpain.luxe',
1425
+ },
1426
+ {
1427
+ value: 'blancpain.luxury',
1428
+ },
1429
+ {
1430
+ value: 'blancpain.me',
1431
+ },
1432
+ {
1433
+ value: 'blancpain.mobi',
1434
+ },
1435
+ {
1436
+ value: 'blancpain.moscow',
1437
+ },
1438
+ {
1439
+ value: 'blancpain.mx',
1440
+ },
1441
+ {
1442
+ value: 'blancpain.my',
1443
+ },
1444
+ {
1445
+ value: 'blancpain.net',
1446
+ },
1447
+ {
1448
+ value: 'blancpain.nl',
1449
+ },
1450
+ {
1451
+ value: 'blancpain.no',
1452
+ },
1453
+ {
1454
+ value: 'blancpain.nu',
1455
+ },
1456
+ {
1457
+ value: 'blancpain.nyc',
1458
+ },
1459
+ {
1460
+ value: 'blancpain.org',
1461
+ },
1462
+ {
1463
+ value: 'blancpain.paris',
1464
+ },
1465
+ {
1466
+ value: 'blancpain.pt',
1467
+ },
1468
+ {
1469
+ value: 'blancpain.racing',
1470
+ },
1471
+ {
1472
+ value: 'blancpain.ru',
1473
+ },
1474
+ {
1475
+ value: 'blancpain.se',
1476
+ },
1477
+ {
1478
+ value: 'blancpain.sg',
1479
+ },
1480
+ {
1481
+ value: 'blancpain.shop',
1482
+ },
1483
+ {
1484
+ value: 'blancpain.si',
1485
+ },
1486
+ {
1487
+ value: 'blancpain.sk',
1488
+ },
1489
+ {
1490
+ value: 'blancpain.store',
1491
+ },
1492
+ {
1493
+ value: 'blancpain.swiss',
1494
+ },
1495
+ {
1496
+ value: 'blancpain.tokyo',
1497
+ },
1498
+ {
1499
+ value: 'blancpain.top',
1500
+ },
1501
+ {
1502
+ value: 'blancpain.tw',
1503
+ },
1504
+ {
1505
+ value: 'blancpain.uk',
1506
+ },
1507
+ {
1508
+ value: 'blancpain.us',
1509
+ },
1510
+ {
1511
+ value: 'blancpain.vn',
1512
+ },
1513
+ {
1514
+ value: 'blancpain.watch',
1515
+ },
1516
+ {
1517
+ value: 'blancpain.website',
1518
+ },
1519
+ {
1520
+ value: 'blancpain.中国',
1521
+ },
1522
+ {
1523
+ value: 'blancpain.台灣',
1524
+ },
1525
+ {
1526
+ value: 'blancpainboutique.de',
1527
+ },
1528
+ {
1529
+ value: 'blancpainboutiques.com',
1530
+ },
1531
+ {
1532
+ value: 'blancpainforum.ch',
1533
+ },
1534
+ {
1535
+ value: 'blancpainforum.com',
1536
+ },
1537
+ {
1538
+ value: 'blancpaingtseries.com',
1539
+ },
1540
+ {
1541
+ value: 'blancpainoceancommitment.ch',
1542
+ },
1543
+ {
1544
+ value: 'blancpainoceancommitment.com',
1545
+ },
1546
+ {
1547
+ value: 'blancpainoceancommitment.net',
1548
+ },
1549
+ {
1550
+ value: 'blancpainoceancommitment.org',
1551
+ },
1552
+ {
1553
+ value: 'blancpainstore.com',
1554
+ },
1555
+ {
1556
+ value: 'blancpainstore.net',
1557
+ },
1558
+ {
1559
+ value: 'blancpainvintage.com',
1560
+ },
1561
+ {
1562
+ value: 'blancpainwatch.com',
1563
+ },
1564
+ {
1565
+ value: 'blancpainwatches.biz',
1566
+ },
1567
+ {
1568
+ value: 'blancpainwatches.cn',
1569
+ },
1570
+ {
1571
+ value: 'blancpainwatches.com',
1572
+ },
1573
+ {
1574
+ value: 'blancpainwatches.com.cn',
1575
+ },
1576
+ {
1577
+ value: 'blancpainwatches.de',
1578
+ },
1579
+ {
1580
+ value: 'blancpainwatches.info',
1581
+ },
1582
+ {
1583
+ value: 'blancpainwatches.net',
1584
+ },
1585
+ {
1586
+ value: 'blancpainwatches.org',
1587
+ },
1588
+ {
1589
+ value: 'blancpainwatches.ru',
1590
+ },
1591
+ {
1592
+ value: 'blancpainwatches.us',
1593
+ },
1594
+ {
1595
+ value: 'blancpainwomen.ch',
1596
+ },
1597
+ {
1598
+ value: 'blancpainwomen.com',
1599
+ },
1600
+ {
1601
+ value: 'blancpain.co.nl',
1602
+ },
1603
+ {
1604
+ value: 'blancpain.com.ru',
1605
+ },
1606
+ {
1607
+ value: 'blancpainwatches.com.ru',
1608
+ },
1609
+ {
1610
+ value: 'edition-fifty-fathoms.com',
1611
+ },
1612
+ {
1613
+ value: 'fifty-fathoms-edition.com',
1614
+ },
1615
+ {
1616
+ value: 'fiftyfathoms.ch',
1617
+ },
1618
+ {
1619
+ value: 'fiftyfathoms.org',
1620
+ },
1621
+ {
1622
+ value: 'fiftyfathomswatches.ch',
1623
+ },
1624
+ {
1625
+ value: 'fiftyfathomswatches.com',
1626
+ },
1627
+ {
1628
+ value: 'fiftyfathomswatches.net',
1629
+ },
1630
+ {
1631
+ value: 'frederic-piguet.ch',
1632
+ },
1633
+ {
1634
+ value: 'frederic-piguet.com',
1635
+ },
1636
+ {
1637
+ value: 'fredericpiguet.com',
1638
+ },
1639
+ {
1640
+ value: 'myblancpain.com',
1641
+ },
1642
+ {
1643
+ value: 'ocean-commitment.ch',
1644
+ },
1645
+ {
1646
+ value: 'ocean-commitment.com',
1647
+ },
1648
+ {
1649
+ value: 'ocean-commitment.net',
1650
+ },
1651
+ {
1652
+ value: 'ocean-commitment.org',
1653
+ },
1654
+ {
1655
+ value: 'oceancommitment.ch',
1656
+ },
1657
+ {
1658
+ value: 'oceancommitment.com',
1659
+ },
1660
+ {
1661
+ value: 'oceancommitment.net',
1662
+ },
1663
+ {
1664
+ value: 'oceancommitment.org',
1665
+ },
1666
+ {
1667
+ value: 'wwwblancpain.com',
1668
+ },
1669
+ {
1670
+ value: 'бланпэн.рф',
1671
+ },
1672
+ {
1673
+ value: 'ブランパン.com',
1674
+ },
1675
+ {
1676
+ value: 'ブランパン.net',
1677
+ },
1678
+ {
1679
+ value: 'ブランパンウォッチ.com',
1680
+ },
1681
+ {
1682
+ value: 'ブランパンウォッチ.net',
1683
+ },
1684
+ {
1685
+ value: '宝珀表.com',
1686
+ },
1687
+ {
1688
+ value: '寶珀.com',
1689
+ },
1690
+ {
1691
+ value: '寶珀.hk',
1692
+ },
1693
+ {
1694
+ value: '寶珀.tw',
1695
+ },
1696
+ {
1697
+ value: '寶珀.公司.hk',
1698
+ },
1699
+ {
1700
+ value: '寶珀.台灣',
1701
+ },
1702
+ {
1703
+ value: '寶珀.香港',
1704
+ },
1705
+ {
1706
+ value: '寶珀表.com',
1707
+ },
1708
+ {
1709
+ value: '블랑팡.com',
1710
+ },
1711
+ {
1712
+ value: '블랑팡.kr',
1713
+ },
1714
+ {
1715
+ value: '블랑팡.net',
1716
+ },
1717
+ {
1718
+ value: '블랑팡와치.com',
1719
+ },
1720
+ {
1721
+ value: 'breguet.at',
1722
+ },
1723
+ {
1724
+ value: 'breguet.co.hu',
1725
+ },
1726
+ {
1727
+ value: 'breguet.hu',
1728
+ },
1729
+ {
1730
+ value: 'nouvelle-lemania.ch',
1731
+ },
1732
+ {
1733
+ value: 'breguet.cn',
1734
+ },
1735
+ {
1736
+ value: 'breget.com',
1737
+ },
1738
+ {
1739
+ value: 'bregeut.ch',
1740
+ },
1741
+ {
1742
+ value: 'bregeut.com',
1743
+ },
1744
+ {
1745
+ value: 'bregeut.fr',
1746
+ },
1747
+ {
1748
+ value: 'bregeut.net',
1749
+ },
1750
+ {
1751
+ value: 'bregeut.org',
1752
+ },
1753
+ {
1754
+ value: 'breguet-store.com',
1755
+ },
1756
+ {
1757
+ value: 'breguet-store.net',
1758
+ },
1759
+ {
1760
+ value: 'breguet-vintage.com',
1761
+ },
1762
+ {
1763
+ value: 'breguet-watch.com',
1764
+ },
1765
+ {
1766
+ value: 'breguet-watches.ch',
1767
+ },
1768
+ {
1769
+ value: 'breguet-watches.com',
1770
+ },
1771
+ {
1772
+ value: 'breguet-watches.net',
1773
+ },
1774
+ {
1775
+ value: 'breguet-watches.ru',
1776
+ },
1777
+ {
1778
+ value: 'breguet-watches.us',
1779
+ },
1780
+ {
1781
+ value: 'breguet.ae',
1782
+ },
1783
+ {
1784
+ value: 'breguet.ag',
1785
+ },
1786
+ {
1787
+ value: 'breguet.ai',
1788
+ },
1789
+ {
1790
+ value: 'breguet.ar',
1791
+ },
1792
+ {
1793
+ value: 'breguet.asia',
1794
+ },
1795
+ {
1796
+ value: 'breguet.be',
1797
+ },
1798
+ {
1799
+ value: 'breguet.berlin',
1800
+ },
1801
+ {
1802
+ value: 'breguet.biz',
1803
+ },
1804
+ {
1805
+ value: 'breguet.blog',
1806
+ },
1807
+ {
1808
+ value: 'breguet.by',
1809
+ },
1810
+ {
1811
+ value: 'breguet.ca',
1812
+ },
1813
+ {
1814
+ value: 'breguet.cc',
1815
+ },
1816
+ {
1817
+ value: 'breguet.cl',
1818
+ },
1819
+ {
1820
+ value: 'breguet.club',
1821
+ },
1822
+ {
1823
+ value: 'breguet.cm',
1824
+ },
1825
+ {
1826
+ value: 'breguet.co',
1827
+ },
1828
+ {
1829
+ value: 'breguet.co.cr',
1830
+ },
1831
+ {
1832
+ value: 'breguet.co.id',
1833
+ },
1834
+ {
1835
+ value: 'breguet.co.il',
1836
+ },
1837
+ {
1838
+ value: 'breguet.co.in',
1839
+ },
1840
+ {
1841
+ value: 'breguet.co.kr',
1842
+ },
1843
+ {
1844
+ value: 'breguet.co.nz',
1845
+ },
1846
+ {
1847
+ value: 'breguet.co.th',
1848
+ },
1849
+ {
1850
+ value: 'breguet.co.uk',
1851
+ },
1852
+ {
1853
+ value: 'breguet.co.za',
1854
+ },
1855
+ {
1856
+ value: 'breguet.com.ai',
1857
+ },
1858
+ {
1859
+ value: 'breguet.com.au',
1860
+ },
1861
+ {
1862
+ value: 'breguet.com.br',
1863
+ },
1864
+ {
1865
+ value: 'breguet.com.cn',
1866
+ },
1867
+ {
1868
+ value: 'breguet.com.co',
1869
+ },
1870
+ {
1871
+ value: 'breguet.com.do',
1872
+ },
1873
+ {
1874
+ value: 'breguet.com.es',
1875
+ },
1876
+ {
1877
+ value: 'breguet.com.gr',
1878
+ },
1879
+ {
1880
+ value: 'breguet.com.hk',
1881
+ },
1882
+ {
1883
+ value: 'breguet.com.hr',
1884
+ },
1885
+ {
1886
+ value: 'breguet.com.lv',
1887
+ },
1888
+ {
1889
+ value: 'breguet.com.ly',
1890
+ },
1891
+ {
1892
+ value: 'breguet.com.mt',
1893
+ },
1894
+ {
1895
+ value: 'breguet.com.mx',
1896
+ },
1897
+ {
1898
+ value: 'breguet.com.my',
1899
+ },
1900
+ {
1901
+ value: 'breguet.com.pl',
1902
+ },
1903
+ {
1904
+ value: 'breguet.com.pt',
1905
+ },
1906
+ {
1907
+ value: 'breguet.com.ro',
1908
+ },
1909
+ {
1910
+ value: 'breguet.com.sa',
1911
+ },
1912
+ {
1913
+ value: 'breguet.com.sg',
1914
+ },
1915
+ {
1916
+ value: 'breguet.com.sv',
1917
+ },
1918
+ {
1919
+ value: 'breguet.com.tr',
1920
+ },
1921
+ {
1922
+ value: 'breguet.com.tw',
1923
+ },
1924
+ {
1925
+ value: 'breguet.com.ua',
1926
+ },
1927
+ {
1928
+ value: 'breguet.com.vn',
1929
+ },
1930
+ {
1931
+ value: 'breguet.cr',
1932
+ },
1933
+ {
1934
+ value: 'breguet.cz',
1935
+ },
1936
+ {
1937
+ value: 'breguet.de',
1938
+ },
1939
+ {
1940
+ value: 'breguet.design',
1941
+ },
1942
+ {
1943
+ value: 'breguet.diamonds',
1944
+ },
1945
+ {
1946
+ value: 'breguet.dk',
1947
+ },
1948
+ {
1949
+ value: 'breguet.do',
1950
+ },
1951
+ {
1952
+ value: 'breguet.ee',
1953
+ },
1954
+ {
1955
+ value: 'breguet.es',
1956
+ },
1957
+ {
1958
+ value: 'breguet.eu',
1959
+ },
1960
+ {
1961
+ value: 'breguet.fi',
1962
+ },
1963
+ {
1964
+ value: 'breguet.fr',
1965
+ },
1966
+ {
1967
+ value: 'breguet.gr',
1968
+ },
1969
+ {
1970
+ value: 'breguet.hk',
1971
+ },
1972
+ {
1973
+ value: 'breguet.id',
1974
+ },
1975
+ {
1976
+ value: 'breguet.ie',
1977
+ },
1978
+ {
1979
+ value: 'breguet.in',
1980
+ },
1981
+ {
1982
+ value: 'breguet.info',
1983
+ },
1984
+ {
1985
+ value: 'breguet.it',
1986
+ },
1987
+ {
1988
+ value: 'breguet.jewelry',
1989
+ },
1990
+ {
1991
+ value: 'breguet.jp',
1992
+ },
1993
+ {
1994
+ value: 'breguet.kaufen',
1995
+ },
1996
+ {
1997
+ value: 'breguet.kr',
1998
+ },
1999
+ {
2000
+ value: 'breguet.li',
2001
+ },
2002
+ {
2003
+ value: 'breguet.london',
2004
+ },
2005
+ {
2006
+ value: 'breguet.lt',
2007
+ },
2008
+ {
2009
+ value: 'breguet.lu',
2010
+ },
2011
+ {
2012
+ value: 'breguet.luxe',
2013
+ },
2014
+ {
2015
+ value: 'breguet.luxury',
2016
+ },
2017
+ {
2018
+ value: 'breguet.lv',
2019
+ },
2020
+ {
2021
+ value: 'breguet.ly',
2022
+ },
2023
+ {
2024
+ value: 'breguet.me',
2025
+ },
2026
+ {
2027
+ value: 'breguet.miami',
2028
+ },
2029
+ {
2030
+ value: 'breguet.mobi',
2031
+ },
2032
+ {
2033
+ value: 'breguet.moscow',
2034
+ },
2035
+ {
2036
+ value: 'breguet.mx',
2037
+ },
2038
+ {
2039
+ value: 'breguet.my',
2040
+ },
2041
+ {
2042
+ value: 'breguet.net',
2043
+ },
2044
+ {
2045
+ value: 'breguet.nl',
2046
+ },
2047
+ {
2048
+ value: 'breguet.no',
2049
+ },
2050
+ {
2051
+ value: 'breguet.nu',
2052
+ },
2053
+ {
2054
+ value: 'breguet.nyc',
2055
+ },
2056
+ {
2057
+ value: 'breguet.nz',
2058
+ },
2059
+ {
2060
+ value: 'breguet.org',
2061
+ },
2062
+ {
2063
+ value: 'breguet.paris',
2064
+ },
2065
+ {
2066
+ value: 'breguet.ph',
2067
+ },
2068
+ {
2069
+ value: 'breguet.pro',
2070
+ },
2071
+ {
2072
+ value: 'breguet.pt',
2073
+ },
2074
+ {
2075
+ value: 'breguet.ro',
2076
+ },
2077
+ {
2078
+ value: 'breguet.rs',
2079
+ },
2080
+ {
2081
+ value: 'breguet.ru',
2082
+ },
2083
+ {
2084
+ value: 'breguet.se',
2085
+ },
2086
+ {
2087
+ value: 'breguet.sg',
2088
+ },
2089
+ {
2090
+ value: 'breguet.shop',
2091
+ },
2092
+ {
2093
+ value: 'breguet.si',
2094
+ },
2095
+ {
2096
+ value: 'breguet.sk',
2097
+ },
2098
+ {
2099
+ value: 'breguet.sl',
2100
+ },
2101
+ {
2102
+ value: 'breguet.store',
2103
+ },
2104
+ {
2105
+ value: 'breguet.sv',
2106
+ },
2107
+ {
2108
+ value: 'breguet.swiss',
2109
+ },
2110
+ {
2111
+ value: 'breguet.sx',
2112
+ },
2113
+ {
2114
+ value: 'breguet.tm',
2115
+ },
2116
+ {
2117
+ value: 'breguet.tokyo',
2118
+ },
2119
+ {
2120
+ value: 'breguet.tv',
2121
+ },
2122
+ {
2123
+ value: 'breguet.tw',
2124
+ },
2125
+ {
2126
+ value: 'breguet.ua',
2127
+ },
2128
+ {
2129
+ value: 'breguet.uk',
2130
+ },
2131
+ {
2132
+ value: 'breguet.us',
2133
+ },
2134
+ {
2135
+ value: 'breguet.uy',
2136
+ },
2137
+ {
2138
+ value: 'breguet.vn',
2139
+ },
2140
+ {
2141
+ value: 'breguet.watch',
2142
+ },
2143
+ {
2144
+ value: 'breguet.website',
2145
+ },
2146
+ {
2147
+ value: 'breguet.xyz',
2148
+ },
2149
+ {
2150
+ value: 'breguet.中国',
2151
+ },
2152
+ {
2153
+ value: 'breguet.台灣',
2154
+ },
2155
+ {
2156
+ value: 'breguet1.ru',
2157
+ },
2158
+ {
2159
+ value: 'breguethome.com',
2160
+ },
2161
+ {
2162
+ value: 'breguetjewellery.com',
2163
+ },
2164
+ {
2165
+ value: 'breguetjewelry.com',
2166
+ },
2167
+ {
2168
+ value: 'breguetjewelry.net',
2169
+ },
2170
+ {
2171
+ value: 'breguetsales.com',
2172
+ },
2173
+ {
2174
+ value: 'breguetstore.com',
2175
+ },
2176
+ {
2177
+ value: 'breguetstore.net',
2178
+ },
2179
+ {
2180
+ value: 'breguetthailand.com',
2181
+ },
2182
+ {
2183
+ value: 'breguettype20-vintage.com',
2184
+ },
2185
+ {
2186
+ value: 'breguettypexx-vintage.com',
2187
+ },
2188
+ {
2189
+ value: 'breguettypxx-vintage.com',
2190
+ },
2191
+ {
2192
+ value: 'breguetuniversity.com',
2193
+ },
2194
+ {
2195
+ value: 'breguetvintage.com',
2196
+ },
2197
+ {
2198
+ value: 'breguetwatch.com',
2199
+ },
2200
+ {
2201
+ value: 'breguetwatch.ru',
2202
+ },
2203
+ {
2204
+ value: 'breguetwatches.biz',
2205
+ },
2206
+ {
2207
+ value: 'breguetwatches.cn',
2208
+ },
2209
+ {
2210
+ value: 'breguetwatches.com',
2211
+ },
2212
+ {
2213
+ value: 'breguetwatches.com.cn',
2214
+ },
2215
+ {
2216
+ value: 'breguetwatches.de',
2217
+ },
2218
+ {
2219
+ value: 'breguetwatches.info',
2220
+ },
2221
+ {
2222
+ value: 'breguetwatches.net',
2223
+ },
2224
+ {
2225
+ value: 'breguetwatches.org',
2226
+ },
2227
+ {
2228
+ value: 'breguetwatches.ru',
2229
+ },
2230
+ {
2231
+ value: 'breguetwatches.us',
2232
+ },
2233
+ {
2234
+ value: 'breuget.ch',
2235
+ },
2236
+ {
2237
+ value: 'breuget.com',
2238
+ },
2239
+ {
2240
+ value: 'breuget.fr',
2241
+ },
2242
+ {
2243
+ value: 'breuget.net',
2244
+ },
2245
+ {
2246
+ value: 'breuget.org',
2247
+ },
2248
+ {
2249
+ value: 'breguet.co.nl',
2250
+ },
2251
+ {
2252
+ value: 'breguet.com.ru',
2253
+ },
2254
+ {
2255
+ value: 'breguetwatches.com.ru',
2256
+ },
2257
+ {
2258
+ value: 'lemania-watch.com',
2259
+ },
2260
+ {
2261
+ value: 'lemania-watch.net',
2262
+ },
2263
+ {
2264
+ value: 'lemania-watch.org',
2265
+ },
2266
+ {
2267
+ value: 'lemania-watches.com',
2268
+ },
2269
+ {
2270
+ value: 'lemania-watches.info',
2271
+ },
2272
+ {
2273
+ value: 'lemania-watches.net',
2274
+ },
2275
+ {
2276
+ value: 'lemania-watches.org',
2277
+ },
2278
+ {
2279
+ value: 'lemania.es',
2280
+ },
2281
+ {
2282
+ value: 'lemania.eu',
2283
+ },
2284
+ {
2285
+ value: 'lemania.info',
2286
+ },
2287
+ {
2288
+ value: 'lemania.us',
2289
+ },
2290
+ {
2291
+ value: 'lemaniawatch.com',
2292
+ },
2293
+ {
2294
+ value: 'lemaniawatch.info',
2295
+ },
2296
+ {
2297
+ value: 'lemaniawatch.net',
2298
+ },
2299
+ {
2300
+ value: 'lemaniawatch.org',
2301
+ },
2302
+ {
2303
+ value: 'lemaniawatches.com',
2304
+ },
2305
+ {
2306
+ value: 'lemaniawatches.info',
2307
+ },
2308
+ {
2309
+ value: 'lemaniawatches.net',
2310
+ },
2311
+ {
2312
+ value: 'lemaniawatches.org',
2313
+ },
2314
+ {
2315
+ value: 'lemaniawatches.us',
2316
+ },
2317
+ {
2318
+ value: 'montres-breguet.ch',
2319
+ },
2320
+ {
2321
+ value: 'montres-breguet.com',
2322
+ },
2323
+ {
2324
+ value: 'mybreguet.com',
2325
+ },
2326
+ {
2327
+ value: 'mybreguet.ru',
2328
+ },
2329
+ {
2330
+ value: 'nouvelle-lemania.com',
2331
+ },
2332
+ {
2333
+ value: 'nouvellelemania.com',
2334
+ },
2335
+ {
2336
+ value: 'timetomove.cc',
2337
+ },
2338
+ {
2339
+ value: 'timetomove.watch',
2340
+ },
2341
+ {
2342
+ value: 'type20-vintage.com',
2343
+ },
2344
+ {
2345
+ value: 'typexx-vintage.com',
2346
+ },
2347
+ {
2348
+ value: 'wristwatch-breguet.com',
2349
+ },
2350
+ {
2351
+ value: 'wwwbreguet.com',
2352
+ },
2353
+ {
2354
+ value: 'бреге.рф',
2355
+ },
2356
+ {
2357
+ value: 'ברגה.co.il',
2358
+ },
2359
+ {
2360
+ value: 'بريجية.امارات',
2361
+ },
2362
+ {
2363
+ value: 'ブレゲ.com',
2364
+ },
2365
+ {
2366
+ value: 'ブレゲ.net',
2367
+ },
2368
+ {
2369
+ value: 'ブレゲウォッチ.com',
2370
+ },
2371
+ {
2372
+ value: 'ブレゲウォッチ.net',
2373
+ },
2374
+ {
2375
+ value: '宝玑.org',
2376
+ },
2377
+ {
2378
+ value: '寶璣.hk',
2379
+ },
2380
+ {
2381
+ value: '寶璣.tw',
2382
+ },
2383
+ {
2384
+ value: '寶璣.公司.hk',
2385
+ },
2386
+ {
2387
+ value: '寶璣.台灣',
2388
+ },
2389
+ {
2390
+ value: '寶璣.香港',
2391
+ },
2392
+ {
2393
+ value: '브레게.kr',
2394
+ },
2395
+ {
2396
+ value: '브리게.com',
2397
+ },
2398
+ {
2399
+ value: '브리게.net',
2400
+ },
2401
+ {
2402
+ value: '브리게와치.com',
2403
+ },
2404
+ {
2405
+ value: 'chh-microtechnique.com',
2406
+ },
2407
+ {
2408
+ value: 'chh-microtechnique.swiss',
2409
+ },
2410
+ {
2411
+ value: 'chhmicrotechnique.ch',
2412
+ },
2413
+ {
2414
+ value: 'chhmicrotechnique.com',
2415
+ },
2416
+ {
2417
+ value: 'francois-golay.ch',
2418
+ },
2419
+ {
2420
+ value: 'francois-golay.com',
2421
+ },
2422
+ {
2423
+ value: 'francoisgolay.ch',
2424
+ },
2425
+ {
2426
+ value: 'francoisgolay.com',
2427
+ },
2428
+ {
2429
+ value: 'ckwatch.ch',
2430
+ },
2431
+ {
2432
+ value: 'ckwj-aos.com',
2433
+ },
2434
+ {
2435
+ value: 'ckwj-repairs.com',
2436
+ },
2437
+ {
2438
+ value: 'ckwj.ch',
2439
+ },
2440
+ {
2441
+ value: 'calvinklein.ar',
2442
+ },
2443
+ {
2444
+ value: 'calvinkleinwatch.com',
2445
+ },
2446
+ {
2447
+ value: 'calvinkleinwatches.com',
2448
+ },
2449
+ {
2450
+ value: 'ck-watch.biz',
2451
+ },
2452
+ {
2453
+ value: 'ck-watch.com',
2454
+ },
2455
+ {
2456
+ value: 'ck-watch.info',
2457
+ },
2458
+ {
2459
+ value: 'ck-watch.net',
2460
+ },
2461
+ {
2462
+ value: 'ck-watch.org',
2463
+ },
2464
+ {
2465
+ value: 'ck-watch.us',
2466
+ },
2467
+ {
2468
+ value: 'ck-watches.biz',
2469
+ },
2470
+ {
2471
+ value: 'ck-watches.cn',
2472
+ },
2473
+ {
2474
+ value: 'ck-watches.com',
2475
+ },
2476
+ {
2477
+ value: 'ck-watches.info',
2478
+ },
2479
+ {
2480
+ value: 'ck-watches.net',
2481
+ },
2482
+ {
2483
+ value: 'ck-watches.org',
2484
+ },
2485
+ {
2486
+ value: 'ck-watches.us',
2487
+ },
2488
+ {
2489
+ value: 'ckleinwatches.de',
2490
+ },
2491
+ {
2492
+ value: 'ckminute.ru',
2493
+ },
2494
+ {
2495
+ value: 'ckwatch.co.kr',
2496
+ },
2497
+ {
2498
+ value: 'ckwatch.com.br',
2499
+ },
2500
+ ]}
2501
+ tintColor="#666"
2502
+ value="ondmarc"
2503
+ onChange={(value) => console.info('Selected: ' + value)}
2504
+ />
2505
+ </div>
2506
+ </div>
2507
+ ```