device_detector 1.0.5 → 1.0.6

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 (90) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +7 -6
  3. data/lib/device_detector/browser.rb +364 -0
  4. data/lib/device_detector/client.rb +8 -0
  5. data/lib/device_detector/device.rb +1124 -4
  6. data/lib/device_detector/os.rb +36 -11
  7. data/lib/device_detector/version.rb +1 -1
  8. data/lib/device_detector/version_extractor.rb +9 -0
  9. data/lib/device_detector.rb +57 -13
  10. data/regexes/bots.yml +551 -58
  11. data/regexes/client/browser_engine.yml +7 -1
  12. data/regexes/client/browsers.yml +594 -71
  13. data/regexes/client/feed_readers.yml +4 -10
  14. data/regexes/client/libraries.yml +47 -2
  15. data/regexes/client/mediaplayers.yml +25 -1
  16. data/regexes/client/mobile_apps.yml +447 -77
  17. data/regexes/client/pim.yml +49 -1
  18. data/regexes/device/cameras.yml +5 -5
  19. data/regexes/device/car_browsers.yml +16 -0
  20. data/regexes/device/consoles.yml +6 -0
  21. data/regexes/device/mobiles.yml +12905 -4561
  22. data/regexes/device/portable_media_player.yml +20 -3
  23. data/regexes/device/shell_tv.yml +117 -0
  24. data/regexes/device/televisions.yml +426 -35
  25. data/regexes/oss.yml +567 -139
  26. data/spec/device_detector/concrete_user_agent_spec.rb +30 -42
  27. data/spec/device_detector/detector_fixtures_spec.rb +9 -5
  28. data/spec/device_detector/device_spec.rb +26 -10
  29. data/spec/fixtures/client/browser.yml +1463 -391
  30. data/spec/fixtures/client/feed_reader.yml +0 -12
  31. data/spec/fixtures/client/library.yml +91 -37
  32. data/spec/fixtures/client/mediaplayer.yml +30 -0
  33. data/spec/fixtures/client/mobile_app.yml +498 -45
  34. data/spec/fixtures/client/pim.yml +60 -0
  35. data/spec/fixtures/detector/bots.yml +1189 -568
  36. data/spec/fixtures/detector/camera.yml +12 -26
  37. data/spec/fixtures/detector/car_browser.yml +151 -15
  38. data/spec/fixtures/detector/console.yml +70 -48
  39. data/spec/fixtures/detector/desktop.yml +2041 -916
  40. data/spec/fixtures/detector/feature_phone.yml +895 -189
  41. data/spec/fixtures/detector/feed_reader.yml +50 -77
  42. data/spec/fixtures/detector/mediaplayer.yml +79 -26
  43. data/spec/fixtures/detector/mobile_apps.yml +726 -72
  44. data/spec/fixtures/detector/peripheral.yml +271 -0
  45. data/spec/fixtures/detector/phablet.yml +3635 -1596
  46. data/spec/fixtures/detector/portable_media_player.yml +355 -46
  47. data/spec/fixtures/detector/smart_display.yml +183 -9
  48. data/spec/fixtures/detector/smart_speaker.yml +13 -8
  49. data/spec/fixtures/detector/smartphone-1.yml +4002 -4286
  50. data/spec/fixtures/detector/smartphone-10.yml +3771 -4763
  51. data/spec/fixtures/detector/smartphone-11.yml +3615 -4692
  52. data/spec/fixtures/detector/smartphone-12.yml +3856 -4764
  53. data/spec/fixtures/detector/smartphone-13.yml +4213 -4713
  54. data/spec/fixtures/detector/smartphone-14.yml +4039 -4497
  55. data/spec/fixtures/detector/smartphone-15.yml +5642 -2956
  56. data/spec/fixtures/detector/smartphone-16.yml +4739 -5082
  57. data/spec/fixtures/detector/smartphone-17.yml +4832 -4275
  58. data/spec/fixtures/detector/smartphone-18.yml +9806 -0
  59. data/spec/fixtures/detector/smartphone-19.yml +9965 -0
  60. data/spec/fixtures/detector/smartphone-2.yml +4842 -2589
  61. data/spec/fixtures/detector/smartphone-20.yml +9710 -0
  62. data/spec/fixtures/detector/smartphone-21.yml +8693 -0
  63. data/spec/fixtures/detector/smartphone-22.yml +10178 -0
  64. data/spec/fixtures/detector/smartphone-23.yml +9453 -0
  65. data/spec/fixtures/detector/smartphone-24.yml +9843 -0
  66. data/spec/fixtures/detector/smartphone-25.yml +9703 -0
  67. data/spec/fixtures/detector/smartphone-26.yml +10007 -0
  68. data/spec/fixtures/detector/smartphone-27.yml +4927 -0
  69. data/spec/fixtures/detector/smartphone-3.yml +4387 -4427
  70. data/spec/fixtures/detector/smartphone-4.yml +3597 -4582
  71. data/spec/fixtures/detector/smartphone-5.yml +4066 -5022
  72. data/spec/fixtures/detector/smartphone-6.yml +3455 -4621
  73. data/spec/fixtures/detector/smartphone-7.yml +3574 -4574
  74. data/spec/fixtures/detector/smartphone-8.yml +4617 -4704
  75. data/spec/fixtures/detector/smartphone-9.yml +4080 -5035
  76. data/spec/fixtures/detector/smartphone.yml +3244 -4234
  77. data/spec/fixtures/detector/tablet-1.yml +4652 -4492
  78. data/spec/fixtures/detector/tablet-2.yml +3515 -4434
  79. data/spec/fixtures/detector/tablet-3.yml +3418 -4351
  80. data/spec/fixtures/detector/tablet-4.yml +5149 -3200
  81. data/spec/fixtures/detector/tablet-5.yml +9273 -0
  82. data/spec/fixtures/detector/tablet-6.yml +4588 -0
  83. data/spec/fixtures/detector/tablet.yml +1621 -2613
  84. data/spec/fixtures/detector/tv-1.yml +2501 -0
  85. data/spec/fixtures/detector/tv.yml +7826 -3114
  86. data/spec/fixtures/detector/unknown.yml +370 -531
  87. data/spec/fixtures/detector/wearable.yml +863 -9
  88. data/spec/fixtures/parser/oss.yml +1350 -21
  89. data/spec/fixtures/parser/vendorfragments.yml +53 -53
  90. metadata +35 -5
@@ -1,11 +1,11 @@
1
1
  ---
2
- -
2
+ -
3
3
  user_agent: Pulse/4.0.5 (iPhone; iOS 7.0.6; Scale/2.00)
4
4
  client:
5
5
  type: mobile app
6
6
  name: Pulse
7
7
  version: "4.0.5"
8
- -
8
+ -
9
9
  user_agent: Mozilla/5.0 (Linux; Android 4.4.4; SM-G7509 Build/KTU84P) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/33.0.0.0 Mobile Safari/537.36 MicroMessenger/6.0.2.56_r958800.520 NetType/WIFI
10
10
  client:
11
11
  type: mobile app
@@ -16,182 +16,182 @@
16
16
  client:
17
17
  type: mobile app
18
18
  name: DingTalk
19
- version: 5.1.12
20
- -
19
+ version: "5.1.12"
20
+ -
21
21
  user_agent: Mozilla/5.0 (Linux; U; Android 4.0.4; en-us; ZTE U807N Build/IMM76D) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30 Weibo (ZTE-ZTE U807N__weibo__5.0.0__android__android4.0.4)
22
22
  client:
23
23
  type: mobile app
24
24
  name: Sina Weibo
25
25
  version: "5.0.0"
26
- -
26
+ -
27
27
  user_agent: FeedR/1.0 (Android)
28
28
  client:
29
29
  type: mobile app
30
30
  name: FeedR
31
31
  version: "1.0"
32
- -
32
+ -
33
33
  user_agent: Pinterest/3.3.3 CFNetwork/609.1.4 Darwin/13.0.0
34
34
  client:
35
35
  type: mobile app
36
36
  name: Pinterest
37
37
  version: "3.3.3"
38
- -
38
+ -
39
39
  user_agent: Instacast/5.0a8 CFNetwork/711.1.11 Darwin/13.4.0
40
40
  client:
41
41
  type: mobile app
42
42
  name: Instacast
43
43
  version: "5.0a8"
44
- -
44
+ -
45
45
  user_agent: InstacastHD/1.1.2 CFNetwork/711.0.6 Darwin/14.0.0
46
46
  client:
47
47
  type: mobile app
48
48
  name: Instacast
49
49
  version: "1.1.2"
50
- -
50
+ -
51
51
  user_agent: Podcasts/2.1.2
52
52
  client:
53
53
  type: mobile app
54
54
  name: Podcasts
55
55
  version: "2.1.2"
56
- -
56
+ -
57
57
  user_agent: Shifty Jelly Pocket Casts, Android v4.4.3.1
58
58
  client:
59
59
  type: mobile app
60
60
  name: Pocket Casts
61
61
  version: "4.4.3.1"
62
- -
62
+ -
63
63
  user_agent: Pocket Casts
64
64
  client:
65
65
  type: mobile app
66
66
  name: Pocket Casts
67
67
  version: ""
68
- -
68
+ -
69
69
  user_agent: Mozilla/5.0 (Linux; U; en-us; BeyondPod)
70
70
  client:
71
71
  type: mobile app
72
72
  name: BeyondPod
73
73
  version: ""
74
- -
74
+ -
75
75
  user_agent: AntennaPod/0.9.9.1
76
76
  client:
77
77
  type: mobile app
78
78
  name: AntennaPod
79
79
  version: "0.9.9.1"
80
- -
80
+ -
81
81
  user_agent: AntennaPod/
82
82
  client:
83
83
  type: mobile app
84
84
  name: AntennaPod
85
85
  version: ""
86
- -
86
+ -
87
87
  user_agent: Overcast/1.0 (+http://overcast.fm/; iOS podcast app)
88
88
  client:
89
89
  type: mobile app
90
90
  name: Overcast
91
91
  version: "1.0"
92
- -
92
+ -
93
93
  user_agent: Podkicker/1.9.4
94
94
  client:
95
95
  type: mobile app
96
96
  name: Podkicker
97
97
  version: "1.9.4"
98
- -
98
+ -
99
99
  user_agent: Podkicker Pro/1.9.4
100
100
  client:
101
101
  type: mobile app
102
- name: Podkicker
102
+ name: Podkicker Pro
103
103
  version: "1.9.4"
104
- -
104
+ -
105
105
  user_agent: Castro/64 CFNetwork/672.1.15 Darwin/14.0.0
106
106
  client:
107
107
  type: mobile app
108
108
  name: Castro
109
109
  version: "64"
110
- -
110
+ -
111
111
  user_agent: Mozilla/5.0 (Linux; U; Windows NT 6.1; en-us; dream) DoggCatcher
112
112
  client:
113
113
  type: mobile app
114
114
  name: DoggCatcher
115
115
  version: ""
116
- -
116
+ -
117
117
  user_agent: Mozilla/5.0 (Linux; U; Android 4.2.2; ja-jp; SOL22 Build/10.3.1.D.0.257) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30 YJApp-ANDROID jp.co.yahoo.android.yjtop/3.15.1
118
118
  client:
119
119
  type: mobile app
120
120
  name: Yahoo! Japan
121
121
  version: "3.15.1"
122
- -
122
+ -
123
123
  user_agent: RSSRadio/9220 (iPad;iOS;12.3.1)
124
124
  client:
125
125
  type: mobile app
126
126
  name: RSSRadio
127
127
  version: "9220"
128
- -
128
+ -
129
129
  user_agent: RSSRadio/9252
130
130
  client:
131
131
  type: mobile app
132
132
  name: RSSRadio
133
133
  version: "9252"
134
- -
134
+ -
135
135
  user_agent: RSSRadio/
136
136
  client:
137
137
  type: mobile app
138
138
  name: RSSRadio
139
139
  version: ""
140
- -
140
+ -
141
141
  user_agent: Mozilla/5.0 (Linux; Android 7.0; JMM-AL00 Build/HONORJMM-AL00; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/62.0.3202.84 Mobile Safari/537.36 SogouSearch Android1.0 version3.0 AppVersion/6002
142
142
  client:
143
143
  type: mobile app
144
144
  name: SogouSearch App
145
145
  version: "3.0"
146
- -
146
+ -
147
147
  user_agent: Dalvik/2.1.0 (Linux; U; Android 6.0.1; MI 4LTE MIUI/V7.3.2.0.MXDCNDD) NewsArticle/5.1.3
148
148
  client:
149
149
  type: mobile app
150
150
  name: NewsArticle App
151
151
  version: "5.1.3"
152
- -
152
+ -
153
153
  user_agent: Mozilla/5.0 (Linux; Android 5.1; m2 note) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/33.0.0.0 Mobile Safari/537.36 baidubrowser/5.3.4.0 (Baidu; P1 4.3.1) tieba/6.7.2 BMW
154
154
  client:
155
155
  type: mobile app
156
156
  name: tieba
157
157
  version: "6.7.2"
158
- -
158
+ -
159
159
  user_agent: com.douban.group/2.2.0(220) Mozilla/5.0 (Linux; U; Android 4.1.1; zh-cn; MI 2A Build/JRO03L) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30
160
160
  client:
161
161
  type: mobile app
162
162
  name: douban App
163
163
  version: "2.2.0"
164
- -
164
+ -
165
165
  user_agent: Mozilla/5.0 (Linux; Android 7.0; VIE-L09 Build/HUAWEIVIE-L09; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/59.0.3071.125 Mobile Safari/537.36 BingWeb/6.9.25207603
166
166
  client:
167
167
  type: mobile app
168
168
  name: BingWebApp
169
169
  version: "6.9.25207603"
170
- -
170
+ -
171
171
  user_agent: Mozilla/5.0 (Linux; U; Android 4.1.2; fr-ca; LT30a Build/9.1.A.0.489) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30 GSA/3.3.11.1069658.arm
172
172
  client:
173
173
  type: mobile app
174
174
  name: Google Search App
175
175
  version: "3.3.11.1069658"
176
- -
176
+ -
177
177
  user_agent: Mozilla/5.0 (Linux; U; Android 2.3.4; ru-ru; WT19i Build/4.0.2.A.0.58) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 Flipboard/2.1.2/854,2.1.2.854,2013-12-05 11:59, +0300
178
178
  client:
179
179
  type: mobile app
180
180
  name: Flipboard App
181
181
  version: "2.1.2"
182
- -
182
+ -
183
183
  user_agent: Mozilla/5.0 (Linux; Android 6.0.1; ASUS_Z011D Build/MMB29P; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/67.0.3396.87 Mobile Safari/537.36 Instagram 53.0.0.13.84 Android (23/6.0.1; 480dpi; 1080x1920; asus; ASUS_Z011D; ASUS_Z011; qcom; fr_FR; 116756948)
184
184
  client:
185
185
  type: mobile app
186
186
  name: Instagram App
187
187
  version: "53.0.0.13.84"
188
- -
188
+ -
189
189
  user_agent: TCL J706T_TD/1.0 Linux/3.4.5 Android/4.1.2 Release/08.27.2013 Browser/AppleWebKit534.30 Profile/MIDP-2.0 Configuration/CLDC-1.1 baiduboxapp/4.2 (Baidu; P1 4.1.2)
190
190
  client:
191
191
  type: mobile app
192
192
  name: Baidu Box App
193
193
  version: "4.2"
194
- -
194
+ -
195
195
  user_agent: Mozilla/5.0 (Linux; Android 4.4.4; GT-I9195I Build/KTU84P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.130 Crosswalk/14.43.343.17 Mobile Safari/537.36
196
196
  client:
197
197
  type: mobile app
@@ -214,28 +214,37 @@
214
214
  client:
215
215
  type: mobile app
216
216
  name: TopBuzz
217
- version: 10.2.1
217
+ version: "10.2.1"
218
218
  -
219
219
  user_agent: Mozilla/5.0 (iPhone; CPU iPhone OS 13_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.5 Mobile/15E148 Snapchat/10.77.0.54 (like Safari/604.1)
220
220
  client:
221
221
  type: mobile app
222
222
  name: Snapchat
223
- version: 10.77.0.54
224
-
223
+ version: "10.77.0.54"
225
224
  -
226
- user_agent: Siri/1 CFNetwork/1128.0.1 Darwin/19.6.0
227
- client:
228
- type: mobile app
229
- name: Siri
230
- version: "1.0"
231
-
225
+ user_agent: Siri/1 CFNetwork/1128.0.1 Darwin/19.6.0
226
+ client:
227
+ type: mobile app
228
+ name: Siri
229
+ version: "1.0"
232
230
  -
233
231
  user_agent: LinkedIn/9.7.1681 CFNetwork/808.1.4 Darwin/16.1.0
234
232
  client:
235
233
  type: mobile app
236
234
  name: LinkedIn
237
235
  version: "9.7.1681"
238
-
236
+ -
237
+ user_agent: Mozilla/5.0 (Linux; Android 10; Redmi Note 8 Pro Build/QP1A.190711.020; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/87.0.4280.141 Mobile Safari/537.36 [LinkedInApp]
238
+ client:
239
+ type: mobile app
240
+ name: LinkedIn
241
+ version: ""
242
+ -
243
+ user_agent: Mozilla/5.0 (iPhone; CPU iPhone OS 13_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]
244
+ client:
245
+ type: mobile app
246
+ name: LinkedIn
247
+ version: ""
239
248
  -
240
249
  user_agent: Twitter/7.57 CFNetwork/978.0.7 Darwin/18.7.0
241
250
  client:
@@ -247,4 +256,448 @@
247
256
  client:
248
257
  type: mobile app
249
258
  name: Twitter
250
- version: ""
259
+ version: ""
260
+ -
261
+ user_agent: Instapaper/7.8.3.3; CFNetwork/1128.0.1; Darwin/19.6.0
262
+ client:
263
+ type: mobile app
264
+ name: Instapaper
265
+ version: 7.8.3.3
266
+ -
267
+ user_agent: Keeper/14.11.1.8605; CFNetwork/978.0.7; Darwin/18.7.0
268
+ client:
269
+ type: mobile app
270
+ name: Keeper Password Manager
271
+ version: 14.11.1.8605
272
+ -
273
+ user_agent: WeChatShareExtensionNew/7.0.15.33; CFNetwork/1128.0.1; Darwin/19.6.0
274
+ client:
275
+ type: mobile app
276
+ name: WeChat Share Extension
277
+ version: 7.0.15.33
278
+ -
279
+ user_agent: Skyeng Teachers/17; CFNetwork/1128.0.1; Darwin/19.6.0
280
+ client:
281
+ type: mobile app
282
+ name: Skyeng Teachers
283
+ version: "17"
284
+ -
285
+ user_agent: Kik/15.15.0.21560 (Android 10) Mozilla/5.0 (Linux; Android 10; Pixel 2 Build/QP1A.190711.020; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/74.0.3729.186 Mobile Safari/537.36
286
+ client:
287
+ type: mobile app
288
+ name: Kik
289
+ version: 15.15.0.21560
290
+ -
291
+ user_agent: DeviantArt/167 CFNetwork/811.5.4 Darwin/16.7.0
292
+ client:
293
+ type: mobile app
294
+ name: DeviantArt
295
+ version: ""
296
+ -
297
+ user_agent: com.google.GoogleMobile/23.1.0 iPhone/11.4.1 hw/iPhone6_2
298
+ client:
299
+ type: mobile app
300
+ name: Google Search App
301
+ version: 23.1.0
302
+ -
303
+ user_agent: Discord/966 CFNetwork/758.5.3 Darwin/15.6.0
304
+ client:
305
+ type: mobile app
306
+ name: Discord
307
+ version: ""
308
+ -
309
+ user_agent: Covenant%20Eyes/5.3.8.0 CFNetwork/1121.2.2 Darwin/19.3.0
310
+ client:
311
+ type: mobile app
312
+ name: Covenant Eyes
313
+ version: 5.3.8.0
314
+ -
315
+ user_agent: HP%20Smart/519 CFNetwork/894 Darwin/17.4.0
316
+ client:
317
+ type: mobile app
318
+ name: HP Smart
319
+ version: ""
320
+ -
321
+ user_agent: Bitsboard/33.0.1 CFNetwork/894 Darwin/17.4.0
322
+ client:
323
+ type: mobile app
324
+ name: Bitsboard
325
+ version: 33.0.1
326
+ -
327
+ user_agent: Betbull/2155 CFNetwork/978.0.7 Darwin/18.7.0
328
+ client:
329
+ type: mobile app
330
+ name: BetBull
331
+ version: ""
332
+ -
333
+ user_agent: U-Cursos/132 CFNetwork/811.5.4 Darwin/16.7.0
334
+ client:
335
+ type: mobile app
336
+ name: U-Cursos
337
+ version: ""
338
+ -
339
+ user_agent: 1PasswordThumbs/1 CFNetwork/596.5 Darwin/12.5.0 (x86_64) (MacBookAir4%2C1)
340
+ client:
341
+ type: mobile app
342
+ name: 1Password
343
+ version: "1"
344
+ -
345
+ user_agent: Word/15.22.506 (Mac OS/10.11.5; Desktop; en-US; NonAppStore; Apple/MacBookAir7,1)
346
+ client:
347
+ type: mobile app
348
+ name: Microsoft Office Word
349
+ version: 15.22.506
350
+ -
351
+ user_agent: Microsoft Office PowerPoint/15.29.1215 (Mac OS/10.11.5; Desktop; en-US; NonAppStore; Apple/MacBookAir7,2)
352
+ client:
353
+ type: mobile app
354
+ name: Microsoft Office PowerPoint
355
+ version: 15.29.1215
356
+ -
357
+ user_agent: Microsoft Office Word/16.11.319 (Mac OS/10.10.5; Desktop; en-US; NonAppStore; Apple/MacBookAir6,1)
358
+ client:
359
+ type: mobile app
360
+ name: Microsoft Office Word
361
+ version: 16.11.319
362
+ -
363
+ user_agent: Microsoft Office Excel/16.44.1213 (Mac OS/11.1; Desktop; en-US; AppStore; Apple/MacBookAir10,1)
364
+ client:
365
+ type: mobile app
366
+ name: Microsoft Office Excel
367
+ version: 16.44.1213
368
+ -
369
+ user_agent: Microsoft Office OneNote/16.43/201106 (iOS/14.0.1; Tablet; es-MX; AppStore; Apple/iPad11,6)
370
+ client:
371
+ type: mobile app
372
+ name: Microsoft Office OneNote
373
+ version: "16.43"
374
+ -
375
+ user_agent: Microsoft Office Mobile/2.44.1211 (iOS/14.4; Phone; en-US; AppStore; Apple/iPhone8,4)
376
+ client:
377
+ type: mobile app
378
+ name: Microsoft Office Mobile
379
+ version: 2.44.1211
380
+ -
381
+ user_agent: OneDriveiOSApp/11.42.4 (iOS/13.3.1; en_CA; Apple/iPad)
382
+ client:
383
+ type: mobile app
384
+ name: Microsoft OneDrive
385
+ version: 11.42.4
386
+ -
387
+ user_agent: ShopeeVN/2.40.11 CFNetwork/978.0.7 Darwin/18.6.0
388
+ client:
389
+ type: mobile app
390
+ name: Shopee
391
+ version: 2.40.11
392
+ -
393
+ user_agent: SPORT1/6315 CFNetwork/808.2.16 Darwin/16.3.0
394
+ client:
395
+ type: mobile app
396
+ name: SPORT1
397
+ version: ""
398
+ -
399
+ user_agent: Clovia/3.3.1 CFNetwork/1206 Darwin/20.1.0
400
+ client:
401
+ type: mobile app
402
+ name: Clovia
403
+ version: 3.3.1
404
+ -
405
+ user_agent: ShowMe/1.2 CFNetwork/758.5.3 Darwin/15.6.0
406
+ client:
407
+ type: mobile app
408
+ name: ShowMe
409
+ version: "1.2"
410
+ -
411
+ user_agent: Wattpad/8.42.2.0 CFNetwork/1120 Darwin/19.0.0
412
+ client:
413
+ type: mobile app
414
+ name: Wattpad
415
+ version: 8.42.2.0
416
+ -
417
+ user_agent: WSJ/31581 CFNetwork/1120 Darwin/19.0.0
418
+ client:
419
+ type: mobile app
420
+ name: The Wall Street Journal
421
+ version: ""
422
+ -
423
+ user_agent: WH%20Questions/2.2 CFNetwork/887 Darwin/17.0.0
424
+ client:
425
+ type: mobile app
426
+ name: WH Questions
427
+ version: "2.2"
428
+ -
429
+ user_agent: whisper/201807171247 CFNetwork/901.1 Darwin/17.6.0
430
+ client:
431
+ type: mobile app
432
+ name: Whisper
433
+ version: ""
434
+ -
435
+ user_agent: Opal/6.54.1.0 CFNetwork/1206 Darwin/20.1.0
436
+ client:
437
+ type: mobile app
438
+ name: Opal Travel
439
+ version: 6.54.1.0
440
+ -
441
+ user_agent: Zalo/205.0 CFNetwork/889.9 Darwin/17.2.0
442
+ client:
443
+ type: mobile app
444
+ name: Zalo
445
+ version: "205.0"
446
+ -
447
+ user_agent: Yandex/9692 CFNetwork/1121.2.2 Darwin/19.3.0
448
+ client:
449
+ type: mobile app
450
+ name: Yandex
451
+ version: ""
452
+ -
453
+ user_agent: Zoho%20Chat/4.4.9.11 CFNetwork/1121.2.2 Darwin/19.2.0
454
+ client:
455
+ type: mobile app
456
+ name: Zoho Chat
457
+ version: 4.4.9.11
458
+ -
459
+ user_agent: Microsoft Office/16.0 (Windows NT 10.0; Microsoft PowerPoint 16.0.10730; Pro)
460
+ client:
461
+ type: mobile app
462
+ name: Microsoft Office PowerPoint
463
+ version: 16.0.10730
464
+ -
465
+ user_agent: Microsoft Office/16.0 (Windows NT 10.0; Microsoft OneDrive for Business 16.0.4266; Pro)
466
+ client:
467
+ type: mobile app
468
+ name: Microsoft Office OneDrive for Business
469
+ version: 16.0.4266
470
+ -
471
+ user_agent: Microsoft Office/16.0 (Windows NT 6.1; Microsoft Publisher 16.0.12527; Pro)
472
+ client:
473
+ type: mobile app
474
+ name: Microsoft Office Publisher
475
+ version: 16.0.12527
476
+ -
477
+ user_agent: Microsoft Office/16.0 (Windows NT 10.0; Microsoft Access 16.0.12827; Pro)
478
+ client:
479
+ type: mobile app
480
+ name: Microsoft Office Access
481
+ version: 16.0.12827
482
+ -
483
+ user_agent: Microsoft Office/16.0 (Windows NT 10.0; Microsoft Visio 16.0.13231; Pro)
484
+ client:
485
+ type: mobile app
486
+ name: Microsoft Office Visio
487
+ version: 16.0.13231
488
+ -
489
+ user_agent: Microsoft Office/16.0 (Windows NT 6.1; Microsoft Project 16.0.12527; Pro)
490
+ client:
491
+ type: mobile app
492
+ name: Microsoft Office Project
493
+ version: 16.0.12527
494
+ -
495
+ user_agent: OC/16.0.13231.20390 (Skype for Business)
496
+ client:
497
+ type: mobile app
498
+ name: Skype for Business
499
+ version: 16.0.13231.20390
500
+ -
501
+ user_agent: Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36 TBC/1.1.0.28 Thunder/10.1.31.740
502
+ client:
503
+ type: mobile app
504
+ name: Thunder
505
+ version: 10.1.31.740
506
+ -
507
+ user_agent: Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 CGNBrowser/1.3.93.10 Safari/537.36
508
+ client:
509
+ type: mobile app
510
+ name: CGN
511
+ version: 1.3.93.10
512
+ -
513
+ user_agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Rocket.Chat+/2.9.0 Chrome/58.0.3029.110 Electron/1.7.6 Safari/537.36
514
+ client:
515
+ type: mobile app
516
+ name: Rocket Chat
517
+ version: 2.9.0
518
+ -
519
+ user_agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Rocket.Chat/2.17.11 Chrome/78.0.3904.130 Electron/7.1.14 Safari/537.36
520
+ client:
521
+ type: mobile app
522
+ name: Rocket Chat
523
+ version: 2.17.11
524
+ -
525
+ user_agent: Pandora Audio/2101.1 (Linux;Android 10) ExoPlayerLib/2.9.6
526
+ client:
527
+ type: mobile app
528
+ name: Pandora
529
+ version: ""
530
+ -
531
+ user_agent: NPROneAndroid
532
+ client:
533
+ type: mobile app
534
+ name: NPR One
535
+ version: ""
536
+ -
537
+ user_agent: WirtschaftsWoche-iOS-1.1.14-20200824.1315
538
+ client:
539
+ type: mobile app
540
+ name: Wirtschafts Woche
541
+ version: 1.1.14
542
+ -
543
+ user_agent: Outlook-iOS/709.2042344.prod.iphone (3.21.0)
544
+ client:
545
+ type: mobile app
546
+ name: Microsoft Outlook
547
+ version: 3.21.0
548
+ -
549
+ user_agent: TVirl/0.3.2.2 (Linux;Android 7.0)
550
+ client:
551
+ type: mobile app
552
+ name: TVirl
553
+ version: 0.3.2.2
554
+ -
555
+ user_agent: Mozilla/5.0 (Linux; Android 10; JNY-LX1 Build/HUAWEIJNY-L21; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/78.0.3904.108 Mobile Safari/537.36 BNC/1.7.0 (Android 1.39.4)
556
+ client:
557
+ type: mobile app
558
+ name: Binance
559
+ version: 1.39.4
560
+ -
561
+ user_agent: ru.mail.my/2.8.15 (iOS 14.4; iPhone; Scale/2); mmMobileClient
562
+ client:
563
+ type: mobile app
564
+ name: My World
565
+ version: 2.8.15
566
+ -
567
+ user_agent: Mozilla/5.0 (Linux; Android 8.1.0; C1 Build/O11019; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/69.0.3497.100 Mobile Safari/537.36 OKAndroid/19.11.26 b577 OkApp
568
+ client:
569
+ type: mobile app
570
+ name: Odnoklassniki
571
+ version: 19.11.26
572
+ -
573
+ user_agent: Mozilla/5.0 (iPad; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/602.3.12 (KHTML, like Gecko) Mobile/14C92 (iPad3,4) OKiOS/6.10.2 OKApp
574
+ client:
575
+ type: mobile app
576
+ name: Odnoklassniki
577
+ version: 6.10.2
578
+ -
579
+ user_agent: com.netflix.mediaclient/35245 (Linux; U; Android 5.1.1; es_ES; KFDOWI; Build/LVY48F; Cronet/76.0.3809.111)
580
+ client:
581
+ type: mobile app
582
+ name: Netflix
583
+ version: ""
584
+ -
585
+ user_agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) yakyak/1.5.0 Chrome/58.0.3029.110 Electron/1.7.10 Safari/537.36
586
+ client:
587
+ type: mobile app
588
+ name: YakYak
589
+ version: 1.5.0
590
+ -
591
+ user_agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Teams/1.3.00.362 Chrome/66.0.3359.181 Electron/3.1.13 Safari/537.36
592
+ client:
593
+ type: mobile app
594
+ name: Teams
595
+ version: 1.3.00.362
596
+ -
597
+ user_agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) StreamlabsOBS/0.23.2 Chrome/76.0.3809.146 Electron/6.1.11 Safari/537.36
598
+ client:
599
+ type: mobile app
600
+ name: Streamlabs OBS
601
+ version: 0.23.2
602
+ -
603
+ user_agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) TuneIn/1.20.0 Chrome/69.0.3497.128 Electron/4.2.8 Safari/537.36
604
+ client:
605
+ type: mobile app
606
+ name: TuneIn Radio
607
+ version: 1.20.0
608
+ -
609
+ user_agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) strimio-desktop/2.33.10 Chrome/87.0.4280.141 Electron/11.4.3 Safari/537.36
610
+ client:
611
+ type: mobile app
612
+ name: Strimio
613
+ version: 2.33.10
614
+ -
615
+ user_agent: Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Blitz/1.14.3 Chrome/87.0.4280.141 Electron/11.2.1 Safari/537.36
616
+ client:
617
+ type: mobile app
618
+ name: Blitz
619
+ version: 1.14.3
620
+ -
621
+ user_agent: Mozilla/5.0 (Linux; Android 11;) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.210 Mobile Safari/537.36 Vuhuv/2.1.0519
622
+ client:
623
+ type: mobile app
624
+ name: Vuhuv
625
+ version: 2.1.0519
626
+ -
627
+ user_agent: Mozilla/5.0 (Linux; U; Android 8.0.0; en-us) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/53.0.2785.146 Mobile Safari/537.36 QuickCast
628
+ client:
629
+ type: mobile app
630
+ name: QuickCast
631
+ version: ""
632
+ -
633
+ user_agent: Mozilla/5.0 (Linux; U; Android 11; zh-CN; SM-A515F Build/RP1A.200720.012) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/69.0.3497.100 UWS/3.22.1.117 Mobile Safari/537.36 AliApp(AliexpressAndroid/8.28.0) UCBS/2.11.1.1
634
+ client:
635
+ type: mobile app
636
+ name: AliExpress
637
+ version: 8.28.0
638
+ -
639
+ user_agent: M2003J15SC(Android/11) AliApp(AliExpress/8.5.1) Weex/0.26.4.9-ae vercode/307 1080x2110
640
+ client:
641
+ type: mobile app
642
+ name: AliExpress
643
+ version: 8.5.1
644
+ -
645
+ user_agent: Mozilla/5.0 (Linux; Android 5.1.1) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Blue Proxy/1.0.18 Chrome/74.0.3729.157 Mobile Safari/537.36
646
+ client:
647
+ type: mobile app
648
+ name: Blue Proxy
649
+ version: 1.0.18
650
+ -
651
+ user_agent: COAF%20SMART%20Citizen/3331 CFNetwork/1206 Darwin/20.1.0
652
+ client:
653
+ type: mobile app
654
+ name: COAF SMART Citizen
655
+ version: ""
656
+ -
657
+ user_agent: Podkicker Classic/1.2.9
658
+ client:
659
+ type: mobile app
660
+ name: Podkicker Classic
661
+ version: 1.2.9
662
+ -
663
+ user_agent: iTunes/10.7 Downcast/2.8.24.1002
664
+ client:
665
+ type: mobile app
666
+ name: Downcast
667
+ version: 2.8.24.1002
668
+ -
669
+ user_agent: Pocket Casts
670
+ client:
671
+ type: mobile app
672
+ name: Pocket Casts
673
+ version: ""
674
+ -
675
+ user_agent: devcasts/1.0.3.24 CFNetwork/1240.0.4 Darwin/20.5.0
676
+ client:
677
+ type: mobile app
678
+ name: DevCasts
679
+ version: 1.0.3.24
680
+ -
681
+ user_agent: GaanaAndroid-8.27.3/Dalvik/2.1.0 (Linux; U; Android 9; Redmi Note 8 MIUI/V11.0.6.0.PCOINXM)
682
+ client:
683
+ type: mobile app
684
+ name: Gaana
685
+ version: 8.27.3
686
+ -
687
+ user_agent: AhaRadio2/8.12.3 CFNetwork/976 Darwin/18.2.0
688
+ client:
689
+ type: mobile app
690
+ name: Aha Radio 2
691
+ version: 8.12.3
692
+ -
693
+ user_agent: Unibox/428 CFNetwork/811.5.4 Darwin/16.6.0 (x86_64)
694
+ client:
695
+ type: mobile app
696
+ name: Unibox
697
+ version: ""
698
+ -
699
+ user_agent: Mozilla/5.0 (iPhone; CPU iPhone OS 12_5_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 musical_ly_21.0.0 JsSdk/2.0 NetType/WIFI Channel/App Store ByteLocale/ru Region/UA ByteFullLocale/ru-RU isDarkMode/0 WKWebView/1
700
+ client:
701
+ type: mobile app
702
+ name: TikTok
703
+ version: 21.0.0