make-mp-data 1.4.1 → 1.4.3

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.
@@ -0,0 +1,960 @@
1
+ /* cSpell:disable */
2
+ //? https://docs.mixpanel.com/docs/data-structure/property-reference#default-properties
3
+
4
+ const domainSuffix = ["com", "com", "com", "com", "net", "org", "net", "org", "io", "co", "co.uk", "us", "biz", "info", "gov", "edu"];
5
+ const domainPrefix = ["gmail", "gmail", "gmail", "gmail", "gmail", "gmail", "yahoo", "yahoo", "icloud", "icloud", "icloud", "icloud", "hotmail", "hotmail", "gmail", "gmail", "gmail", "gmail", "gmail", "gmail", "yahoo", "yahoo", "icloud", "icloud", "icloud", "hotmail", "hotmail", "outlook", "aol", "outlook", "aol", "protonmail", "zoho", "gmx", "yandex", "mail", "inbox", "fastmail", "tutanota", "mailfence", "disroot", "riseup", "posteo", "runbox", "kolabnow", "mailbox", "scryptmail", "ctemplar", "countermail", "hushmail", "startmail", "privatemail"];
6
+ const campaigns = [
7
+ {
8
+ utm_campaign: ["$organic"],
9
+ utm_medium: ["$organic"],
10
+ utm_source: ["$organic"],
11
+ utm_content: ["$organic"],
12
+ utm_term: ["$organic"]
13
+ },
14
+ {
15
+ utm_source: ["facebook"],
16
+ utm_campaign: ["fb_free_trial", "fb_discount_US", "fb_summer_sale", "fb_black_friday", "fb_lookalike_audience"],
17
+ utm_medium: ["social_influencer", "paid_promoted", "ad_sidebar", "sponsored_search"],
18
+ utm_content: ["fb_control_group", "fb_variant_A", "fb_variant_B", "fb_variant_C", "fb_variant_D"],
19
+ utm_term: ["fb_jan_feb", "fb_mar_apr", "fb_may_jun", "fb_jul_aug", "fb_sep_oct", "fb_nov_dec"]
20
+ },
21
+ {
22
+ utm_source: ["snapchat"],
23
+ utm_campaign: ["sc_free_trial", "sc_discount_US", "sc_spring_sale", "sc_cyber_monday", "sc_lookalike_audience"],
24
+ utm_medium: ["promoted_tweet", "sponsored_post", "sidebar_ad", "search_ad"],
25
+ utm_content: ["sc_control_group", "sc_variant_A", "sc_variant_B", "sc_variant_C", "sc_variant_D"],
26
+ utm_term: ["sc_jan_feb", "sc_mar_apr", "sc_may_jun", "sc_jul_aug", "sc_sep_oct", "sc_nov_dec"]
27
+ },
28
+
29
+ {
30
+ utm_source: ["linkedin"],
31
+ utm_campaign: ["li_free_trial", "li_discount_US", "li_fall_sale", "li_holiday_special", "li_lookalike_audience"],
32
+ utm_medium: ["influencer_post", "promoted_content", "sidebar_ad", "search_ad"],
33
+ utm_content: ["li_control_group", "li_variant_A", "li_variant_B", "li_variant_C", "li_variant_D"],
34
+ utm_term: ["li_jan_feb", "li_mar_apr", "li_may_jun", "li_jul_aug", "li_sep_oct", "li_nov_dec"]
35
+ },
36
+ {
37
+ utm_source: ["instagram"],
38
+ utm_campaign: ["ig_free_trial", "ig_discount_US", "ig_winter_sale", "ig_flash_sale", "ig_lookalike_audience"],
39
+ utm_medium: ["story_ad", "influencer_post", "promoted_post", "search_ad"],
40
+ utm_content: ["ig_control_group", "ig_variant_A", "ig_variant_B", "ig_variant_C", "ig_variant_D"],
41
+ utm_term: ["ig_jan_feb", "ig_mar_apr", "ig_may_jun", "ig_jul_aug", "ig_sep_oct", "ig_nov_dec"]
42
+ },
43
+ {
44
+ utm_source: ["google"],
45
+ utm_campaign: ["ga_free_trial", "ga_discount_US", "ga_spring_promo", "ga_summer_promo", "ga_lookalike_audience"],
46
+ utm_medium: ["search_ad", "display_ad", "sidebar_ad"],
47
+ utm_content: ["ga_control_group", "ga_variant_A", "ga_variant_B", "ga_variant_C", "ga_variant_D"],
48
+ utm_term: ["ga_jan_feb", "ga_mar_apr", "ga_may_jun", "ga_jul_aug", "ga_sep_oct", "ga_nov_dec"]
49
+ },
50
+ {
51
+ utm_source: ["youtube"],
52
+ utm_campaign: ["yt_free_trial", "yt_discount_US", "yt_autumn_promo", "yt_end_of_year", "yt_lookalike_audience"],
53
+ utm_medium: ["video_ad", "display_ad", "sidebar_ad"],
54
+ utm_content: ["yt_control_group", "yt_variant_A", "yt_variant_B", "yt_variant_C", "yt_variant_D"],
55
+ utm_term: ["yt_jan_feb", "yt_mar_apr", "yt_may_jun", "yt_jul_aug", "yt_sep_oct", "yt_nov_dec"]
56
+ },
57
+ {
58
+ utm_source: ["tiktok"],
59
+ utm_campaign: ["tt_free_trial", "tt_discount_US", "tt_flash_sale", "tt_special_offer", "tt_lookalike_audience"],
60
+ utm_medium: ["video_ad", "promoted_content", "sidebar_ad"],
61
+ utm_content: ["tt_control_group", "tt_variant_A", "tt_variant_B", "tt_variant_C", "tt_variant_D"],
62
+ utm_term: ["tt_jan_feb", "tt_mar_apr", "tt_may_jun", "tt_jul_aug", "tt_sep_oct", "tt_nov_dec"]
63
+ },
64
+ {
65
+ utm_source: ["reddit"],
66
+ utm_campaign: ["rd_free_trial", "rd_discount_US", "rd_winter_promo", "rd_new_year_offer", "rd_lookalike_audience"],
67
+ utm_medium: ["promoted_post", "display_ad", "sidebar_ad"],
68
+ utm_content: ["rd_control_group", "rd_variant_A", "rd_variant_B", "rd_variant_C", "rd_variant_D"],
69
+ utm_term: ["rd_jan_feb", "rd_mar_apr", "rd_may_jun", "rd_jul_aug", "rd_sep_oct", "rd_nov_dec"]
70
+ }
71
+ ];
72
+
73
+ const browsers = [
74
+ "Chrome",
75
+ "Opera",
76
+ "Opera Mini",
77
+ "BlackBerry",
78
+ "Internet Explorer Mobile",
79
+ "Samsung Internet",
80
+ "Microsoft Edge",
81
+ "Facebook Mobile",
82
+ "Chrome iOS",
83
+ "UC Browser",
84
+ "Firefox iOS",
85
+ "Mobile Safari",
86
+ "Safari",
87
+ "Android Mobile",
88
+ "Konqueror",
89
+ "Firefox",
90
+ "Internet Explorer",
91
+ "Mozilla"
92
+ ];
93
+
94
+ const iosDevices = [
95
+ {
96
+ model: 'iPhone15,1',
97
+ screen_height: '2556',
98
+ screen_width: '1179',
99
+ os: 'iOS',
100
+ Platform: 'iOS',
101
+ carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
102
+ radio: ['2G', '3G', '4G', 'LTE', '5G', 'Wifi', 'WiFi6']
103
+ }, {
104
+ model: 'iPhone15,2',
105
+ screen_height: '2556',
106
+ screen_width: '1179',
107
+ os: 'iOS',
108
+ Platform: 'iOS',
109
+ carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
110
+ radio: ['2G', '3G', '4G', 'LTE', '5G', 'Wifi', 'WiFi6']
111
+ }, {
112
+ model: 'iPhone15,3',
113
+ screen_height: '2796',
114
+ screen_width: '1290',
115
+ os: 'iOS',
116
+ Platform: 'iOS',
117
+ carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
118
+ radio: ['2G', '3G', '4G', 'LTE', '5G', 'Wifi', 'WiFi6']
119
+ }, {
120
+ model: 'iPhone15,4',
121
+ screen_height: '2556',
122
+ screen_width: '1179',
123
+ os: 'iOS',
124
+ Platform: 'iOS',
125
+ carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
126
+ radio: ['2G', '3G', '4G', 'LTE', '5G', 'Wifi', 'WiFi6']
127
+ }, {
128
+ model: 'iPhone14,5',
129
+ screen_height: '2778',
130
+ screen_width: '1284',
131
+ os: 'iOS',
132
+ Platform: 'iOS',
133
+ carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
134
+ radio: ['2G', '3G', '4G', 'LTE', '5G', 'Wifi', 'WiFi6']
135
+ }, {
136
+ model: 'iPhone14,6',
137
+ screen_height: '2532',
138
+ screen_width: '1170',
139
+ os: 'iOS',
140
+ Platform: 'iOS',
141
+ carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
142
+ radio: ['2G', '3G', '4G', 'LTE', '5G', 'Wifi', 'WiFi6']
143
+ }, {
144
+ model: 'iPhone13,2',
145
+ screen_height: '2532',
146
+ screen_width: '1170',
147
+ os: 'iOS',
148
+ Platform: 'iOS',
149
+ carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
150
+ radio: ['2G', '3G', '4G', 'LTE', '5G', 'Wifi', 'WiFi6']
151
+ }, {
152
+ model: 'iPad14,1',
153
+ screen_height: '2388',
154
+ screen_width: '1668',
155
+ os: 'iPadOS',
156
+ Platform: 'iOS',
157
+ carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
158
+ radio: ['2G', '3G', '4G', 'LTE', '5G', 'Wifi', 'WiFi6']
159
+ }, {
160
+ model: 'iPad14,2',
161
+ screen_height: '2388',
162
+ screen_width: '1668',
163
+ os: 'iPadOS',
164
+ Platform: 'iOS',
165
+ carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
166
+ radio: ['2G', '3G', '4G', 'LTE', '5G', 'Wifi', 'WiFi6']
167
+ }, {
168
+ model: 'iPad14,3',
169
+ screen_height: '2732',
170
+ screen_width: '2048',
171
+ os: 'iPadOS',
172
+ Platform: 'iOS',
173
+ carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
174
+ radio: ['2G', '3G', '4G', 'LTE', '5G', 'Wifi', 'WiFi6']
175
+ }, {
176
+ model: 'iPad14,4',
177
+ screen_height: '2732',
178
+ screen_width: '2048',
179
+ os: 'iPadOS',
180
+ Platform: 'iOS',
181
+ carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
182
+ radio: ['2G', '3G', '4G', 'LTE', '5G', 'Wifi', 'WiFi6']
183
+ }, {
184
+ model: 'iPad13,2',
185
+ screen_height: '2360',
186
+ screen_width: '1640',
187
+ os: 'iPadOS',
188
+ Platform: 'iOS',
189
+ carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
190
+ radio: ['2G', '3G', '4G', 'LTE', '5G', 'Wifi', 'WiFi6']
191
+ }, {
192
+ model: 'iPad13,4',
193
+ screen_height: '2360',
194
+ screen_width: '1640',
195
+ os: 'iPadOS',
196
+ Platform: 'iOS',
197
+ carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
198
+ radio: ['2G', '3G', '4G', 'LTE', '5G', 'Wifi', 'WiFi6']
199
+ }
200
+ ];
201
+
202
+ const androidDevices = [
203
+ {
204
+ model: 'Pixel 7',
205
+ screen_height: '2400',
206
+ screen_width: '1080',
207
+ os: 'Android',
208
+ Platform: 'Android',
209
+ carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
210
+ radio: ['2G', '3G', '4G', 'LTE', '5G', 'Wifi', 'WiFi6']
211
+ }, {
212
+ model: 'Pixel 7 Pro',
213
+ screen_height: '3120',
214
+ screen_width: '1440',
215
+ os: 'Android',
216
+ Platform: 'Android',
217
+ carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
218
+ radio: ['2G', '3G', '4G', 'LTE', '5G', 'Wifi', 'WiFi6']
219
+ }, {
220
+ model: 'Pixel 6',
221
+ screen_height: '2400',
222
+ screen_width: '1080',
223
+ os: 'Android',
224
+ Platform: 'Android',
225
+ carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
226
+ radio: ['2G', '3G', '4G', 'LTE', '5G', 'Wifi', 'WiFi6']
227
+ }, {
228
+ model: 'Pixel 6 Pro',
229
+ screen_height: '3120',
230
+ screen_width: '1440',
231
+ os: 'Android',
232
+ Platform: 'Android',
233
+ carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
234
+ radio: ['2G', '3G', '4G', 'LTE', '5G', 'Wifi', 'WiFi6']
235
+ }, {
236
+ model: 'Galaxy S23',
237
+ screen_height: '2340',
238
+ screen_width: '1080',
239
+ os: 'Android',
240
+ Platform: 'Android',
241
+ carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
242
+ radio: ['2G', '3G', '4G', 'LTE', '5G', 'Wifi', 'WiFi6']
243
+ }, {
244
+ model: 'Galaxy S23 Ultra',
245
+ screen_height: '3088',
246
+ screen_width: '1440',
247
+ os: 'Android',
248
+ Platform: 'Android',
249
+ carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
250
+ radio: ['2G', '3G', '4G', 'LTE', '5G', 'Wifi', 'WiFi6']
251
+ }, {
252
+ model: 'Galaxy Z Fold 4',
253
+ screen_height: '2176',
254
+ screen_width: '1812',
255
+ os: 'Android',
256
+ Platform: 'Android',
257
+ carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
258
+ radio: ['2G', '3G', '4G', 'LTE', '5G', 'Wifi', 'WiFi6']
259
+ }, {
260
+ model: 'Galaxy Z Flip 4',
261
+ screen_height: '2640',
262
+ screen_width: '1080',
263
+ os: 'Android',
264
+ Platform: 'Android',
265
+ carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
266
+ radio: ['2G', '3G', '4G', 'LTE', '5G', 'Wifi', 'WiFi6']
267
+ }, {
268
+ model: 'OnePlus 11',
269
+ screen_height: '3216',
270
+ screen_width: '1440',
271
+ os: 'Android',
272
+ Platform: 'Android',
273
+ carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
274
+ radio: ['2G', '3G', '4G', 'LTE', '5G', 'Wifi', 'WiFi6']
275
+ }, {
276
+ model: 'OnePlus 10 Pro',
277
+ screen_height: '3216',
278
+ screen_width: '1440',
279
+ os: 'Android',
280
+ Platform: 'Android',
281
+ carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
282
+ radio: ['2G', '3G', '4G', 'LTE', '5G', 'Wifi', 'WiFi6']
283
+ }, {
284
+ model: 'LG Velvet',
285
+ screen_height: '2460',
286
+ screen_width: '1080',
287
+ os: 'Android',
288
+ Platform: 'Android',
289
+ carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
290
+ radio: ['2G', '3G', '4G', 'LTE', '5G', 'Wifi', 'WiFi6']
291
+ }, {
292
+ model: 'LG Wing',
293
+ screen_height: '2460',
294
+ screen_width: '1080',
295
+ os: 'Android',
296
+ Platform: 'Android',
297
+ carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
298
+ radio: ['2G', '3G', '4G', 'LTE', '5G', 'Wifi', 'WiFi6']
299
+ }, {
300
+ model: 'Sony Xperia 1 IV',
301
+ screen_height: '3840',
302
+ screen_width: '1644',
303
+ os: 'Android',
304
+ Platform: 'Android',
305
+ carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
306
+ radio: ['2G', '3G', '4G', 'LTE', '5G', 'Wifi', 'WiFi6']
307
+ }, {
308
+ model: 'Sony Xperia 5 IV',
309
+ screen_height: '2520',
310
+ screen_width: '1080',
311
+ os: 'Android',
312
+ Platform: 'Android',
313
+ carrier: ['verizon', 'at&t', 't-mobile', 'cricket', 'us cellular'],
314
+ radio: ['2G', '3G', '4G', 'LTE', '5G', 'Wifi', 'WiFi6']
315
+ }
316
+ ];
317
+
318
+
319
+ const desktopDevices = [
320
+ {
321
+ model: 'iMac 24-inch (M1, 2021)',
322
+ screen_height: '2520',
323
+ screen_width: '4480',
324
+ os: 'macOS',
325
+ Platform: 'Desktop'
326
+ }, {
327
+ model: 'iMac 27-inch (2020)',
328
+ screen_height: '2880',
329
+ screen_width: '5120',
330
+ os: 'macOS',
331
+ Platform: 'Desktop'
332
+ }, {
333
+ model: 'Mac Mini (M2, 2023)',
334
+ screen_height: '2160',
335
+ screen_width: '3840',
336
+ os: 'macOS',
337
+ Platform: 'Desktop'
338
+ }, {
339
+ model: 'MacBook Air (M2, 2022)',
340
+ screen_height: '1664',
341
+ screen_width: '2560',
342
+ os: 'macOS',
343
+ Platform: 'Desktop'
344
+ }, {
345
+ model: 'MacBook Pro 14-inch (M2, 2023)',
346
+ screen_height: '1964',
347
+ screen_width: '3024',
348
+ os: 'macOS',
349
+ Platform: 'Desktop'
350
+ }, {
351
+ model: 'MacBook Pro 16-inch (M2, 2023)',
352
+ screen_height: '2234',
353
+ screen_width: '3456',
354
+ os: 'macOS',
355
+ Platform: 'Desktop'
356
+ }, {
357
+ model: 'Mac Pro (2019)',
358
+ screen_height: '2160',
359
+ screen_width: '3840',
360
+ os: 'macOS',
361
+ Platform: 'Desktop'
362
+ }, {
363
+ model: 'iMac Pro (2017)',
364
+ screen_height: '2880',
365
+ screen_width: '5120',
366
+ os: 'macOS',
367
+ Platform: 'Desktop'
368
+ }, {
369
+ model: 'Dell XPS 15',
370
+ screen_height: '2160',
371
+ screen_width: '3840',
372
+ os: 'Windows',
373
+ Platform: 'Desktop'
374
+ }, {
375
+ model: 'Dell XPS 17',
376
+ screen_height: '2400',
377
+ screen_width: '3840',
378
+ os: 'Windows',
379
+ Platform: 'Desktop'
380
+ }, {
381
+ model: 'Lenovo Legion Tower 7i',
382
+ screen_height: '2160',
383
+ screen_width: '3840',
384
+ os: 'Windows',
385
+ Platform: 'Desktop'
386
+ }, {
387
+ model: 'Huawei MateStation X',
388
+ screen_height: '2520',
389
+ screen_width: '3840',
390
+ os: 'Windows',
391
+ Platform: 'Desktop'
392
+ }, {
393
+ model: 'Acer Predator Orion 7000',
394
+ screen_height: '2160',
395
+ screen_width: '3840',
396
+ os: 'Windows',
397
+ Platform: 'Desktop'
398
+ }, {
399
+ model: 'HP Spectre x360',
400
+ screen_height: '1824',
401
+ screen_width: '2736',
402
+ os: 'Windows',
403
+ Platform: 'Desktop'
404
+ }, {
405
+ model: 'Asus ZenBook Pro Duo',
406
+ screen_height: '2160',
407
+ screen_width: '3840',
408
+ os: 'Windows',
409
+ Platform: 'Desktop'
410
+ }, {
411
+ model: 'HP Slim Desktop',
412
+ screen_height: '1080',
413
+ screen_width: '1920',
414
+ os: 'Windows',
415
+ Platform: 'Desktop'
416
+ }, {
417
+ model: 'Corsair One i300',
418
+ screen_height: '2160',
419
+ screen_width: '3840',
420
+ os: 'Windows',
421
+ Platform: 'Desktop'
422
+ }, {
423
+ model: 'Dell XPS Tower Special Edition',
424
+ screen_height: '2160',
425
+ screen_width: '3840',
426
+ os: 'Windows',
427
+ Platform: 'Desktop'
428
+ }, {
429
+ model: 'Acer Aspire TC-895',
430
+ screen_height: '1080',
431
+ screen_width: '1920',
432
+ os: 'Windows',
433
+ Platform: 'Desktop'
434
+ }, {
435
+ model: 'Lenovo IdeaCentre AIO 5i',
436
+ screen_height: '1440',
437
+ screen_width: '2560',
438
+ os: 'Windows',
439
+ Platform: 'Desktop'
440
+ }, {
441
+ model: 'Alienware Aurora R13',
442
+ screen_height: '2160',
443
+ screen_width: '3840',
444
+ os: 'Windows',
445
+ Platform: 'Desktop'
446
+ }
447
+ ];
448
+
449
+
450
+ const locations = [
451
+ {
452
+ "country": "United States",
453
+ "country_code": "US",
454
+ "region": "Vermont",
455
+ "city": "Coventry"
456
+ },
457
+ {
458
+ "country": "United States",
459
+ "country_code": "US",
460
+ "region": "California",
461
+ "city": "Los Angeles"
462
+ },
463
+ {
464
+ "country": "United States",
465
+ "country_code": "US",
466
+ "region": "New York",
467
+ "city": "New York"
468
+ },
469
+ {
470
+ "country": "United States",
471
+ "country_code": "US",
472
+ "region": "Illinois",
473
+ "city": "Chicago"
474
+ },
475
+ {
476
+ "country": "United States",
477
+ "country_code": "US",
478
+ "region": "Texas",
479
+ "city": "Houston"
480
+ },
481
+ {
482
+ "country": "United States",
483
+ "country_code": "US",
484
+ "region": "Arizona",
485
+ "city": "Phoenix"
486
+ },
487
+ {
488
+ "country": "United States",
489
+ "country_code": "US",
490
+ "region": "Pennsylvania",
491
+ "city": "Philadelphia"
492
+ },
493
+ {
494
+ "country": "United States",
495
+ "country_code": "US",
496
+ "region": "Texas",
497
+ "city": "San Antonio"
498
+ },
499
+ {
500
+ "country": "United States",
501
+ "country_code": "US",
502
+ "region": "California",
503
+ "city": "San Diego"
504
+ },
505
+ {
506
+ "country": "United States",
507
+ "country_code": "US",
508
+ "region": "Texas",
509
+ "city": "Dallas"
510
+ },
511
+ {
512
+ "country": "United States",
513
+ "country_code": "US",
514
+ "region": "California",
515
+ "city": "San Jose"
516
+ },
517
+ {
518
+ "country": "United States",
519
+ "country_code": "US",
520
+ "region": "Texas",
521
+ "city": "Austin"
522
+ },
523
+ {
524
+ "country": "United States",
525
+ "country_code": "US",
526
+ "region": "Florida",
527
+ "city": "Jacksonville"
528
+ },
529
+ {
530
+ "country": "United States",
531
+ "country_code": "US",
532
+ "region": "Ohio",
533
+ "city": "Columbus"
534
+ },
535
+ {
536
+ "country": "United States",
537
+ "country_code": "US",
538
+ "region": "California",
539
+ "city": "San Francisco"
540
+ },
541
+ {
542
+ "country": "United States",
543
+ "country_code": "US",
544
+ "region": "Indiana",
545
+ "city": "Indianapolis"
546
+ },
547
+ {
548
+ "country": "United States",
549
+ "country_code": "US",
550
+ "region": "Washington",
551
+ "city": "Seattle"
552
+ },
553
+ {
554
+ "country": "United States",
555
+ "country_code": "US",
556
+ "region": "Colorado",
557
+ "city": "Denver"
558
+ },
559
+ {
560
+ "country": "United States",
561
+ "country_code": "US",
562
+ "region": "Washington",
563
+ "city": "Spokane"
564
+ },
565
+ {
566
+ "country": "United States",
567
+ "country_code": "US",
568
+ "region": "Tennessee",
569
+ "city": "Nashville"
570
+ },
571
+ {
572
+ "country": "United States",
573
+ "country_code": "US",
574
+ "region": "Tennessee",
575
+ "city": "Memphis"
576
+ },
577
+ {
578
+ "country": "United States",
579
+ "country_code": "US",
580
+ "region": "Nevada",
581
+ "city": "Las Vegas"
582
+ },
583
+ {
584
+ "country": "United States",
585
+ "country_code": "US",
586
+ "region": "California",
587
+ "city": "Fresno"
588
+ },
589
+ {
590
+ "country": "United States",
591
+ "country_code": "US",
592
+ "region": "California",
593
+ "city": "Sacramento"
594
+ },
595
+ {
596
+ "country": "United States",
597
+ "country_code": "US",
598
+ "region": "Oregon",
599
+ "city": "Portland"
600
+ },
601
+ {
602
+ "country": "United States",
603
+ "country_code": "US",
604
+ "region": "Oklahoma",
605
+ "city": "Oklahoma City"
606
+ },
607
+ {
608
+ "country": "China",
609
+ "country_code": "CN",
610
+ "region": "Beijing",
611
+ "city": "Beijing"
612
+ },
613
+ {
614
+ "country": "China",
615
+ "country_code": "CN",
616
+ "region": "Shanghai",
617
+ "city": "Shanghai"
618
+ },
619
+ {
620
+ "country": "China",
621
+ "country_code": "CN",
622
+ "region": "Guangdong",
623
+ "city": "Guangzhou"
624
+ },
625
+ {
626
+ "country": "China",
627
+ "country_code": "CN",
628
+ "region": "Shenzhen",
629
+ "city": "Shenzhen"
630
+ },
631
+ {
632
+ "country": "Japan",
633
+ "country_code": "JP",
634
+ "region": "Tokyo",
635
+ "city": "Tokyo"
636
+ },
637
+ {
638
+ "country": "Japan",
639
+ "country_code": "JP",
640
+ "region": "Osaka",
641
+ "city": "Osaka"
642
+ },
643
+ {
644
+ "country": "Japan",
645
+ "country_code": "JP",
646
+ "region": "Kanagawa",
647
+ "city": "Yokohama"
648
+ },
649
+ {
650
+ "country": "India",
651
+ "country_code": "IN",
652
+ "region": "Maharashtra",
653
+ "city": "Mumbai"
654
+ },
655
+ {
656
+ "country": "India",
657
+ "country_code": "IN",
658
+ "region": "Delhi",
659
+ "city": "New Delhi"
660
+ },
661
+ {
662
+ "country": "India",
663
+ "country_code": "IN",
664
+ "region": "Karnataka",
665
+ "city": "Bengaluru"
666
+ },
667
+ {
668
+ "country": "India",
669
+ "country_code": "IN",
670
+ "region": "Tamil Nadu",
671
+ "city": "Chennai"
672
+ },
673
+ {
674
+ "country": "Australia",
675
+ "country_code": "AU",
676
+ "region": "New South Wales",
677
+ "city": "Sydney"
678
+ },
679
+ {
680
+ "country": "Australia",
681
+ "country_code": "AU",
682
+ "region": "Victoria",
683
+ "city": "Melbourne"
684
+ },
685
+ {
686
+ "country": "Australia",
687
+ "country_code": "AU",
688
+ "region": "Queensland",
689
+ "city": "Brisbane"
690
+ },
691
+ {
692
+ "country": "South Korea",
693
+ "country_code": "KR",
694
+ "region": "Seoul",
695
+ "city": "Seoul"
696
+ },
697
+ {
698
+ "country": "South Korea",
699
+ "country_code": "KR",
700
+ "region": "Busan",
701
+ "city": "Busan"
702
+ },
703
+ {
704
+ "country": "South Korea",
705
+ "country_code": "KR",
706
+ "region": "Incheon",
707
+ "city": "Incheon"
708
+ },
709
+ {
710
+ "country": "Israel",
711
+ "country_code": "IL",
712
+ "region": "Tel Aviv",
713
+ "city": "Tel Aviv"
714
+ },
715
+ {
716
+ "country": "Israel",
717
+ "country_code": "IL",
718
+ "region": "Jerusalem",
719
+ "city": "Jerusalem"
720
+ },
721
+ {
722
+ "country": "Israel",
723
+ "country_code": "IL",
724
+ "region": "Haifa",
725
+ "city": "Haifa"
726
+ },
727
+ {
728
+ "country": "United Kingdom",
729
+ "country_code": "GB",
730
+ "region": "England",
731
+ "city": "London"
732
+ },
733
+ {
734
+ "country": "United Kingdom",
735
+ "country_code": "GB",
736
+ "region": "England",
737
+ "city": "Manchester"
738
+ },
739
+ {
740
+ "country": "United Kingdom",
741
+ "country_code": "GB",
742
+ "region": "Scotland",
743
+ "city": "Edinburgh"
744
+ },
745
+ {
746
+ "country": "Germany",
747
+ "country_code": "DE",
748
+ "region": "Berlin",
749
+ "city": "Berlin"
750
+ },
751
+ {
752
+ "country": "Germany",
753
+ "country_code": "DE",
754
+ "region": "Bavaria",
755
+ "city": "Munich"
756
+ },
757
+ {
758
+ "country": "Germany",
759
+ "country_code": "DE",
760
+ "region": "Hamburg",
761
+ "city": "Hamburg"
762
+ },
763
+ {
764
+ "country": "France",
765
+ "country_code": "FR",
766
+ "region": "Île-de-France",
767
+ "city": "Paris"
768
+ },
769
+ {
770
+ "country": "France",
771
+ "country_code": "FR",
772
+ "region": "Provence-Alpes-Côte d'Azur",
773
+ "city": "Marseille"
774
+ },
775
+ {
776
+ "country": "France",
777
+ "country_code": "FR",
778
+ "region": "Auvergne-Rhône-Alpes",
779
+ "city": "Lyon"
780
+ },
781
+ {
782
+ "country": "Italy",
783
+ "country_code": "IT",
784
+ "region": "Lazio",
785
+ "city": "Rome"
786
+ },
787
+ {
788
+ "country": "Italy",
789
+ "country_code": "IT",
790
+ "region": "Lombardy",
791
+ "city": "Milan"
792
+ },
793
+ {
794
+ "country": "Italy",
795
+ "country_code": "IT",
796
+ "region": "Campania",
797
+ "city": "Naples"
798
+ },
799
+ {
800
+ "country": "Spain",
801
+ "country_code": "ES",
802
+ "region": "Community of Madrid",
803
+ "city": "Madrid"
804
+ },
805
+ {
806
+ "country": "Spain",
807
+ "country_code": "ES",
808
+ "region": "Catalonia",
809
+ "city": "Barcelona"
810
+ },
811
+ {
812
+ "country": "Spain",
813
+ "country_code": "ES",
814
+ "region": "Valencian Community",
815
+ "city": "Valencia"
816
+ },
817
+ {
818
+ "country": "Russia",
819
+ "country_code": "RU",
820
+ "region": "Moscow",
821
+ "city": "Moscow"
822
+ },
823
+ {
824
+ "country": "Russia",
825
+ "country_code": "RU",
826
+ "region": "Saint Petersburg",
827
+ "city": "Saint Petersburg"
828
+ },
829
+ {
830
+ "country": "Russia",
831
+ "country_code": "RU",
832
+ "region": "Novosibirsk Oblast",
833
+ "city": "Novosibirsk"
834
+ },
835
+ {
836
+ "country": "South Africa",
837
+ "country_code": "ZA",
838
+ "region": "Gauteng",
839
+ "city": "Johannesburg"
840
+ },
841
+ {
842
+ "country": "South Africa",
843
+ "country_code": "ZA",
844
+ "region": "Western Cape",
845
+ "city": "Cape Town"
846
+ },
847
+ {
848
+ "country": "South Africa",
849
+ "country_code": "ZA",
850
+ "region": "KwaZulu-Natal",
851
+ "city": "Durban"
852
+ },
853
+ {
854
+ "country": "Nigeria",
855
+ "country_code": "NG",
856
+ "region": "Lagos",
857
+ "city": "Lagos"
858
+ },
859
+ {
860
+ "country": "Nigeria",
861
+ "country_code": "NG",
862
+ "region": "Rivers",
863
+ "city": "Port Harcourt"
864
+ },
865
+ {
866
+ "country": "Nigeria",
867
+ "country_code": "NG",
868
+ "region": "Abuja",
869
+ "city": "Abuja"
870
+ },
871
+ {
872
+ "country": "Brazil",
873
+ "country_code": "BR",
874
+ "region": "São Paulo",
875
+ "city": "São Paulo"
876
+ },
877
+ {
878
+ "country": "Brazil",
879
+ "country_code": "BR",
880
+ "region": "Rio de Janeiro",
881
+ "city": "Rio de Janeiro"
882
+ },
883
+ {
884
+ "country": "Brazil",
885
+ "country_code": "BR",
886
+ "region": "Bahia",
887
+ "city": "Salvador"
888
+ },
889
+ {
890
+ "country": "Mexico",
891
+ "country_code": "MX",
892
+ "region": "Mexico City",
893
+ "city": "Mexico City"
894
+ },
895
+ {
896
+ "country": "Mexico",
897
+ "country_code": "MX",
898
+ "region": "Jalisco",
899
+ "city": "Guadalajara"
900
+ },
901
+ {
902
+ "country": "Mexico",
903
+ "country_code": "MX",
904
+ "region": "Nuevo León",
905
+ "city": "Monterrey"
906
+ },
907
+ {
908
+ "country": "Turkey",
909
+ "country_code": "TR",
910
+ "region": "Istanbul",
911
+ "city": "Istanbul"
912
+ },
913
+ {
914
+ "country": "Turkey",
915
+ "country_code": "TR",
916
+ "region": "Ankara",
917
+ "city": "Ankara"
918
+ },
919
+ {
920
+ "country": "Turkey",
921
+ "country_code": "TR",
922
+ "region": "Izmir",
923
+ "city": "Izmir"
924
+ },
925
+ {
926
+ "country": "Egypt",
927
+ "country_code": "EG",
928
+ "region": "Cairo",
929
+ "city": "Cairo"
930
+ },
931
+ {
932
+ "country": "Egypt",
933
+ "country_code": "EG",
934
+ "region": "Giza",
935
+ "city": "Giza"
936
+ },
937
+ {
938
+ "country": "Egypt",
939
+ "country_code": "EG",
940
+ "region": "Alexandria",
941
+ "city": "Alexandria"
942
+ }
943
+ ];
944
+
945
+
946
+
947
+
948
+
949
+ module.exports = {
950
+ campaigns,
951
+ devices: {
952
+ browsers,
953
+ androidDevices,
954
+ iosDevices,
955
+ desktopDevices
956
+ },
957
+ locations,
958
+ domainSuffix,
959
+ domainPrefix
960
+ };