Вход Регистрация
Файл: vendor/whichbrowser/parser/src/Analyser/Header/Useragent/Os.php
Строк: 2032
<?php

namespace WhichBrowserAnalyserHeaderUseragent;

use 
WhichBrowserConstants;
use 
WhichBrowserData;
use 
WhichBrowserModelFamily;
use 
WhichBrowserModelVersion;

trait 
Os
{
    private function &
detectOperatingSystem($ua)
    {
        
$this->detectUnix($ua);
        
$this->detectLinux($ua);
        
$this->detectBsd($ua);
        
$this->detectDarwin($ua);
        
$this->detectWindows($ua);
        
$this->detectAndroid($ua);
        
$this->detectChromeos($ua);
        
$this->detectBlackberry($ua);
        
$this->detectWebos($ua);
        
$this->detectKaiOS($ua);
        
$this->detectSymbian($ua);
        
$this->detectNokiaOs($ua);
        
$this->detectTizen($ua);
        
$this->detectSailfish($ua);
        
$this->detectBada($ua);
        
$this->detectBrew($ua);
        
$this->detectQtopia($ua);
        
$this->detectOpenTV($ua);
        
$this->detectRemainingOperatingSystems($ua);

        return 
$this;
    }


    private function &
refineOperatingSystem($ua)
    {
        
$this->determineAndroidVersionBasedOnBuild($ua);

        return 
$this;
    }







    
/* Darwin */

    
private function detectDarwin($ua)
    {
        
/* iOS */

        
if (preg_match('/(iOS;/u'$ua)) {
            
$this->data->os->name 'iOS';
            
$this->data->device->type ConstantsDeviceType::MOBILE;
        }

        if (
preg_match('/(iPhone|iPad|iPod)/u'$ua) && !preg_match('/like iPhone/u'$ua)) {
            
$this->data->os->name 'iOS';

            if (
preg_match('/CPU like Mac OS X/u'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => '1.0' ]);
            }

            if (
preg_match('/OS (.*) like Mac OS X/u'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => str_replace('_''.'$match[1]) ]);
            }

            if (
preg_match('/iPhone OS ([0-9._]*);/u'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => str_replace('_''.'$match[1]) ]);
            }

            if (
preg_match('/iOS ([0-9.]*);/u'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            }

            if (
preg_match('/iPhone Simulator;/u'$ua)) {
                
$this->data->device->type ConstantsDeviceType::EMULATOR;
            } else {
                if (
preg_match('/(iPad|iPhone( 3GS| 3G| 4S| 4| 5)?|iPod( touch)?)/u'$ua$match)) {
                    
$device DataDeviceModels::identify('ios'$match[0]);

                    if (
$device) {
                        
$this->data->device $device;
                    }
                }

                if (
preg_match('/(iPad|iPhone|iPod)1?[0-9],[0-9][0-9]?/u'$ua$match)) {
                    
$device DataDeviceModels::identify('ios'$match[0]);

                    if (
$device) {
                        
$this->data->device $device;
                    }
                }
            }
        } elseif (
preg_match('/Mac OS X/u'$ua) || preg_match('/;os=Mac/u'$ua)) {
            
/* OS X */
            
            
$this->data->os->name 'OS X';

            if (
preg_match('/Mac OS X (1[0-9][0-9._]*)/u'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => str_replace('_''.'$match[1]), 'details' => ]);
            }

            if (
preg_match('/;os=Mac (1[0-9][0-9[.,]*)/u'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => str_replace(',''.'$match[1]), 'details' => ]);
            }

            if (
$this->data->os->version && $this->data->os->version->is('10.16')) {
                
$this->data->os->version = new Version([ 'value' => '11.0''details' => ]);
            }

            
$this->data->device->type ConstantsDeviceType::DESKTOP;
        }

        
/* Darwin */

        
if (preg_match('/Darwin(?:/([0-9]+).[0-9]+)?/u'$ua$match)) {
            if (
preg_match('/(X11;/u'$ua)) {
                
/* Darwin */
                
$this->data->os->name 'Darwin';
                
$this->data->device->type ConstantsDeviceType::DESKTOP;
            } elseif (
preg_match('/((?:x86_64|i386|Power%20Macintosh))/u'$ua)) {
                
/* OS X */
                
$this->data->os->name 'OS X';
                
$this->data->device->type ConstantsDeviceType::DESKTOP;

                if (isset(
$match[1])) {
                    
$version DataDarwin::getVersion('osx'$match[1]);
                    if (
$version) {
                        
$this->data->os->version = new Version($version);
                    }

                    if (
preg_match('/CFNetwork/([0-9.]+)/u'$ua$match)) {
                        
$version DataCFNetwork::getVersion('osx'$match[1]);
                        if (
$version) {
                            
$this->data->os->version = new Version($version);
                        }
                    }
                }
            } else {
                
/* iOS */
                
$this->data->os->name 'iOS';
                
$this->data->device->type ConstantsDeviceType::MOBILE;

                if (isset(
$match[1])) {
                    
$version DataDarwin::getVersion('ios'$match[1]);
                    if (
$version) {
                        
$this->data->os->version = new Version($version);
                    }

                    if (
preg_match('/CFNetwork/([0-9.]+)/u'$ua$match)) {
                        
$version DataCFNetwork::getVersion('ios'$match[1]);
                        if (
$version) {
                            
$this->data->os->version = new Version($version);
                        }
                    }
                }
            }
        }

        
/* Mac OS */

        
if (preg_match('/(; |()Macintosh;/u'$ua) && !preg_match('/OS X/u'$ua)) {
            
$this->data->os->name 'Mac OS';
            
$this->data->device->type ConstantsDeviceType::DESKTOP;
        }
    }


    
/* Android */

    
private function detectAndroid($ua)
    {
        
/* Android */

        
if (preg_match('/Andr[0o]id/ui'$ua)) {
            
$falsepositive false;

            
/* Prevent the Mobile IE 11 Franken-UA from matching Android */
            
if (preg_match('/IEMobile/1/u'$ua)) {
                
$falsepositive true;
            }
            if (
preg_match('/Windows Phone 10/u'$ua)) {
                
$falsepositive true;
            }

            
/* Prevent Windows 10 IoT Core from matching Android */
            
if (preg_match('/Windows IoT/u'$ua)) {
                
$falsepositive true;
            }

            
/* Prevent from OSes that claim to be 'like' Android from matching */
            
if (preg_match('/like Android/u'$ua)) {
                
$falsepositive true;
            }
            if (
preg_match('/COS like Android/u'$ua)) {
                
$falsepositive false;
            }

            if (!
$falsepositive) {
                
$this->data->os->name 'Android';
                
$this->data->os->version = new Version();

                if (
preg_match('/Andr[0o]id(?: )?(?:AllPhone_|CyanogenMod_|OUYA )?(?:/)?v?([0-9.]+)/ui'str_replace('-update'','$ua), $match)) {
                    
$this->data->os->version = new Version([ 'value' => $match[1], 'details' => ]);
                }

                if (
preg_match('/Android [0-9][0-9].[0-9][0-9].[0-9][0-9](([^)]+));/u'str_replace('-update'','$ua), $match)) {
                    
$this->data->os->version = new Version([ 'value' => $match[1], 'details' => ]);
                }

                if (
preg_match('/Android Eclair/u'$ua)) {
                    
$this->data->os->version = new Version([ 'value' => '2.0''details' => ]);
                }

                if (
preg_match('/Android KeyLimePie/u'$ua)) {
                    
$this->data->os->version = new Version([ 'value' => '4.4''details' => ]);
                }

                if (
preg_match('/Android (?:L|4.4.99);/u'$ua)) {
                    
$this->data->os->version = new Version([ 'value' => '5''details' => 3'alias' => 'L' ]);
                }

                if (
preg_match('/Android (?:M|5.[01].99);/u'$ua)) {
                    
$this->data->os->version = new Version([ 'value' => '6''details' => 3'alias' => 'M' ]);
                }

                if (
preg_match('/Android (?:N|6.0.99);/u'$ua)) {
                    
$this->data->os->version = new Version([ 'value' => '7''details' => 3'alias' => 'N' ]);
                }

                
$this->data->device->type ConstantsDeviceType::MOBILE;

                if (
$this->data->os->version->toFloat() >= 3) {
                    
$this->data->device->type ConstantsDeviceType::TABLET;
                }

                if (
$this->data->os->version->toFloat() >= && preg_match('/Mobile/u'$ua)) {
                    
$this->data->device->type ConstantsDeviceType::MOBILE;
                }

                
$candidates = [];

                if (
preg_match('/Build/ui'$ua) && (!preg_match('/AppleWebKit.*Build/ui'$ua) || preg_match('/Build.*AppleWebKit/ui'$ua))) {
                    
/* Normal Android useragent strings */

                    
if (preg_match('/; [a-z][a-zA-Z][-_][a-zA-Z][a-zA-Z] ([^;]*[^;s])s+(?:BUILD|Build|build)/u'$ua$match)) {
                        
$candidates[] = $match[1];
                    }

                    if (
preg_match('/Android [A-Za-z]+; (?:[a-zA-Z][a-zA-Z](?:[-_][a-zA-Z][a-zA-Z])?) Build/([^/]*)//u'$ua$match)) {
                        
$candidates[] = $match[1];
                    }

                    if (
preg_match('/;+? ?(?:**)?([^;]*[^;s]);?s+(?:BUILD|Build|build)/u'$ua$match)) {
                        
$candidates[] = $match[1];
                    }
                } elseif (
preg_match('/(Linux; Android [0-9.]+; ([^/]+)(; wv)?) AppleWebKit/u'$ua$match)) {
                    
/* New style minimal Android useragent string */

                    
$candidates[] = $match[1];
                } elseif (
preg_match('/Release//ui'$ua)) {
                    
/* WAP style useragent strings */

                    
if (preg_match('/^(?U)([^/]+)(?U)(?:(?:_CMCC_TD|_CMCC|_TD|_TDLTE|_LTE)?/[^/]*)? Linux/[0-9.+]+ Android/[0-9.]+/u'$this->removeKnownPrefixes($ua), $match)) {
                        
$candidates[] = $match[1];
                    } elseif (
preg_match('/^(?U)([^/]+)(?U)(?:(?:_CMCC_TD|_CMCC|_TD|_TDLTE|_LTE)?/[^/]*)? Android(_OS)?/[0-9.]+/u'$this->removeKnownPrefixes($ua), $match)) {
                        
$candidates[] = $match[1];
                    } elseif (
preg_match('/^(?U)([^/]+)(?U)(?:(?:_CMCC_TD|_CMCC|_TD|_TDLTE|_LTE)?/[^/]*)? Release/[0-9.]+/u'$this->removeKnownPrefixes($ua), $match)) {
                        
$candidates[] = $match[1];
                    }
                } elseif (
preg_match('/Mozilla//ui'$ua)) {
                    
/* Old Android useragent strings */

                    
if (preg_match('/Linux; (?:arm; |arm_64; )?(?:U; )?Android [^;]+; (?:[a-zA-Z][a-zA-Z](?:[-_][a-zA-Z][a-zA-Z])?; )?(?:[^;]+; ?)?([^/;]+)) /u'$ua$match)) {
                        
$candidates[] = $match[1];
                    } elseif (
preg_match('/(([^;]+);U;Android/[^;]+;[0-9]+*[0-9]+;CTC/2.0)/u'$ua$match)) {
                        
$candidates[] = $match[1];
                    }
                } else {
                    
/* Other applications */

                    
if (preg_match('/[34]G Explorer/[0-9.]+ (Linux;Android [0-9.]+,([^)]+))/u'$ua$match)) {
                        
$candidates[] = $match[1];
                    }

                    if (
preg_match('/GetJarSDK/.*android/[0-9.]+ ([^;]+; [^;]+; ([^)]+))$/u'$ua$match)) {
                        
$candidates[] = $match[1];
                    }
                }

                
$candidates array_unique($candidates);

                for (
$c 0$c count($candidates); $c++) {
                    if (
preg_match('/^[a-zA-Z][a-zA-Z](?:[-_][a-zA-Z][a-zA-Z])?$/u'$candidates[$c])) {
                        unset(
$candidates[$c]);
                        continue;
                    }

                    if (
preg_match('/^Android [0-9.]+$/u'$candidates[$c])) {
                        unset(
$candidates[$c]);
                        continue;
                    }

                    
/* Ignore "K" or "Unspecified Device" as a device, as it is a dummy value used by Chrome UA reduction */

                    
if ($candidates[$c] == 'K' || $candidates[$c] == 'Unspecified Device') {
                        unset(
$candidates[$c]);
                        continue;
                    }

                    
$candidates[$c] = preg_replace('/^[a-zA-Z][a-zA-Z][-_][a-zA-Z][a-zA-Z]s+/u'''$candidates[$c]);
                    
$candidates[$c] = preg_replace('/(.*) - [0-9.]+ - (?:with Google Apps - )?API [0-9]+ - [0-9]+x[0-9]+/''\1'$candidates[$c]);
                    
$candidates[$c] = preg_replace('/^sprd-/u'''$candidates[$c]);
                    
$candidates[$c] = preg_replace('/^HarmonyOS; /u'''$candidates[$c]);
                    
$candidates[$c] = preg_replace('/; GMSCore.*/u'''$candidates[$c]);
                    
$candidates[$c] = preg_replace('/; HMSCore.*/u'''$candidates[$c]);
                }

                
$candidates array_unique($candidates);

                if (
count($candidates)) {
                    
$this->data->device->model $candidates[0];
                    
$this->data->device->identified |= ConstantsId::PATTERN;

                    for (
$c 0$c count($candidates); $c++) {
                        
$device DataDeviceModels::identify('android'$candidates[$c]);
                        if (
$device->identified) {
                            
$device->identified |= $this->data->device->identified;
                            
$this->data->device $device;
                            break;
                        }
                    }
                }

                if (
preg_match('/HP eStation/u'$ua)) {
                    
$this->data->device->manufacturer 'HP';
                    
$this->data->device->model 'eStation';
                    
$this->data->device->type ConstantsDeviceType::PRINTER;
                    
$this->data->device->identified |= ConstantsId::MATCH_UA;
                    
$this->data->device->generic false;
                }
            }
        }

        if (
preg_match('/(Linux; (?:U; )?(?:([0-9.]+); )?(?:[a-zA-Z][a-zA-Z](?:[-_][a-zA-Z][a-zA-Z])?; )?([^;]+) Build/u'$ua$match)) {
            
$falsepositive false;

            if (
$match[2] == 'OpenTV') {
                
$falsepositive true;
            }

            if (!
$falsepositive) {
                
$this->data->device->type ConstantsDeviceType::MOBILE;
                
$this->data->device->model $match[2];

                
$this->data->os->name 'Android';

                if (!empty(
$match[1])) {
                    
$this->data->os->version = new Version([ 'value' => $match[1], 'details' => ]);
                }

                
$device DataDeviceModels::identify('android'$match[2]);
                if (
$device->identified) {
                    
$device->identified |= ConstantsId::PATTERN;
                    
$device->identified |= $this->data->device->identified;

                    
$this->data->device $device;
                }
            }
        }

        if (
preg_match('/Linux x86_64; ([^;)]+)(?:; [a-zA-Z][a-zA-Z](?:[-_][a-zA-Z][a-zA-Z])?)?) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.34 Safari/534.24/u'$ua$match)) {
            
$device DataDeviceModels::identify('android'$match[1]);
            if (
$device->identified) {
                
$device->identified |= ConstantsId::PATTERN;
                
$device->identified |= $this->data->device->identified;

                
$this->data->os->name 'Android';
                
$this->data->device $device;
            }
        }

        if (
preg_match('/(Linux; U; Linux Ventana; [^;]+; ([^;]+) Build/u'$ua$match)) {
            
$this->data->device->type ConstantsDeviceType::MOBILE;
            
$this->data->device->model $match[1];

            
$device DataDeviceModels::identify('android'$match[1]);
            if (
$device->identified) {
                
$device->identified |= ConstantsId::PATTERN;
                
$device->identified |= $this->data->device->identified;

                
$this->data->os->name 'Android';
                
$this->data->device $device;
            }
        }


        
/* Harmony OS */

        
if (preg_match('/HarmonyOS/u'$ua)) {
            
$this->data->os->name 'Harmony OS';
            
$this->data->os->version = new Version();


            if (
preg_match('/; Android ([0-9.]+);/u'$ua$match)) {
                
$this->data->os->family = new Family([
                    
'name' => 'Android',
                    
'version' => new Version([ 'value' => $match[1], 'details' => ])
                ]);
            }
        }


        
/* Aliyun OS */

        
if (preg_match('/Aliyun/u'$ua) || preg_match('/YunOs/ui'$ua)) {
            
$this->data->os->name 'Aliyun OS';
            
$this->data->os->family = new Family([ 'name' => 'Android' ]);
            
$this->data->os->version = new Version();

            if (
preg_match('/YunOs[ /]([0-9.]+)/iu'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => $match[1], 'details' => ]);
            }

            if (
preg_match('/AliyunOS ([0-9.]+)/u'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => $match[1], 'details' => ]);
            }

            
$this->data->device->type ConstantsDeviceType::MOBILE;

            if (
preg_match('/; ([^;]*[^;s])s+Build/u'$ua$match)) {
                
$this->data->device->model $match[1];
            }

            if (isset(
$this->data->device->model)) {
                
$this->data->device->identified |= ConstantsId::PATTERN;

                
$device DataDeviceModels::identify('android'$this->data->device->model);
                if (
$device->identified) {
                    
$device->identified |= $this->data->device->identified;
                    
$this->data->device $device;
                }
            }
        }

        if (
preg_match('/Android/u'$ua)) {
            if (
preg_match('/Android v(1.[0-9][0-9])_[0-9][0-9].[0-9][0-9]-/u'$ua$match)) {
                
$this->data->os->name 'Aliyun OS';
                
$this->data->os->family = new Family([ 'name' => 'Android' ]);
                
$this->data->os->version = new Version([ 'value' => $match[1], 'details' => ]);
            }

            if (
preg_match('/Android[ /](1.[0-9].[0-9].[0-9]+)-R?T/u'$ua$match)) {
                
$this->data->os->name 'Aliyun OS';
                
$this->data->os->family = new Family([ 'name' => 'Android' ]);
                
$this->data->os->version = new Version([ 'value' => $match[1], 'details' => ]);
            }

            if (
preg_match('/Android ([12].[0-9].[0-9]+)-R-20[0-9]+/u'$ua$match)) {
                
$this->data->os->name 'Aliyun OS';
                
$this->data->os->family = new Family([ 'name' => 'Android' ]);
                
$this->data->os->version = new Version([ 'value' => $match[1], 'details' => ]);
            }

            if (
preg_match('/Android 20[0-9]+./u'$ua$match)) {
                
$this->data->os->name 'Aliyun OS';
                
$this->data->os->family = new Family([ 'name' => 'Android' ]);
                
$this->data->os->version null;
            }
        }

        
/* Baidu Yi */

        
if (preg_match('/Baidu Yi/u'$ua)) {
            
$this->data->os->name 'Baidu Yi';
            
$this->data->os->family = new Family([ 'name' => 'Android' ]);
            
$this->data->os->version null;
        }

        
/* Google TV */

        
if (preg_match('/GoogleTV/u'$ua)) {
            
$this->data->os->name 'Google TV';
            
$this->data->os->family = new Family([ 'name' => 'Android' ]);

            
$this->data->device->type ConstantsDeviceType::TELEVISION;

            if (
preg_match('/GoogleTV [0-9.]+; ?([^;]*[^;s])s+Build/u'$ua$match)) {
                
$this->data->device->model $match[1];
            }

            if (isset(
$this->data->device->model) && $this->data->device->model) {
                
$this->data->device->identified |= ConstantsId::PATTERN;

                
$device DataDeviceModels::identify('android'$this->data->device->model);
                if (
$device->identified) {
                    
$device->identified |= $this->data->device->identified;
                    
$this->data->device $device;
                }
            }
        }

        
/* LeOS */

        
if (preg_match('/LeOS/u'$ua)) {
            
$this->data->os->name 'LeOS';
            
$this->data->os->family = new Family([ 'name' => 'Android' ]);

            if (
preg_match('/LeOS([0-9.]*)/u'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            }

            
$this->data->device->type ConstantsDeviceType::TABLET;

            if (
preg_match('/LeOS[0-9.]+; [^;]+; (.*) Build/u'$ua$match)) {
                
$this->data->device->model $match[1];
            }

            if (isset(
$this->data->device->model) && $this->data->device->model) {
                
$this->data->device->identified |= ConstantsId::PATTERN;

                
$device DataDeviceModels::identify('android'$this->data->device->model);
                if (
$device->identified) {
                    
$device->identified |= $this->data->device->identified;
                    
$this->data->device $device;
                }
            }
        }

        
/* WoPhone */

        
if (preg_match('/WoPhone/u'$ua)) {
            
$this->data->os->name 'WoPhone';
            
$this->data->os->family = new Family([ 'name' => 'Android' ]);

            if (
preg_match('/WoPhone/([0-9.]*)/u'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            }

            
$this->data->device->type ConstantsDeviceType::MOBILE;
        }

        
/* COS */

        
if (preg_match('/(COS|(China|Chinese) Operating System)/ui'$ua)) {
            if (
preg_match('/COS[/ ]?([0-9].[0-9.]+)/ui'$ua$match)) {
                
$this->data->os->name 'COS';
                
$this->data->os->family = new Family([ 'name' => 'Android' ]);
                
$this->data->os->version = new Version([ 'value' => $match[1], 'details' => ]);
            } elseif (
preg_match('/(?:(|; )(?:China|Chinese) Operating System ([0-9].[0-9.]*);/ui'$ua$match)) {
                
$this->data->os->name 'COS';
                
$this->data->os->family = new Family([ 'name' => 'Android' ]);
                
$this->data->os->version = new Version([ 'value' => $match[1], 'details' => ]);
            } elseif (
preg_match('/COS like Android/ui'$ua$match)) {
                
$this->data->os->name 'COS';
                
$this->data->os->family = new Family([ 'name' => 'Android' ]);
                
$this->data->os->version null;
                
$this->data->device->type ConstantsDeviceType::MOBILE;
            } elseif (
preg_match('/(COS like Android|COSBrowser/|(COS;|(COS 998;)/ui'$ua$match)) {
                
$this->data->os->name 'COS';
                
$this->data->os->family = new Family([ 'name' => 'Android' ]);
            }
        }

        
/* RemixOS */

        
if (preg_match('/RemixOS/u'$ua)) {
            
$this->data->os->name 'Remix OS';
            
$this->data->os->version null;
            
$this->data->os->family = new Family([ 'name' => 'Android' ]);

            if (
preg_match('/RemixOS ([0-9].[0-9])/u'$ua$match)) {
                switch (
$match[1]) {
                    case 
'5.1':
                        
$this->data->os->version = new Version([ 'value' => '1.0' ]);
                        break;
                    case 
'6.0':
                        
$this->data->os->version = new Version([ 'value' => '2.0' ]);
                        break;
                }
            }

            
$this->data->device->type ConstantsDeviceType::DESKTOP;
        }
    }

    private function 
determineAndroidVersionBasedOnBuild($ua)
    {
        if (
$this->data->isOs('Android')) {
            if (
preg_match('/Build/([^);]+)/u'$ua$match)) {
                
$version DataBuildIds::identify($match[1]);
                if (
$version) {
                    if (!isset(
$this->data->os->version) || $this->data->os->version == null || $this->data->os->version->value == null || $version->toFloat() < $this->data->os->version->toFloat()) {
                        
$this->data->os->version $version;
                    }

                    
/* Special case for Android L */
                    
if ($version->toFloat() == 5) {
                        
$this->data->os->version $version;
                    }
                }

                
$this->data->os->build $match[1];
            }
        }
    }


    
/* Windows */

    
private function detectWindows($ua)
    {
        if (
preg_match('/(Windows|WinNT|WinCE|WinMobile|Win ?[9MX]|Win(16|32))/u'$ua)) {
            
$this->data->os->name 'Windows';
            
$this->data->device->type ConstantsDeviceType::DESKTOP;


            
/* Windows NT */

            
if (preg_match('/Windows 2000/u'$ua)) {
                
$this->data->os->version = new Version([ 'value' => '5.0''alias' => '2000' ]);
            }

            if (
preg_match('/(Windows XP|WinXP)/u'$ua)) {
                
$this->data->os->version = new Version([ 'value' => '5.1''alias' => 'XP' ]);
            }

            if (
preg_match('/Windows Vista/u'$ua)) {
                
$this->data->os->version = new Version([ 'value' => '6.0''alias' => 'Vista' ]);
            }

            if (
preg_match('/(?:Windows NT |WinNT)([0-9][0-9]?.[0-9])/u'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => $match[1] ]);

                switch (
$match[1]) {
                    case 
'10.1':
                    case 
'10.0':
                    case 
'6.4':
                        
$this->data->os->version = new Version([ 'value' => $match[1], 'alias' => '10' ]);
                        break;

                    case 
'6.3':
                        if (
preg_match('/; ARM;/u'$ua)) {
                            
$this->data->os->version = new Version([ 'value' => $match[1], 'alias' => 'RT 8.1' ]);
                        } else {
                            
$this->data->os->version = new Version([ 'value' => $match[1], 'alias' => '8.1' ]);
                        }
                        break;

                    case 
'6.2':
                        if (
preg_match('/; ARM;/u'$ua)) {
                            
$this->data->os->version = new Version([ 'value' => $match[1], 'alias' => 'RT' ]);
                        } else {
                            
$this->data->os->version = new Version([ 'value' => $match[1], 'alias' => '8' ]);
                        }
                        break;

                    case 
'6.1':
                        
$this->data->os->version = new Version([ 'value' => $match[1], 'alias' => '7' ]);
                        break;
                    case 
'6.0':
                        
$this->data->os->version = new Version([ 'value' => $match[1], 'alias' => 'Vista' ]);
                        break;
                    case 
'5.2':
                        
$this->data->os->version = new Version([ 'value' => $match[1], 'alias' => 'Server 2003' ]);
                        break;
                    case 
'5.1':
                        
$this->data->os->version = new Version([ 'value' => $match[1], 'alias' => 'XP' ]);
                        break;
                    case 
'5.0':
                        
$this->data->os->version = new Version([ 'value' => $match[1], 'alias' => '2000' ]);
                        break;
                    default:
                        
$this->data->os->version = new Version([ 'value' => $match[1], 'alias' => 'NT ' $match[1] ]);
                        break;
                }

                
$this->detectWindowsOemManufacturer($ua);
            }


            
/* Windows 10 IoT Core */

            
if (preg_match('/Windows IoT (1[0-9].[0-9]);/u'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => $match[1], 'alias' => '10 IoT Core' ]);
            }


            
/* Windows */

            
if (preg_match('/(Windows 95|Win95)/u'$ua)) {
                
$this->data->os->version = new Version([ 'value' => '4.0''alias' => '95' ]);
            }

            if (
preg_match('/(Windows 98|Win98)/u'$ua)) {
                
$this->data->os->version = new Version([ 'value' => '4.1''alias' => '98' ]);
            }

            if (
preg_match('/(Windows M[eE]|WinME)/u'$ua)) {
                
$this->data->os->version = new Version([ 'value' => '4.9''alias' => 'ME' ]);
            }

            if (
preg_match('/(?:Windows|Win 9x) (([1234].[0-9])[0-9.]*)/u'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => $match[1] ]);

                switch (
$match[2]) {
                    case 
'4.0':
                        
$this->data->os->version = new Version([ 'value' => '4.0''alias' => '95' ]);
                        break;
                    case 
'4.1':
                        
$this->data->os->version = new Version([ 'value' => '4.1''alias' => '98' ]);
                        break;
                    case 
'4.9':
                        
$this->data->os->version = new Version([ 'value' => '4.9''alias' => 'ME' ]);
                        break;
                }
            }


            
/* Windows Mobile and Windows Phone */

            
if (preg_match('/WPDesktop/u'$ua)) {
                
$this->data->os->name 'Windows Phone';
                
$this->data->os->version = new Version([ 'value' => '8.0''details' => ]);
                
$this->data->device->type ConstantsDeviceType::MOBILE;
                
$this->data->browser->mode 'desktop';
            }

            if (
preg_match('/WP7/u'$ua)) {
                
$this->data->os->name 'Windows Phone';
                
$this->data->os->version = new Version([ 'value' => '7''details' => ]);
                
$this->data->device->type ConstantsDeviceType::MOBILE;
                
$this->data->browser->mode 'desktop';
            }

            if (
preg_match('/WinMobile/u'$ua)) {
                
$this->data->os->name 'Windows Mobile';
                
$this->data->device->type ConstantsDeviceType::MOBILE;

                if (
preg_match('/WinMobile/([0-9.]*)/u'$ua$match)) {
                    
$this->data->os->version = new Version([ 'value' => $match[1], 'details' => ]);
                }
            }

            if (
preg_match('/(Windows CE|WindowsCE|WinCE)/u'$ua)) {
                
$this->data->device->type ConstantsDeviceType::MOBILE;

                if (
preg_match('/ IEMobile/u'$ua)) {
                    
$this->data->os->name 'Windows Mobile';

                    if (
preg_match('/ IEMobile/9/u'$ua)) {
                        
$this->data->os->name 'Windows Phone';
                        
$this->data->os->version = new Version([ 'value' => '7.5''details' => ]);
                    }

                    if (
preg_match('/ IEMobile 8/u'$ua)) {
                        
$this->data->os->version = new Version([ 'value' => '6.5''details' => ]);
                    }

                    if (
preg_match('/ IEMobile 7/u'$ua)) {
                        
$this->data->os->version = new Version([ 'value' => '6.1''details' => ]);
                    }

                    if (
preg_match('/ IEMobile 6/u'$ua)) {
                        
$this->data->os->version = new Version([ 'value' => '6.0''details' => ]);
                    }
                } else {
                    
$this->data->os->name 'Windows CE';

                    if (
preg_match('/WindowsCEOS/([0-9.]*)/u'$ua$match)) {
                        
$this->data->os->version = new Version([ 'value' => $match[1], 'details' => ]);
                    }

                    if (
preg_match('/Windows CE ([0-9.]*)/u'$ua$match)) {
                        
$this->data->os->version = new Version([ 'value' => $match[1], 'details' => ]);
                    }
                }


                
$model null;

                if (empty(
$model) && preg_match('/IEMobile [0-9.]+)  ?(?:PPC; |SP; |Smartphone; )?(?:[0-9]+[Xx][0-9]+;? )?(?:VZW; )?([^;(]+)/u'$ua$match)) {
                    if (!
preg_match('/(Profile/MIDP|UNTRUSTED)/u'$match[1])) {
                        
$model $match[1];
                    }
                }

                if (empty(
$model) && preg_match('/IEMobile [0-9.]+) (?:PPC|SP|Smartphone); (?:[0-9]+[Xx][0-9]+;? )([^;]+) Profile/MIDP/u'$ua$match)) {
                    
$model $match[1];
                }

                if (empty(
$model) && preg_match('/MSIE [0-9.]+; Windows CE; (?:PPC|SP|Smartphone); [0-9]+x[0-9]+; ([^;)]+))$/u'$ua$match)) {
                    
$model $match[1];
                }

                if (empty(
$model) && preg_match('/MSIE [0-9.]+; Windows CE; (?:PPC|SP|Smartphone); [0-9]+x[0-9]+; ([^;]+); (?:PPC|OpVer)/u'$ua$match)) {
                    
$model $match[1];
                }

                if (empty(
$model) && preg_match('/MSIE [0-9.]+; Windows CE; (?:PPC|SP|Smartphone); ([^;]+) Profile/MIDP/u'$ua$match)) {
                    
$model $match[1];
                }

                if (empty(
$model) && preg_match('/MSIE [0-9.]+; Windows CE; (?:PPC|SP|Smartphone) ([^;(]+)[;/] [0-9]+x[0-9]+/u'$ua$match)) {
                    
$model $match[1];
                }

                if (empty(
$model) && preg_match('/MSIE [0-9.]+; Windows CE; ([^;(]+); [0-9]+x[0-9]+)/u'$ua$match)) {
                    if (!
preg_match('/^(Smartphone|PPC$)/u'$match[1])) {
                        
$model $match[1];
                    }
                }

                if (empty(
$model) && preg_match('/MSIE [0-9.]+; Windows CE; ([^;(]+);? ?(?:PPC|SP|Smartphone); ?[0-9]+x[0-9]+/u'$ua$match)) {
                    if (!
preg_match('/^(MIDP-2.0)/u'$match[1])) {
                        
$model $match[1];
                    }
                }

                if (empty(
$model) && preg_match('/MSIE [0-9.]+; Windows CE; ([^;)]+)(?:; (?:PPC|SP|Smartphone); [0-9]+x[0-9]+)?)( [[a-zA-Z-]+])?$/u'$ua$match)) {
                    if (!
preg_match('/^(IEMobile|MIDP-2.0|Smartphone|PPC$)/u'$match[1])) {
                        
$model $match[1];
                    }
                }

                if (!empty(
$model)) {
                    
$model preg_replace('/(HTC/|Toshiba/)/'''$model);

                    
$this->data->device->model $model;
                    
$this->data->device->identified |= ConstantsId::PATTERN;
                    
$this->data->os->name 'Windows Mobile';

                    
$device DataDeviceModels::identify('wm'$model);
                    if (
$device->identified) {
                        
$device->identified |= $this->data->device->identified;
                        
$this->data->device $device;
                    }
                } else {
                    if (empty(
$model) && preg_match('/Windows CE [^;]+; Trident/[^;]+; IEMobile[/ ][^;]+[);] ([A-Zs]+); ?([^/),]+)/ui'$ua$match)) {
                        
$model $match[2];
                    }

                    if (!empty(
$model)) {
                        
$this->data->device->model $model;
                        
$this->data->device->identified |= ConstantsId::PATTERN;
                        
$this->data->os->name 'Windows Phone';

                        
$device DataDeviceModels::identify('wp'$model);
                        if (
$device->identified) {
                            
$device->identified |= $this->data->device->identified;
                            
$this->data->device $device;
                        }
                    }
                }
            }

            if (
preg_match('/Microsoft Windows; (PPC|Smartphone)/u'$ua)) {
                
$this->data->os->name 'Windows Mobile';
                
$this->data->device->type ConstantsDeviceType::MOBILE;
            }

            if (
preg_match('/Windows CE; (PPC|Smartphone)/u'$ua)) {
                
$this->data->os->name 'Windows Mobile';
                
$this->data->device->type ConstantsDeviceType::MOBILE;
            }


            
/* Detect models in common places */

            
if (preg_match('/Windows ?Mobile/u'$ua)) {
                
$this->data->os->name 'Windows Mobile';
                
$this->data->device->type ConstantsDeviceType::MOBILE;

                if (
preg_match('/Windows ?Mobile[/ ]([0-9.]*)/u'$ua$match)) {
                    
$this->data->os->version = new Version([ 'value' => $match[1], 'details' => ]);
                }

                if (
preg_match('/Windows Mobile; (?:SHARP/)?([^;]+); (?:PPC|Smartphone);/u'$ua$match)) {
                    
$this->data->device->model $match[1];
                    
$this->data->device->identified |= ConstantsId::PATTERN;

                    
$device DataDeviceModels::identify('wm'$match[1]);
                    if (
$device->identified) {
                        
$device->identified |= $this->data->device->identified;
                        
$this->data->device $device;
                    }
                }

                if (
preg_match('/(([^;]+); U; Windows Mobile/u'$ua$match)) {
                    
$this->data->device->model $match[1];
                    
$this->data->device->identified |= ConstantsId::PATTERN;

                    
$device DataDeviceModels::identify('wm'$match[1]);
                    if (
$device->identified) {
                        
$device->identified |= $this->data->device->identified;
                        
$this->data->device $device;
                    }
                }
            }

            if (
preg_match('/(Windows Phone|Windows NT 1[0-9].[0-9]; ARM|WPDesktop|ZuneWP7)/u'$ua)) {
                
$this->data->os->name 'Windows Phone';
                
$this->data->device->type ConstantsDeviceType::MOBILE;

                if (
preg_match('/Windows Phone(?: OS)?[ /]([0-9.]*)/u'$ua$match)) {
                    
$this->data->os->version = new Version([ 'value' => $match[1], 'details' => ]);

                    if (
intval($match[1]) < 7) {
                        
$this->data->os->name 'Windows Mobile';
                    }
                }

                
/* Windows Mobile 6.5 */
                
if (preg_match('/Windows NT 5.1; ([^;]+); Windows Phone/u'$ua$match)) {
                    
$this->data->device->model $match[1];
                    
$this->data->device->identified |= ConstantsId::PATTERN;

                    
$device DataDeviceModels::identify('wm'$match[1]);
                    if (
$device->identified) {
                        
$device->identified |= $this->data->device->identified;
                        
$this->data->device $device;
                    }
                }

                
/* Windows Phone 7 (buggy) */
                
if (preg_match('/Windows Phone OS [^;]+; Trident/[^;]+; IEMobile[/ ][^;]+[);] ([A-Zs]+); ?([^/),]+)/ui'$ua$match)) {
                    
$this->data->device->manufacturer $match[1];
                    
$this->data->device->model $match[2];
                    
$this->data->device->identified |= ConstantsId::PATTERN;

                    
$device DataDeviceModels::identify('wp'$match[2]);
                    if (
$device->identified) {
                        
$device->identified |= $this->data->device->identified;
                        
$this->data->device $device;
                    }
                }

                
/* Windows Phone 7 and 8 */
                
if (preg_match('/IEMobile/[^;]+;(?: ARM; Touch; )?(?:rv:[0-9]+; )?(?: WpsLondonTest; )?s*([^;s][^;)]*);s*([^;)s][^;)]*)[;|)]/u'$ua$match)) {
                    
$this->data->device->manufacturer $match[1];
                    
$this->data->device->model $match[2];
                    
$this->data->device->identified |= ConstantsId::PATTERN;

                    
$device DataDeviceModels::identify('wp'$match[2]);
                    if (
$device->identified) {
                        
$device->identified |= $this->data->device->identified;
                        
$this->data->device $device;
                    }
                }

                
/* Windows Phone 10 */
                
if (preg_match('/Windows Phone 1[0-9].[0-9]; Android [0-9.]+; (?:WebView/[0-9.]+; )?([^;s][^;]*);s*([^;)s][^;)]*)[;|)]/u'$ua$match)) {
                    
$this->data->device->manufacturer $match[1];
                    
$this->data->device->model $match[2];
                    
$this->data->device->identified |= ConstantsId::PATTERN;

                    
$device DataDeviceModels::identify('wp'$match[2]);
                    if (
$device->identified) {
                        
$device->identified |= $this->data->device->identified;
                        
$this->data->device $device;
                    }
                }

                
/* Windows Phone 10 Continuum */
                
if (preg_match('/Windows NT 1[0-9].[0-9]; ARM; ([^;)s][^;)]*))/u'$ua$match)) {
                    
$this->data->device->model $match[1];
                    
$this->data->device->identified |= ConstantsId::PATTERN;

                    
$device DataDeviceModels::identify('wp'$match[1]);
                    if (
$device->identified) {
                        
$device->identified |= $this->data->device->identified;
                        
$this->data->device $device;
                    }

                    
$this->data->device->type ConstantsDeviceType::DESKTOP;
                }

                
/* Third party browsers */
                
if (preg_match('/IEMobile/[^;]+;(?: ARM; Touch; )?s*(?:[^/]+/[^/]+);s*([^;s][^;]*);s*([^;)s][^;)]*)[;|)]/u'$ua$match)) {
                    
$this->data->device->manufacturer $match[1];
                    
$this->data->device->model $match[2];
                    
$this->data->device->identified |= ConstantsId::PATTERN;

                    
$device DataDeviceModels::identify('wp'$match[2]);
                    if (
$device->identified) {
                        
$device->identified |= $this->data->device->identified;
                        
$this->data->device $device;
                    }
                }

                if (
preg_match('/(Windows Phone OS/[0-9.]+; ([^:]+):([^;]+); [a-z]+(?:-[a-z]+)?)/iu'$ua$match)) {
                    
$this->data->device->manufacturer $match[1];
                    
$this->data->device->model $match[2];
                    
$this->data->device->identified |= ConstantsId::PATTERN;

                    
$device DataDeviceModels::identify('wp'$match[2]);
                    if (
$device->identified) {
                        
$device->identified |= $this->data->device->identified;
                        
$this->data->device $device;
                    }
                }

                
/* Desktop mode of WP 8.1 */
                
if (preg_match('/WPDesktop;s*([^;)]*)(?:;s*([^;)]*))?(?:;s*([^;)]*))?) like Gecko/u'$ua$match)) {
                    if (
preg_match("/^[A-Z]+$/"$match[1]) && isset($match[2])) {
                        
$this->data->device->manufacturer $match[1];
                        
$this->data->device->model $match[2];
                    } else {
                        
$this->data->device->model $match[1];
                    }

                    
$this->data->device->identified |= ConstantsId::PATTERN;

                    
$device DataDeviceModels::identify('wp'$this->data->device->model);
                    if (
$device->identified) {
                        
$device->identified |= $this->data->device->identified;
                        
$this->data->device $device;
                    }
                }

                
/* Desktop mode of WP 7 */
                
if (preg_match('/XBLWP7; ZuneWP7; ([^)]+))/u'$ua$match)) {
                    
$this->data->device->model $match[1];
                    
$this->data->device->identified |= ConstantsId::PATTERN;

                    
$device DataDeviceModels::identify('wp'$match[1]);
                    if (
$device->identified) {
                        
$device->identified |= $this->data->device->identified;
                        
$this->data->device $device;
                    }
                }

                
/* Desktop mode of WP 8.0 and 8.1 Update (buggy version) */
                
if (preg_match('/Touch; WPDesktop;s*([^;)]*)(?:;s*([^;)]*))?(?:;s*([^;)]*))?)/u'$ua$match)) {
                    if (
preg_match("/^[A-Z]+$/"$match[1]) && isset($match[2])) {
                        
$this->data->device->manufacturer $match[1];
                        
$this->data->device->model $match[2];
                    } else {
                        
$this->data->device->model $match[1];
                    }

                    
$this->data->device->identified |= ConstantsId::PATTERN;

                    
$device DataDeviceModels::identify('wp'$this->data->device->model);
                    if (
$device->identified) {
                        
$device->identified |= $this->data->device->identified;
                        
$this->data->device $device;
                    }
                }

                if (isset(
$this->data->device->manufacturer) && isset($this->data->device->model)) {
                    if (
$this->data->device->manufacturer == 'ARM' && $this->data->device->model == 'Touch') {
                        
$this->data->device->manufacturer null;
                        
$this->data->device->model null;
                        
$this->data->device->identified ConstantsId::NONE;
                    }

                    if (
$this->data->device->model == 'XDeviceEmulator') {
                        
$this->data->device->manufacturer null;
                        
$this->data->device->model null;
                        
$this->data->device->type ConstantsDeviceType::EMULATOR;
                        
$this->data->device->identified |= ConstantsId::MATCH_UA;
                    }
                }
            }
        } elseif (
preg_match('/WMPRO/u'$ua)) {
            
$this->data->os->name 'Windows Mobile';
            
$this->data->device->type ConstantsDeviceType::MOBILE;
        }
    }

    private function 
detectWindowsOemManufacturer($ua)
    {
        
$manufacturers = [
            
'MAAR'      => 'Acer',
            
'ASJB'      => 'Asus',
            
'ASU2'      => 'Asus',
            
'MAAU'      => 'Asus',
            
'NP06'      => 'Asus',
            
'NP07'      => 'Asus',
            
'NP08'      => 'Asus',
            
'NP09'      => 'Asus',
            
'CMNTDF'    => 'Compaq',
            
'CPDTDF'    => 'Compaq',
            
'CPNTDF'    => 'Compaq',
            
'MDDR'      => 'Dell',
            
'MDDC'      => 'Dell',
            
'MDDS'      => 'Dell',
            
'FSJB'      => 'Fujitsu',
            
'MAFS'      => 'Fujitsu',
            
'MAGW'      => 'Gateway',
            
'HPCMHP'    => 'HP',
            
'HPDTDF'    => 'HP',
            
'HPNTDF'    => 'HP',
            
'MANM'      => 'Hyrican',
            
'LCJB'      => 'Lenovo',
            
'LEN2'      => 'Lenovo',
            
'MALC'      => 'Lenovo',
            
'MALE'      => 'Lenovo',
            
'MALN'      => 'Lenovo',
            
'MAMD'      => 'Medion',
            
'MAMI'      => 'MSI',
            
'MAM3'      => 'MSI',
            
'MASM'      => 'Samsung',
            
'SMJB'      => 'Samsung',
            
'MASA'      => 'Sony',
            
'MASE'      => 'Sony',
            
'MASP'      => 'Sony',
            
'MATB'      => 'Toshiba',
            
'MATM'      => 'Toshiba',
            
'MATP'      => 'Toshiba',
            
'TAJB'      => 'Toshiba',
            
'TNJB'      => 'Toshiba',
        ];

        
$keys array_keys($manufacturers);

        if (
preg_match('/; (' implode('|'$keys) . ')(?:JS)?[);]/u'$ua$match)) {
            
$this->data->device->manufacturer $manufacturers[$match[1]];
            
$this->data->device->hidden true;
            
$this->data->device->identified |= ConstantsId::INFER;
        }
    }


    
/* Jolla Sailfish */

    
private function detectSailfish($ua)
    {
        if (
preg_match('/Sailfish;/u'$ua)) {
            
$this->data->os->name 'Sailfish';
            
$this->data->os->version null;

            if (
preg_match('/Jolla;/u'$ua)) {
                
$this->data->device->manufacturer 'Jolla';
            }

            if (
preg_match('/Mobile/u'$ua)) {
                
$this->data->device->model 'Phone';
                
$this->data->device->type ConstantsDeviceType::MOBILE;
                
$this->data->device->identified ConstantsId::PATTERN;
            }

            if (
preg_match('/Tablet/u'$ua)) {
                
$this->data->device->model 'Tablet';
                
$this->data->device->type ConstantsDeviceType::TABLET;
                
$this->data->device->identified ConstantsId::PATTERN;
            }
        }
    }


    
/* Bada */

    
private function detectBada($ua)
    {
        if (
preg_match('/[b|B]ada/u'$ua)) {
            
$this->data->os->name 'Bada';

            if (
preg_match('/[b|B]ada[/ ]([0-9.]*)/u'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => $match[1], 'details' => ]);
            }

            
$this->data->device->type ConstantsDeviceType::MOBILE;

            if (
preg_match('/(([^;]+); ([^/]+)//u'$ua$match)) {
                if (
$match[1] != 'Bada') {
                    
$this->data->device->manufacturer $match[1];
                    
$this->data->device->model $match[2];
                    
$this->data->device->identified ConstantsId::PATTERN;

                    
$device DataDeviceModels::identify('bada'$match[2]);

                    if (
$device->identified) {
                        
$device->identified |= $this->data->device->identified;
                        
$this->data->device $device;
                    }
                }
            }
        }
    }


    
/* Tizen */

    
private function detectTizen($ua)
    {
        if (
preg_match('/Tizen/u'$ua)) {
            
$this->data->os->name 'Tizen';

            if (
preg_match('/Tizen[/ ]?([0-9.]*[0-9])/u'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            }

            if (
preg_match('/(([^;]+); ([^/]+)//u'$ua$match)) {
                
$falsepositive false;
                if (
strtoupper($match[1]) == 'SMART-TV') {
                    
$falsepositive true;
                }
                if (
$match[1] == 'TV') {
                    
$falsepositive true;
                }
                if (
$match[1] == 'Linux') {
                    
$falsepositive true;
                }
                if (
$match[1] == 'Tizen') {
                    
$falsepositive true;
                }

                if (!
$falsepositive) {
                    
$this->data->device->manufacturer $match[1];
                    
$this->data->device->model $match[2];
                    
$this->data->device->identified ConstantsId::PATTERN;

                    
$device DataDeviceModels::identify('tizen'$match[2]);

                    if (
$device->identified) {
                        
$device->identified |= $this->data->device->identified;
                        
$this->data->device $device;
                    }
                }
            }

            if (
preg_match('/s*([^;]+);s+([^;)]+))/u'$ua$match)) {
                
$falsepositive false;
                if (
$match[1] == 'U') {
                    
$falsepositive true;
                }
                if (
substr($match[2], 05) == 'Tizen') {
                    
$falsepositive true;
                }
                if (
substr($match[2], 011) == 'AppleWebKit') {
                    
$falsepositive true;
                }
                if (
preg_match("/^[a-z]{2,2}(?:-[a-z]{2,2})?$/"$match[2])) {
                    
$falsepositive true;
                }

                if (!
$falsepositive) {
                    
$this->data->device->model $match[2];
                    
$this->data->device->identified ConstantsId::PATTERN;

                    
$device DataDeviceModels::identify('tizen'$match[2]);

                    if (
$device->identified) {
                        
$device->identified |= $this->data->device->identified;
                        
$this->data->device $device;
                    }
                }
            }


            if (!
$this->data->device->type && preg_match('/Mobile/iu'$ua$match)) {
                
$this->data->device->type ConstantsDeviceType::MOBILE;
            }


            if (
preg_match('/((SMART[ -])?TV;/iu'$ua$match)) {
                
$this->data->device->type ConstantsDeviceType::TELEVISION;
                
$this->data->device->manufacturer 'Samsung';
                
$this->data->device->series 'Smart TV';
                
$this->data->device->identified ConstantsId::PATTERN;
            }


            if (
preg_match('/(?:Samsung|Tizen ?)Browser/([0-9.]*)/u'$ua$match)) {
                
$this->data->browser->name "Samsung Browser";
                
$this->data->browser->channel null;
                
$this->data->browser->stock true;
                
$this->data->browser->version = new Version([ 'value' => $match[1] ]);
                
$this->data->browser->channel null;
            }
        }

        if (
preg_match('/Linux; U; Android [0-9.]+; ko-kr; SAMSUNG; (NX[0-9]+[^)]]*)/u'$ua$match)) {
            
$this->data->os->name 'Tizen';
            
$this->data->os->version null;

            
$this->data->device->type ConstantsDeviceType::CAMERA;
            
$this->data->device->manufacturer 'Samsung';
            
$this->data->device->model $match[1];
            
$this->data->device->identified ConstantsId::PATTERN;
        }
    }


    
/* Symbian */

    
private function detectSymbian($ua)
    {
        if (!
preg_match('/(EPOC|Series|Symbian|S60|UIQ)/ui'$ua)) {
            return;
        }

        
/* EPOC */

        
if (preg_match('/EPOC(?:32)?[;-)]/u'$ua$match)) {
            
$this->data->os->name 'EPOC';
            
$this->data->os->family = new Family([ 'name' => 'Symbian' ]);
            
$this->data->device->type ConstantsDeviceType::PDA;

            if (
preg_match('/Crystal/([0-9.]*)/u'$ua$match)) {
                
$this->data->os->name 'Series80';
                
$this->data->os->version = new Version([ 'value' => '1.0' ]);
                
$this->data->os->family->version = new Version([ 'value' => $match[1] ]);
                
$this->data->device->type ConstantsDeviceType::MOBILE;

                
$this->data->device->manufacturer 'Nokia';
                
$this->data->device->model '9210';
                
$this->data->device->identified |= ConstantsId::PATTERN;
            }

            if (
preg_match('/Nokia/Series-9200/u'$ua)) {
                
$this->data->os->name 'Series80';
                
$this->data->os->version = new Version([ 'value' => '1.0' ]);
                
$this->data->device->type ConstantsDeviceType::MOBILE;

                
$this->data->device->manufacturer 'Nokia';
                
$this->data->device->model '9210i';
                
$this->data->device->identified |= ConstantsId::PATTERN;
            }
        }

        
/* Series 80 */

        
if (preg_match('/Series80/([0-9.]*)/u'$ua$match)) {
            
$this->data->os->name 'Series80';
            
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            
$this->data->os->family = new Family([ 'name' => 'Symbian' ]);
            
$this->data->device->type ConstantsDeviceType::MOBILE;
        }

        
/* Series 60 */

        
if (preg_match('/Symbian/3/u'$ua)) {
            
$this->data->os->name 'Series60';
            
$this->data->os->version = new Version([ 'value' => '5.2' ]);
            
$this->data->os->family = new Family([ 'name' => 'Symbian' ]);
            
$this->data->device->type ConstantsDeviceType::MOBILE;
        }

        if (
preg_match('/Series[ ]?60/u'$ua) || preg_match('/S60[V/;]/u'$ua) || preg_match('/S60 Symb/u'$ua)) {
            
$this->data->os->name 'Series60';
            
$this->data->os->family = new Family([ 'name' => 'Symbian' ]);
            
$this->data->device->type ConstantsDeviceType::MOBILE;

            if (
preg_match('/Series60/([0-9.]*)/u'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            }

            if (
preg_match('/S60/([0-9.]*)/u'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            }

            if (
preg_match('/S60V([0-9.]*)/u'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            }
        }

        
/* UIQ */

        
if (preg_match('/UIQ/([0-9.]*)/u'$ua$match)) {
            
$this->data->os->name 'UIQ';
            
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            
$this->data->os->family = new Family([ 'name' => 'Symbian' ]);
            
$this->data->device->type ConstantsDeviceType::MOBILE;
        }

        
/* Symbian */

        
if (preg_match('/Symbian/u'$ua)) {
            
$this->data->os->family = new Family([ 'name' => 'Symbian' ]);
            
$this->data->device->type ConstantsDeviceType::MOBILE;
            
            if (
preg_match('/SymbianOS/([0-9.]*)/u'$ua$match)) {
                
$this->data->os->family->version = new Version([ 'value' => $match[1] ]);
            }
        }


        if (
$this->data->os->isFamily('Symbian')) {
            if (
preg_match('/Nokia-?([^/;)s]+)[s|/|;|)]/u'$ua$match)) {
                if (
$match[1] != 'Browser') {
                    
$this->data->device->manufacturer 'Nokia';
                    
$this->data->device->model DataDeviceModels::cleanup($match[1]);
                    
$this->data->device->identified |= ConstantsId::PATTERN;
                }
            }

            if (
preg_match('/Symbian(?:/3)?; U; (?:Nokia)?([^;]+); [a-z][a-z](?:-[a-z][a-z])?/u'$ua$match)) {
                
$this->data->device->manufacturer 'Nokia';
                
$this->data->device->model DataDeviceModels::cleanup($match[1]);
                
$this->data->device->identified |= ConstantsId::PATTERN;
            }

            if (
preg_match('/Vertu([^/;]+)[/|;]/u'$ua$match)) {
                
$this->data->device->manufacturer 'Vertu';
                
$this->data->device->model DataDeviceModels::cleanup($match[1]);
                
$this->data->device->identified |= ConstantsId::PATTERN;
            }

            if (
preg_match('/Samsung/([^;]*);/u'$ua$match)) {
                
$this->data->device->manufacturer 'Samsung';
                
$this->data->device->model DataDeviceModels::cleanup($match[1]);
                
$this->data->device->identified |= ConstantsId::PATTERN;
            }

            if (isset(
$this->data->device->model)) {
                
$device DataDeviceModels::identify('symbian'$this->data->device->model);
                if (
$device->identified) {
                    
$device->identified |= $this->data->device->identified;
                    
$this->data->device $device;
                }
            }
        }
    }

    private function 
detectNokiaOs($ua)
    {
        if (!
preg_match('/(Series|MeeGo|Maemo|Geos)/ui'$ua)) {
            return;
        }

        
/* Series 40 */

        
if (preg_match('/Series40/u'$ua)) {
            
$this->data->os->name 'Series40';

            if (
preg_match('/Nokia([^/]+)//u'$ua$match)) {
                
$this->data->device->manufacturer 'Nokia';
                
$this->data->device->model DataDeviceModels::cleanup($match[1]);
                
$this->data->device->identified |= ConstantsId::PATTERN;
            }

            if (isset(
$this->data->device->model)) {
                
$device DataDeviceModels::identify('s40'$this->data->device->model);
                if (
$device->identified) {
                    
$device->identified |= $this->data->device->identified;
                    
$this->data->device $device;
                }
            }

            if (isset(
$this->data->device->model)) {
                
$device DataDeviceModels::identify('asha'$this->data->device->model);
                if (
$device->identified) {
                    
$device->identified |= $this->data->device->identified;
                    
$this->data->os->name 'Nokia Asha Platform';
                    
$this->data->os->version = new Version([ 'value' => '1.0' ]);
                    
$this->data->device $device;
                }

                if (
preg_match('/java_runtime_version=Nokia_Asha_([0-9_]+);/u'$ua$match)) {
                    
$this->data->os->version = new Version([ 'value' => str_replace('_''.'$match[1]) ]);
                }
            }

            
$this->data->device->type ConstantsDeviceType::MOBILE;
        }

        
/* Series 30+ */

        
if (preg_match('/Series30Plus/u'$ua)) {
            
$this->data->os->name 'Series30+';

            if (
preg_match('/Nokia([^/]+)//u'$ua$match)) {
                
$this->data->device->manufacturer 'Nokia';
                
$this->data->device->model DataDeviceModels::cleanup($match[1]);
                
$this->data->device->identified |= ConstantsId::PATTERN;
            }

            if (isset(
$this->data->device->model)) {
                
$device DataDeviceModels::identify('s30plus'$this->data->device->model);
                if (
$device->identified) {
                    
$device->identified |= $this->data->device->identified;
                    
$this->data->device $device;
                }
            }

            
$this->data->device->type ConstantsDeviceType::MOBILE;
        }

        
/* Meego */

        
if (preg_match('/MeeGo/u'$ua)) {
            
$this->data->os->name 'MeeGo';
            
$this->data->device->type ConstantsDeviceType::MOBILE;

            if (
preg_match('/Nokia([^);]+))/u'$ua$match)) {
                
$this->data->device->manufacturer 'Nokia';
                
$this->data->device->model DataDeviceModels::cleanup($match[1]);
                
$this->data->device->identified |= ConstantsId::PATTERN;
                
$this->data->device->generic false;
            }
        }

        
/* Maemo */

        
if (preg_match('/Maemo/u'$ua)) {
            
$this->data->os->name 'Maemo';
            
$this->data->device->type ConstantsDeviceType::MOBILE;

            if (
preg_match('/(N[0-9]+)/u'$ua$match)) {
                
$this->data->device->manufacturer 'Nokia';
                
$this->data->device->model $match[1];
                
$this->data->device->identified |= ConstantsId::PATTERN;
                
$this->data->device->generic false;
            }
        }

        
/* GEOS */

        
if (preg_match('/Geos ([0-9.]+)/u'$ua$match)) {
            
$this->data->os->name 'GEOS';
            
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            
$this->data->device->type ConstantsDeviceType::MOBILE;

            if (
preg_match('/Nokia-([0-9]{4,4}[a-z]?)/u'$ua$match)) {
                
$this->data->device->manufacturer 'Nokia';
                
$this->data->device->model $match[1];
                
$this->data->device->identified |= ConstantsId::PATTERN;
                
$this->data->device->generic false;
            }
        }
    }


    
/* WebOS */

    
private function detectWebos($ua)
    {
        if (
preg_match('/(?:web|hpw)OS/(?:HP webOS )?([0-9.]*)/u'$ua$match)) {
            
$this->data->os->name 'webOS';
            
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            
$this->data->device->type preg_match('/Tablet/iu'$ua) ? ConstantsDeviceType::TABLET ConstantsDeviceType::MOBILE;
            
$this->data->device->generic false;
        }

        if (
preg_match('/(?:Spark|elite)/fzz/u'$ua$match) || preg_match('/webOSBrowser/u'$ua$match)) {
            
$this->data->os->name 'webOS';
            
$this->data->device->type preg_match('/Tablet/iu'$ua) ? ConstantsDeviceType::TABLET ConstantsDeviceType::MOBILE;
            
$this->data->device->generic false;
        }

        if (
preg_match('/ (Pre|Pixi|TouchPad|P160UN?A?)/[0-9.]+$/u'$ua$match)) {
            
$this->data->os->name 'webOS';
            
$this->data->device->type $match[1] == 'TouchPad' ConstantsDeviceType::TABLET ConstantsDeviceType::MOBILE;
            
$this->data->device->generic false;
        }

        if (
$this->data->isOs('webOS')) {
            if (
preg_match('/Pre/1.0/u'$ua)) {
                
$this->data->device->manufacturer 'Palm';
                
$this->data->device->model 'Pre';
            }
            if (
preg_match('/Pre/1.1/u'$ua)) {
                
$this->data->device->manufacturer 'Palm';
                
$this->data->device->model 'Pre Plus';
            }
            if (
preg_match('/Pre/1.2/u'$ua)) {
                
$this->data->device->manufacturer 'Palm';
                
$this->data->device->model 'Pre 2';
            }
            if (
preg_match('/Pre/3.0/u'$ua)) {
                
$this->data->device->manufacturer 'Palm';
                
$this->data->device->model 'Pre 3';
            }
            if (
preg_match('/Pixi/1.0/u'$ua)) {
                
$this->data->device->manufacturer 'Palm';
                
$this->data->device->model 'Pixi';
            }
            if (
preg_match('/Pixi/1.1/u'$ua)) {
                
$this->data->device->manufacturer 'Palm';
                
$this->data->device->model 'Pixi Plus';
            }
            if (
preg_match('/P160UN?A?/1.0/u'$ua)) {
                
$this->data->device->manufacturer 'HP';
                
$this->data->device->model 'Veer';
            }
            if (
preg_match('/TouchPad/1.0/u'$ua)) {
                
$this->data->device->manufacturer 'HP';
                
$this->data->device->model 'TouchPad';
            }

            if (
preg_match('/Emulator//u'$ua) || preg_match('/Desktop//u'$ua)) {
                
$this->data->device->type ConstantsDeviceType::EMULATOR;
                
$this->data->device->manufacturer null;
                
$this->data->device->model null;
            }

            
$this->data->device->identified |= ConstantsId::MATCH_UA;
        }
    }


    
/* Kai OS */

    
private function detectKaiOS($ua)
    {
        if (
preg_match('/Kai(OS)?/([0-9.]+)/i'$ua$match)) {
            
$this->data->os->reset([ 'name' => 'KaiOS''version' => new Version([ 'value' => $match[2] ]) ]);
            
$this->data->os->family = new Family([ 'name' => 'Firefox OS' ]);
        }
    }


    
/* BlackBerry */

    
private function detectBlackberry($ua)
    {
        
/* BlackBerry OS */

        
if (preg_match('/RIM([0-9]{3,3})/u'$ua$match)) {
            
$this->data->os->name 'BlackBerry OS';
            
$this->data->device->manufacturer 'RIM';
            
$this->data->device->model $match[1];
            
$this->data->device->type ConstantsDeviceType::MOBILE;
            
$this->data->device->identified ConstantsId::INFER;
        }

        if (
preg_match('/BlackBerry/u'$ua) && !preg_match('/BlackBerry Runtime for Android Apps/u'$ua)) {
            
$this->data->os->name 'BlackBerry OS';

            
$this->data->device->model 'BlackBerry';
            
$this->data->device->manufacturer 'RIM';
            
$this->data->device->type ConstantsDeviceType::MOBILE;
            
$this->data->device->identified ConstantsId::INFER;

            if (!
preg_match('/Opera/u'$ua)) {
                if (
preg_match('/BlackBerry([0-9]+[ei]?)/([0-9.]*)/u'$ua$match)) {
                    
$this->data->device->model $match[1];
                    
$this->data->os->version = new Version([ 'value' => $match[2], 'details' => ]);
                }

                if (
preg_match('/; BlackBerry ([0-9]*);/u'$ua$match)) {
                    
$this->data->device->model $match[1];
                }

                if (
preg_match('/; ([0-9]+)[^;)]+)/u'$ua$match)) {
                    
$this->data->device->model $match[1];
                }

                if (
preg_match('/Version/([0-9.]*)/u'$ua$match)) {
                    
$this->data->os->version = new Version([ 'value' => $match[1], 'details' => ]);
                }

                if (isset(
$this->data->os->version) && $this->data->os->version->toFloat() >= 10) {
                    
$this->data->os->name 'BlackBerry';
                }

                if (
$this->data->device->model) {
                    
$device DataDeviceModels::identify('blackberry'$this->data->device->model);

                    if (
$device->identified) {
                        
$device->identified |= $this->data->device->identified;
                        
$this->data->device $device;
                    }
                }
            }
        }

        
/* BlackBerry 10 */

        
if (preg_match('/(BB(1[^;]+); ([^)]+))/u'$ua$match)) {
            
$this->data->os->name 'BlackBerry';
            
$this->data->os->version = new Version([ 'value' => $match[1], 'details' => ]);

            
$this->data->device->manufacturer 'BlackBerry';
            
$this->data->device->model $match[2];

            if (
$this->data->device->model == 'Kbd') {
                
$this->data->device->model 'Q series or Passport';
            }

            if (
$this->data->device->model == 'Touch') {
                
$this->data->device->model 'A or Z series';
            }

            if (
$this->data->device->model == 'STL100-2') {
                
$this->data->device->model 'Z10';
            }

            
$this->data->device->type preg_match('/Mobile/u'$ua) ? ConstantsDeviceType::MOBILE ConstantsDeviceType::TABLET;
            
$this->data->device->identified |= ConstantsId::MATCH_UA;

            if (
preg_match('/Version/([0-9.]+)/u'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => $match[1], 'details' => ]);
            }
        }

        
/* BlackBerry Tablet OS */

        
if (preg_match('/RIM Tablet OS ([0-9.]*)/u'$ua$match)) {
            
$this->data->os->name 'BlackBerry Tablet OS';
            
$this->data->os->version = new Version([ 'value' => $match[1], 'details' => ]);

            
$this->data->device->manufacturer 'RIM';
            
$this->data->device->model 'BlackBerry PlayBook';
            
$this->data->device->type ConstantsDeviceType::TABLET;
            
$this->data->device->identified |= ConstantsId::MATCH_UA;
        } elseif (
preg_match('/(PlayBook;/u'$ua) && preg_match('/PlayBook Build/([0-9.]*)/u'$ua$match)) {
            
$this->data->os->name 'BlackBerry Tablet OS';
            
$this->data->os->version = new Version([ 'value' => $match[1], 'details' => ]);

            
$this->data->device->manufacturer 'RIM';
            
$this->data->device->model 'BlackBerry PlayBook';
            
$this->data->device->type ConstantsDeviceType::TABLET;
            
$this->data->device->identified |= ConstantsId::MATCH_UA;
        } elseif (
preg_match('/PlayBook/u'$ua) && !preg_match('/Android/u'$ua)) {
            if (
preg_match('/Version/([0-9.]*)/u'$ua$match)) {
                
$this->data->os->name 'BlackBerry Tablet OS';
                
$this->data->os->version = new Version([ 'value' => $match[1], 'details' => ]);

                
$this->data->device->manufacturer 'RIM';
                
$this->data->device->model 'BlackBerry PlayBook';
                
$this->data->device->type ConstantsDeviceType::TABLET;
                
$this->data->device->identified |= ConstantsId::MATCH_UA;
            }
        }

        
/* Internal versions of BlackBerry 10 running on the Playbook */

        
if ($this->data->isOs('BlackBerry Tablet OS''>='10)) {
            
$this->data->os->name 'BlackBerry';
        }
    }


    
/* Chrome OS */

    
private function detectChromeos($ua)
    {
        
/* ChromeCast */

        
if (preg_match('/CrKey/u'$ua) && !preg_match('/Espial/u'$ua)) {
            
$this->data->device->manufacturer 'Google';
            
$this->data->device->model 'Chromecast';
            
$this->data->device->type ConstantsDeviceType::TELEVISION;
            
$this->data->device->identified |= ConstantsId::MATCH_UA;
            
$this->data->device->generic false;
        }

        
/* Chrome OS */

        
if (preg_match('/CrOS/u'$ua)) {
            
$this->data->os->name 'Chrome OS';
            
$this->data->device->type ConstantsDeviceType::DESKTOP;
        }
    }


    
/* Open TV */

    
private function detectOpenTV($ua)
    {
        if (
preg_match('/OpenTV/ui'$ua$match)) {
            
$this->data->device->type ConstantsDeviceType::TELEVISION;

            
$this->data->os->name 'OpenTV';
            
$this->data->os->version null;

            if (
preg_match('/OpenTV Build/([0-9.]+)/u'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            }

            if (
preg_match('/OpenTV ([0-9.]+)/u'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            }

            if (
preg_match('/Opentv([0-9]+)/u'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            }

            if (
preg_match('/OTV([0-9.]+)/u'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            }
        }
    }


    
/* Qtopia */

    
private function detectQtopia($ua)
    {
        if (
preg_match('/Qtopia/u'$ua)) {
            
$this->data->os->name 'Qtopia';

            if (
preg_match('/Qtopia/([0-9.]+)/u'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            }
        }
    }


    
/* Unix */

    
private function detectUnix($ua)
    {
        if (!
preg_match('/(UNIX|OSF|ULTRIX|HP-UX|SunOS|Solaris|AIX|IRIX|NEWS-OS|GENIX)/ui'$ua)) {
            return;
        }

        
/* Unix */

        
if (preg_match('/Unix/iu'$ua)) {
            
$this->data->os->name 'Unix';
        }

        
/* Unix System V */

        
if (preg_match('/(?:UNIX_System_V|UNIX_SV) ([0-9.]*)/u'$ua$match)) {
            
$this->data->os->name 'UNIX System V';
            
$this->data->os->family = new Family([ 'name' => 'UNIX' ]);
            
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            
$this->data->device->type ConstantsDeviceType::DESKTOP;
        }

        
/* Digital Unix */

        
if (preg_match('/OSF1?[ _]/u'$ua)) {
            
$this->data->os->name 'Digital Unix';
            
$this->data->os->family = new Family([ 'name' => 'UNIX' ]);

            if (
preg_match('/OSF1?[ _]V?([0-9.]*)/u'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            }

            
$this->data->device->type ConstantsDeviceType::DESKTOP;
        }

        
/* Digital ULTRIX */

        
if (preg_match('/ULTRIX/u'$ua)) {
            
$this->data->os->name 'ULTRIX';
            
$this->data->os->family = new Family([ 'name' => 'BSD' ]);

            if (
preg_match('/ULTRIX ([0-9.]*)/u'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            }

            
$this->data->device->type ConstantsDeviceType::DESKTOP;
        }

        
/* HP-UX */

        
if (preg_match('/HP-UX/u'$ua)) {
            
$this->data->os->name 'HP-UX';
            
$this->data->os->family = new Family([ 'name' => 'UNIX' ]);

            if (
preg_match('/HP-UX [A-Z].0?([1-9][0-9.]*)/u'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            }

            
$this->data->device->type ConstantsDeviceType::DESKTOP;
        }

        
/* Solaris */

        
if (preg_match('/SunOS/u'$ua)) {
            
$this->data->os->name 'Solaris';
            
$this->data->os->family = new Family([ 'name' => 'UNIX' ]);

            if (
preg_match('/SunOS ([1234].[0-9.]+)/u'$ua$match)) {
                
$this->data->os->name 'SunOS';
                
$this->data->os->version = new Version([ 'value' => $match[1] ]);
                
$this->data->os->family = new Family([ 'name' => 'BSD' ]);

                if (
preg_match('/SunOS 4.1.([1234])/u'$ua$match)) {
                    
$this->data->os->name 'Solaris';

                    switch (
$match[1]) {
                        case 
'1':
                            
$this->data->os->version = new Version([ 'value' => '1.0' ]);
                            break;
                        case 
'2':
                            
$this->data->os->version = new Version([ 'value' => '1.0.1' ]);
                            break;
                        case 
'3':
                            
$this->data->os->version = new Version([ 'value' => '1.1' ]);
                            break;
                        case 
'4':
                            
$this->data->os->version = new Version([ 'value' => '1.1.2' ]);
                            break;
                    }
                }
            }

            if (
preg_match('/SunOS 5.([123456](?:.[0-9.]*)?) /u'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => '2.' $match[1] ]);
            } elseif (
preg_match('/SunOS 5.([0-9.]*)/u'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            }

            
$this->data->device->type ConstantsDeviceType::DESKTOP;
        }

        if (
preg_match('/Solaris(?: ([0-9.]+))?;/u'$ua$match)) {
            
$this->data->os->name 'Solaris';
            
$this->data->os->family = new Family([ 'name' => 'UNIX' ]);

            if (
preg_match('/Solaris ([0-9.]+);/u'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            }

            
$this->data->device->type ConstantsDeviceType::DESKTOP;
        }

        
/* AIX */

        
if (preg_match('/AIX/u'$ua)) {
            
$this->data->os->name 'AIX';
            
$this->data->os->family = new Family([ 'name' => 'UNIX' ]);

            if (
preg_match('/AIX ([0-9.]*)/u'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            }

            
$this->data->device->type ConstantsDeviceType::DESKTOP;
        }

        
/* IRIX */

        
if (preg_match('/IRIX/u'$ua)) {
            
$this->data->os->name 'IRIX';
            
$this->data->os->family = new Family([ 'name' => 'UNIX' ]);

            if (
preg_match('/IRIX ([0-9.]*)/u'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            }

            if (
preg_match('/IRIX;?(?:64|32) ([0-9.]*)/u'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            }

            
$this->data->device->type ConstantsDeviceType::DESKTOP;
        }

        
/* Sony NEWS OS */

        
if (preg_match('/NEWS-OS ([0-9.]+)/u'$ua$match)) {
            
$this->data->os->name 'NEWS OS';
            
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            
$this->data->os->family = new Family([ 'name' => 'BSD' ]);


            if (
preg_match('/NEWS-OS [56]/u'$ua)) {
                
$this->data->os->family = new Family([ 'name' => 'UNIX' ]);
            }

            
$this->data->device->type ConstantsDeviceType::DESKTOP;
        }

        
/* NEC EWS-UX */

        
if (preg_match('/EWS-UNIX rev ([0-9.]+)/u'$ua$match)) {
            
$this->data->os->name 'EWS-UX';
            
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            
$this->data->os->family = new Family([ 'name' => 'UNIX' ]);

            
$this->data->device->type ConstantsDeviceType::DESKTOP;
        }

        
/* National Semiconductors GENIX */

        
if (preg_match('/GENIX ([0-9.]+)/u'$ua$match)) {
            
$this->data->os->name 'GENIX';
            
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            
$this->data->os->family = new Family([ 'name' => 'BSD' ]);

            
$this->data->device->type ConstantsDeviceType::DESKTOP;
        }
    }


    
/* BSD */

    
private function detectBsd($ua)
    {
        if (!
preg_match('/(BSD|DragonFly)/ui'$ua)) {
            return;
        }

        if (
preg_match('/X11/u'$ua)) {
            
$this->data->device->type ConstantsDeviceType::DESKTOP;
        }

        
/* BSD/OS */

        
if (preg_match('/BSD/386/u'$ua)) {
            
$this->data->os->name 'BSD/OS';
            
$this->data->os->family = new Family([ 'name' => 'BSD' ]);
        }

        if (
preg_match('/BSD/OS/u'$ua)) {
            
$this->data->os->name 'BSD/OS';
            
$this->data->os->family = new Family([ 'name' => 'BSD' ]);

            if (
preg_match('/BSD/OS ([0-9.]*)/u'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            }
        }

        
/* FreeBSD */

        
if (preg_match('/FreeBSD/iu'$ua)) {
            
$this->data->os->name 'FreeBSD';
            
$this->data->os->family = new Family([ 'name' => 'BSD' ]);

            if (
preg_match('/FreeBSD[ -/]?([0-9.]*)/iu'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            }
        }

        
/* OpenBSD */

        
if (preg_match('/OpenBSD/iu'$ua)) {
            
$this->data->os->name 'OpenBSD';
            
$this->data->os->family = new Family([ 'name' => 'BSD' ]);

            if (
preg_match('/OpenBSD ?([0-9.]*)/iu'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            }
        }

        
/* NetBSD */

        
if (preg_match('/NetBSD/iu'$ua)) {
            
$this->data->os->name 'NetBSD';
            
$this->data->os->family = new Family([ 'name' => 'BSD' ]);

            if (
preg_match('/NetBSD ?([0-9.]*)/iu'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            }
        }

        
/* DragonFly */

        
if (preg_match('/DragonFly/iu'$ua)) {
            
$this->data->os->name 'DragonFly BSD';
            
$this->data->os->family = new Family([ 'name' => 'BSD' ]);
        }
    }


    
/* Linux */

    
private function detectLinux($ua)
    {
        if (
preg_match('/Linux/u'$ua)) {
            
$this->data->os->name 'Linux';

            if (
preg_match('/X11/u'$ua)) {
                
$this->data->device->type ConstantsDeviceType::DESKTOP;
            }

            if (
preg_match('/Antergos Linux/u'$ua)) {
                
$this->data->os->name 'Antergos Linux';
                
$this->data->device->type ConstantsDeviceType::DESKTOP;
            }

            if (
preg_match('/Arch ?Linux/u'$ua)) {
                
$this->data->os->name 'Arch Linux';
                
$this->data->device->type ConstantsDeviceType::DESKTOP;
            }

            if (
preg_match('/Black Lab Linux/u'$ua)) {
                
$this->data->os->name 'Black Lab Linux';
                if (
preg_match('/Black Lab Linux ([0-9.]+)/u'$ua$match)) {
                    
$this->data->os->version = new Version([ 'value' => $match[1] ]);
                }

                
$this->data->device->type ConstantsDeviceType::DESKTOP;
            }

            if (
preg_match('/CentOS/u'$ua)) {
                
$this->data->os->name 'CentOS';
                if (
preg_match('/CentOS/[0-9.-]+el([0-9_]+)/u'$ua$match)) {
                    
$this->data->os->version = new Version([ 'value' => str_replace('_''.'$match[1]) ]);
                }

                if (
preg_match('/CentOS Linux release ([0-9.]+)/u'$ua$match)) {
                    
$this->data->os->version = new Version([ 'value' => $match[1], 'details' => ]);
                }

                
$this->data->device->type ConstantsDeviceType::DESKTOP;
            }

            if (
preg_match('/Debian/u'$ua)) {
                
$this->data->os->name 'Debian';
                if (
preg_match('/Debian/([0-9.]*)/iu'$ua$match)) {
                    
$this->data->os->version = new Version([ 'value' => $match[1] ]);
                }

                if (
preg_match('/Debian GNU/Linux ([0-9.]+)/u'$ua$match)) {
                    
$this->data->os->version = new Version([ 'value' => $match[1] ]);
                }

                
$this->data->device->type ConstantsDeviceType::DESKTOP;
            }

            if (
preg_match('/Fedora/u'$ua)) {
                
$this->data->os->name 'Fedora';
                if (
preg_match('/Fedora/[0-9.-]+fc([0-9]+)/u'$ua$match)) {
                    
$this->data->os->version = new Version([ 'value' => str_replace('_''.'$match[1]) ]);
                }

                if (
preg_match('/Fedora release ([0-9.]+)/u'$ua$match)) {
                    
$this->data->os->version = new Version([ 'value' => $match[1] ]);
                }

                
$this->data->device->type ConstantsDeviceType::DESKTOP;
            }

            if (
preg_match('/Gentoo/u'$ua)) {
                
$this->data->os->name 'Gentoo';
                if (
preg_match('/Gentoo Base System release ([0-9.]+)/u'$ua$match)) {
                    
$this->data->os->version = new Version([ 'value' => $match[1] ]);
                }

                
$this->data->device->type ConstantsDeviceType::DESKTOP;
            }

            if (
preg_match('/gNewSense/u'$ua)) {
                
$this->data->os->name 'gNewSense';
                if (
preg_match('/gNewSense/[^(]+(([0-9.]+)/u'$ua$match)) {
                    
$this->data->os->version = new Version([ 'value' => $match[1] ]);
                }

                
$this->data->device->type ConstantsDeviceType::DESKTOP;
            }

            if (
preg_match('/Kubuntu/u'$ua)) {
                
$this->data->os->name 'Kubuntu';
                if (
preg_match('/Kubuntu[ /]([0-9.]*)/iu'$ua$match)) {
                    
$this->data->os->version = new Version([ 'value' => $match[1] ]);
                }

                
$this->data->device->type ConstantsDeviceType::DESKTOP;
            }

            if (
preg_match('/Linux Mint/u'$ua)) {
                
$this->data->os->name 'Linux Mint';
                if (
preg_match('/Linux Mint ([0-9.]+)/iu'$ua$match)) {
                    
$this->data->os->version = new Version([ 'value' => $match[1] ]);
                }

                
$this->data->device->type ConstantsDeviceType::DESKTOP;
            }

            if (
preg_match('/Mandriva Linux/u'$ua)) {
                
$this->data->os->name 'Mandriva';
                if (
preg_match('/Mandriva Linux/[0-9.-]+mdv([0-9]+)/u'$ua$match)) {
                    
$this->data->os->version = new Version([ 'value' => $match[1] ]);
                }

                
$this->data->device->type ConstantsDeviceType::DESKTOP;
            }

            if (
preg_match('/Mageia/u'$ua)) {
                
$this->data->os->name 'Mageia';
                if (
preg_match('/Mageia/[0-9.-]+mga([0-9]+)/u'$ua$match)) {
                    
$this->data->os->version = new Version([ 'value' => $match[1] ]);
                }

                if (
preg_match('/Mageia ([0-9.]+)/iu'$ua$match)) {
                    
$this->data->os->version = new Version([ 'value' => $match[1] ]);
                }

                
$this->data->device->type ConstantsDeviceType::DESKTOP;
            }

            if (
preg_match('/Mandriva/u'$ua)) {
                
$this->data->os->name 'Mandriva';
                if (
preg_match('/Mandriva/[0-9.-]+mdv([0-9]+)/u'$ua$match)) {
                    
$this->data->os->version = new Version([ 'value' => $match[1] ]);
                }

                
$this->data->device->type ConstantsDeviceType::DESKTOP;
            }

            if (
preg_match('/moonOS/u'$ua)) {
                
$this->data->os->name 'moonOS';
                if (
preg_match('/moonOS/([0-9.]+)/u'$ua$match)) {
                    
$this->data->os->version = new Version([ 'value' => $match[1] ]);
                }

                
$this->data->device->type ConstantsDeviceType::DESKTOP;
            }

            if (
preg_match('/Red Hat/u'$ua)) {
                
$this->data->os->name 'Red Hat';
                if (
preg_match('/Red Hat[^/]*/[0-9.-]+el([0-9_]+)/u'$ua$match)) {
                    
$this->data->os->version = new Version([ 'value' => str_replace('_''.'$match[1]) ]);
                }

                
$this->data->device->type ConstantsDeviceType::DESKTOP;
            }

            if (
preg_match('/Slackware/u'$ua)) {
                
$this->data->os->name 'Slackware';
                if (
preg_match('/Slackware[ /](1[0-9.]+)/u'$ua$match)) {
                    
$this->data->os->version = new Version([ 'value' => $match[1] ]);
                }

                
$this->data->device->type ConstantsDeviceType::DESKTOP;
            }

            if (
preg_match('/SUSE/u'$ua)) {
                
$this->data->os->name 'SUSE';
                if (
preg_match('/SUSE/([0-9].[0-9]+)/u'$ua$match)) {
                    
$this->data->os->version = new Version([ 'value' => $match[1] ]);
                }

                if (
preg_match('/openSUSE ([0-9.]+)/iu'$ua$match)) {
                    
$this->data->os->version = new Version([ 'value' => $match[1] ]);
                }

                
$this->data->device->type ConstantsDeviceType::DESKTOP;
            }

            if (
preg_match('/Turbolinux/u'$ua)) {
                
$this->data->os->name 'Turbolinux';
                if (
preg_match('/Turbolinux/([0-9].[0-9]+)/u'$ua$match)) {
                    
$this->data->os->version = new Version([ 'value' => $match[1] ]);
                }

                
$this->data->device->type ConstantsDeviceType::DESKTOP;
            }

            if (
preg_match('/Ubuntu/u'$ua)) {
                
$this->data->os->name 'Ubuntu';
                if (
preg_match('/Ubuntu/([0-9.]*)/u'$ua$match)) {
                    
$this->data->os->version = new Version([ 'value' => $match[1] ]);
                }

                if (
preg_match('/Ubuntu ([0-9.]+)/iu'$ua$match)) {
                    
$this->data->os->version = new Version([ 'value' => $match[1], 'details' => ]);
                }

                
$this->data->device->type ConstantsDeviceType::DESKTOP;
            }

            if (
preg_match('/《붉은별》/([0-9.]*)/iu'$ua$match)) {
                
$this->data->os->name 'Red Star';
                
$this->data->os->version = new Version([ 'value' => $match[1] ]);
                
$this->data->device->type ConstantsDeviceType::DESKTOP;
            }

            if (
preg_match('/Fedora/[0-9.-]+rs([0-9.]+)/u'$ua$match)) {
                
$this->data->os->name 'Red Star';
                
$this->data->os->version = new Version([ 'value' => str_replace('_''.'$match[1]) ]);
                
$this->data->device->type ConstantsDeviceType::DESKTOP;
            }

            if (
preg_match('/Linux/X2/R1/u'$ua)) {
                
$this->data->os->name 'LiMo';
                
$this->data->device->type ConstantsDeviceType::MOBILE;
            }


            if (
preg_match('/Linux/SLP/([0-9.]+)/u'$ua$match)) {
                
$this->data->os->name 'Linux SLP';
                
$this->data->os->version = new Version([ 'value' => $match[1] ]);
                
$this->data->device->type ConstantsDeviceType::MOBILE;
            }


            if (
preg_match('/LinuxOS//u'$ua) && preg_match('/Software/R5/u'$ua)) {
                
$this->data->os->name 'EZX Linux';
                
$this->data->device->type ConstantsDeviceType::MOBILE;
            }
        }

        if (
preg_match('/elementary OS/u'$ua)) {
            
$this->data->os->name 'elementary OS';
            if (
preg_match('/elementary OS ([A-Za-z]+)/u'$ua$match)) {
                
$this->data->os->version = new Version([ 'alias' => $match[1] ]);
            }

            
$this->data->device->type ConstantsDeviceType::DESKTOP;
        }

        if (
preg_match('/(Ubuntu; (Mobile|Tablet)/u'$ua)) {
            
$this->data->os->name 'Ubuntu Touch';

            if (
preg_match('/(Ubuntu; Mobile/u'$ua)) {
                
$this->data->device->type ConstantsDeviceType::MOBILE;
            }
            if (
preg_match('/(Ubuntu; Tablet/u'$ua)) {
                
$this->data->device->type ConstantsDeviceType::TABLET;
            }
        }

        if (
preg_match('/(?:(|; )Ubuntu ([0-9.]+) like Android/u'$ua$match)) {
            
$this->data->os->name 'Ubuntu Touch';
            
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            
$this->data->device->type ConstantsDeviceType::MOBILE;
        }

        if (
preg_match('/Lindows ([0-9.]+)/u'$ua$match)) {
            
$this->data->os->name 'Lindows';
            
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            
$this->data->device->type ConstantsDeviceType::DESKTOP;
        }
    }


    
/* Brew */

    
private function detectBrew($ua)
    {
        if (
preg_match('/REX; U/ui'$ua) || preg_match('/REXL4/ui'$ua)) {
            
$this->data->os->name 'REX';

            
$this->data->device->type ConstantsDeviceType::MOBILE;

            if (
preg_match('/REX; U; [^;]+; ([^;]+); ([^;/]+)[^;]*; NetFront/u'$ua$match)) {
                
$this->data->device->manufacturer DataManufacturers::identify(ConstantsDeviceType::MOBILE$match[1]);
                
$this->data->device->model $match[2];
                
$this->data->device->identified ConstantsId::PATTERN;

                
$device DataDeviceModels::identify('brew'$match[2]);

                if (
$device->identified) {
                    
$device->identified |= $this->data->device->identified;
                    
$this->data->device $device;
                }
            }
        }

        if (
preg_match('/[(s-;]BREW[s/-;]/ui'$ua) || preg_match('/BMP( [0-9.]*)?; U/u'$ua) || preg_match('/B(?:rew)?MP/([0-9.]*)/u'$ua)) {
            
$this->data->os->name 'Brew';

            if (
preg_match('/BREW MP/iu'$ua) || preg_match('/B(rew)?MP/iu'$ua)) {
                
$this->data->os->name 'Brew MP';
            }

            if (
preg_match('/; Brew ([0-9.]+);/iu'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            } elseif (
preg_match('/BREW; U; ([0-9.]+)/iu'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            } elseif (
preg_match('/[(;]BREW[/ ]([0-9.]+)/iu'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            } elseif (
preg_match('/BREW MP ([0-9.]*)/iu'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            } elseif (
preg_match('/BMP ([0-9.]*); U/iu'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            } elseif (
preg_match('/B(?:rew)?MP/([0-9.]*)/iu'$ua$match)) {
                
$this->data->os->version = new Version([ 'value' => $match[1] ]);
            }

            
$this->data->device->type ConstantsDeviceType::MOBILE;

            if (
preg_match('/(?:Brew MP|BREW|BMP) [^;]+; U; [^;]+; ([^;]+); NetFront[^)]+) [^s]+ ([^s]+)/u'$ua$match)) {
                
$this->data->device->manufacturer DataManufacturers::identify(ConstantsDeviceType::MOBILE$match[1]);
                
$this->data->device->model $match[2];
                
$this->data->device->identified ConstantsId::PATTERN;

                
$device DataDeviceModels::identify('brew'$match[2]);

                if (
$device->identified) {
                    
$device->identified |= $this->data->device->identified;
                    
$this->data->device $device;
                }
            }

            if (
preg_match('/(([^;]+);U;REX/[^;]+;BREW/[^;]+;(?:.*;)?[0-9]+*[0-9]+(?:;CTC/2.0)?)/u'$ua$match)) {
                
$this->data->device->model $match[1];
                
$this->data->device->identified ConstantsId::PATTERN;

                
$device DataDeviceModels::identify('brew'$match[1]);

                if (
$device->identified) {
                    
$device->identified |= $this->data->device->identified;
                    
$this->data->device $device;
                }
            }

            if (
preg_match('/(BREW [^;]+; U; [^;]+; [^;]+; ([^;]+); (Polaris|Netfront)/[0-9.]+/(WAP|AMB|INT))/ui'$ua$match)) {
                
$this->data->device->model $match[1];
                
$this->data->device->identified ConstantsId::PATTERN;

                
$device DataDeviceModels::identify('brew'$match[1]);

                if (
$device->identified) {
                    
$device->identified |= $this->data->device->identified;
                    
$this->data->device $device;
                }
            }

            if (
preg_match('/(BREW [^;]+; U; [^;]+; [^;]+; Opera Mobi; Presto/[0-9.]+/(?:WAP|AMB|INT)) ([^/]+) [^/]+//ui'$ua$match)) {
                
$this->data->device->model $match[1];
                
$this->data->device->identified ConstantsId::PATTERN;

                
$device DataDeviceModels::identify('brew'$match[1]);

                if (
$device->identified) {
                    
$device->identified |= $this->data->device->identified;
                    
$this->data->device $device;
                }
            }
        }
    }


    
/* Remaining operating systems */

    
private function detectRemainingOperatingSystems($ua)
    {
        if (!
preg_match('/(BeOS|Haiku|AmigaOS|MorphOS|AROS|VMS|RISC|Joli|OS/2|Inferno|Syllable|Grid|MTK|MRE|MAUI|Nucleus|QNX|VRE|SpreadTrum|ThreadX)/ui'$ua)) {
            return;
        }

        
$patterns = [
            [ 
'name' => 'BeOS',         'regexp' => [ '/BeOS/iu' ],                                         'type' => ConstantsDeviceType::DESKTOP ],
            [ 
'name' => 'Haiku',        'regexp' => [ '/Haiku/iu' ],                                        'type' => ConstantsDeviceType::DESKTOP ],
            [ 
'name' => 'AmigaOS',      'regexp' => [ '/AmigaOS ?([0-9.]+)/iu''/AmigaOS/iu' ],            'type' => ConstantsDeviceType::DESKTOP ],
            [ 
'name' => 'MorphOS',      'regexp' => [ '/MorphOS(?: ([0-9.]*))?/iu' ],                       'type' => ConstantsDeviceType::DESKTOP ],
            [ 
'name' => 'AROS',         'regexp' => [ '/AROS/iu' ],                                         'type' => ConstantsDeviceType::DESKTOP ],
            [ 
'name' => 'OpenVMS',      'regexp' => [ '/OpenVMS V([0-9.]+)/iu''/OpenVMS/iu' ],            'type' => ConstantsDeviceType::DESKTOP ],
            [ 
'name' => 'RISC OS',      'regexp' => [ '/RISC OS(?:-NC)? ([0-9.]*)/iu''/RISC OS/iu' ],     'type' => ConstantsDeviceType::DESKTOP ],
            [ 
'name' => 'Joli OS',      'regexp' => [ '/Joli OS/([0-9.]*)/iu' ],                           'type' => ConstantsDeviceType::DESKTOP ],
            [ 
'name' => 'OS/2',         'regexp' => [ '/OS/2;(?: (?:U; )?Warp ([0-9.]*))?/iu' ],           'type' => ConstantsDeviceType::DESKTOP ],
            [ 
'name' => 'Inferno',      'regexp' => [ '/Inferno/iu' ],                                      'type' => ConstantsDeviceType::DESKTOP ],
            [ 
'name' => 'Syllable',     'regexp' => [ '/Syllable/iu' ],                                     'type' => ConstantsDeviceType::DESKTOP ],

            [ 
'name' => 'Grid OS',      'regexp' => [ '/Grid OS ([0-9.]*)/iu' ],                            'type' => ConstantsDeviceType::TABLET ],

            [ 
'name' => 'MRE',          'regexp' => [ '/(MTK;/iu''//MTK /iu' ],                         'type' => ConstantsDeviceType::MOBILE ],
            [ 
'name' => 'MRE',          'regexp' => [ '/MRE\\/iu' ],                                      'type' => ConstantsDeviceType::MOBILE ],
            [ 
'name' => 'MRE',          'regexp' => [ '/MAUI[-_ ](?:Browser|Runtime)/iu' ],                 'type' => ConstantsDeviceType::MOBILE ],
            [ 
'name' => 'MRE',          'regexp' => [ '/Browser/MAUI/iu' ],                                'type' => ConstantsDeviceType::MOBILE ],
            [ 
'name' => 'MRE',          'regexp' => [ '/Nucleus RTOS//iu' ],                               'type' => ConstantsDeviceType::MOBILE ],
            [ 
'name' => 'MRE',          'regexp' => [ '//Nucleus/iu' ],                                    'type' => ConstantsDeviceType::MOBILE ],
            [ 
'name' => 'MRE',          'regexp' => [ '/Nucleus//iu' ],                                    'type' => ConstantsDeviceType::MOBILE ],

            [ 
'name' => 'QNX',          'regexp' => [ '/QNX/iu' ],                                          'type' => ConstantsDeviceType::MOBILE ],
            [ 
'name' => 'VRE',          'regexp' => [ '/(VRE;/iu' ],                                       'type' => ConstantsDeviceType::MOBILE ],
            [ 
'name' => 'SpreadTrum',   'regexp' => [ '/(SpreadTrum;/iu' ],                                'type' => ConstantsDeviceType::MOBILE ],

            [ 
'name' => 'ThreadX',      'regexp' => [ '/ThreadX(?:_OS)?/([0-9.]*)/iu' ] ],
        ];

        
$count count($patterns);
        for (
$b 0$b $count$b++) {
            for (
$r 0$r count($patterns[$b]['regexp']); $r++) {
                if (
preg_match($patterns[$b]['regexp'][$r], $ua$match)) {
                    
$this->data->os->name $patterns[$b]['name'];

                    if (isset(
$match[1]) && $match[1]) {
                        
$this->data->os->version = new Version([ 'value' => $match[1], 'details' => isset($patterns[$b]['details']) ? $patterns[$b]['details'] : null ]);
                    } else {
                        
$this->data->os->version null;
                    }

                    if (isset(
$patterns[$b]['type'])) {
                        
$this->data->device->type $patterns[$b]['type'];
                    }

                    break;
                }
            }
        }
    }
}
Онлайн: 2
Реклама