text stringlengths 29 2.99M |
|---|
<?php
use App\Http\Controllers\Admin\MenuController;
use App\Http\Controllers\Admin\OrderController;
use App\Http\Controllers\Admin\ProductController;
use App\Http\Controllers\Admin\SliderController;
use App\Http\Controllers\Admin\UploadController;
use App\Http\Controllers\Admin\Users\LoginController;
use App\Http\Controllers\CartController;
//use App\Http\Controllers\Admin\Users\MainController;
use App\Http\Controllers\MainController;
use App\Http\Controllers\MenuController as ControllersMenuController;
use App\Http\Controllers\ProductController as ControllersProductController;
use Illuminate\Support\Facades\Route;
Route::get('/Admin/users/login',[LoginController::class,'index'])->name('login');
Route::post('/admin/users/login/store',[LoginController::class,'store']);
Route::middleware(['auth'])->group(function () {
Route::prefix('admin')->group(function () {
Route::get('main',[MainController::class,'index'])->name('admin.main');
//Menus
Route::prefix('menus')->group(function() {
Route::get('/add',[MenuController::class,'create'])->name('admin.menu.add');
Route::post('/add',[MenuController::class,'store']);
Route::get('/list',[MenuController::class,'index'])->name('admin.menu.list');
Route::delete('/destroy',[MenuController::class,'destroy']);
Route::get('/edit/{menu}',[MenuController::class,'show']);
Route::post('/edit/{menu}',[MenuController::class,'update']);
});
Route::prefix('products')->group(function() {
Route::get('list',[ProductController::class,'index'])->name('admin.product.list');
Route::get('add',[ProductController::class,'add']);
Route::post('add',[ProductController::class,'store']);
Route::get('/edit/{product}',[ProductController::class,'show']);
Route::post('edit/{product}',[ProductController::class,'update']);
Route::delete('/destroy',[ProductController::class,'destroy']);
});
//Slider
Route::prefix('slider')->group(function() {
Route::get('list',[SliderController::class,'index'])->name('admin.slide.list');
Route::get('add',[SliderController::class,'add']);
Route::post('add',[SliderController::class,'store']);
Route::get('/edit/{slider}',[SliderController::class,'show']);
Route::post('edit/{slider}',[SliderController::class,'update']);
Route::delete('/destroy',[SliderController::class,'destroy']);
});
Route::prefix('orders')->group(function() {
Route::get('list',[OrderController::class,'list']);
Route::get('view/{id}',[OrderController::class,'view']);
});
//upload
Route::post('upload/service',[UploadController::class,'upload']);
});
});
Route::get('/',[MainController::class,'index']);
Route::post('/loadProduct',[MainController::class,'loadProduct']);
Route::get('/danh-muc/{id}-{slug}',[ControllersMenuController::class,'index']);
Route::get('/san-pham/{id}/{slug}',[ControllersProductController::class,'index']);
Route::get('/service/product/Preview',[MainController::class,'productPreview']);
//Cart
Route::post('add-cart',[CartController::class,'index']);
Route::get('/cart',[CartController::class,'show']);
Route::post('/update-cart',[cartController::class,'update']);
Route::get('/carts/delete/{id}',[CartController::class,'delete']);
Route::post('/cart',[CartController::class,'add']);
|
<?php
//============================================================+
// File name : example_018.php
// Begin : 2008-03-06
// Last Update : 2011-10-01
//
// Description : Example 018 for TCPDF class
// RTL document with Persian language
//
// Author: Nicola Asuni
//
// (c) Copyright:
// Nicola Asuni
// Tecnick.com s.r.l.
// Via Della Pace, 11
// 09044 Quartucciu (CA)
// ITALY
// www.tecnick.com
// info@tecnick.com
//============================================================+
/**
* Creates an example PDF TEST document using TCPDF
* @package com.tecnick.tcpdf
* @abstract TCPDF - Example: RTL document with Persian language
* @author Nicola Asuni
* @since 2008-03-06
*/
require_once('tcpdf/config/lang/eng.php');
require_once('tcpdf/tcpdf.php');
include("../Model/connection.php");
include("../Model/CustomerClass.php");
include("Customers/CustomerView.php");
// create new PDF document
$pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);
// set default monospaced font
$pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED);
//set margins
$pdf->SetMargins(PDF_MARGIN_LEFT, PDF_MARGIN_TOP, PDF_MARGIN_RIGHT);
$pdf->SetHeaderMargin(PDF_MARGIN_HEADER);
$pdf->SetFooterMargin(PDF_MARGIN_FOOTER);
//set auto page breaks
$pdf->SetAutoPageBreak(TRUE, PDF_MARGIN_BOTTOM);
//set image scale factor
$pdf->setImageScale(PDF_IMAGE_SCALE_RATIO);
// set some language dependent data:
$lg = Array();
$lg['a_meta_charset'] = 'UTF-8';
$lg['a_meta_dir'] = 'rtl';
$lg['a_meta_language'] = 'fa';
$lg['w_page'] = 'page';
//set some language-dependent strings
$pdf->setLanguageArray($lg);
// ---------------------------------------------------------
// set font
$pdf->SetFont('dejavusans', '', 12);
// add a page
$pdf->AddPage();
// Restore RTL direction
$pdf->setRTL(true);
// set font
$pdf->SetFont('aefurat', '', 18);
// print newline
$pdf->Ln();
// Arabic and English content
$pdf->Cell(0, 12, 'المعالجات',0,1,'C');
$htmlcontent = 'كتير منيح';
$pdf->WriteHTML($htmlcontent, true, 0, true, 0);
//.................................................................................................................
//...................................................................................medicine
$pdf->AddPage();
$pdf->Cell(0, 12, 'المداواة',0,1,'C');
$htmlcontent1 = 'كتير منيح';
$pdf->WriteHTML($htmlcontent1, true, 0, true, 0);
//.................................................................................................................
//...................................................................................operation
$pdf->AddPage();
$pdf->Cell(0, 12, 'العمليات',0,1,'C');
$htmlcontent2 = 'كتير منيح';
$pdf->WriteHTML($htmlcontent2, true, 0, true, 0);
// ---------------------------------------------------------
//Close and output PDF document
$pdf->Output('example_018.pdf', 'I');
//============================================================+
// END OF FILE
//============================================================+
|
<?php
/**
* Created by PhpStorm.
* User: wu
* Date: 2020/3/16
* Time: 14:05
*/
namespace App\Http\Common;
class Common
{
/**
* 时间搜索插件封装
* @param $timeset
* @return array
*/
function get_time_search($timeset)
{
switch ($timeset) {
case 1;//昨天
$stime = strtotime('-1 day' . ' 0:0:0');
$etime = strtotime('-1 day' . ' 23:59:59');
break;
case 2;//今天
$stime = strtotime(date('Y-m-d', time()) . ' 0:0:0');
$etime = strtotime(date('Y-m-d', time()) . ' 23:59:59');
break;
case 3;//上周
$stime = mktime(0, 0, 0, date('m'), date('d') - date('w') + 1 - 7, date('Y'));
$etime = mktime(23, 59, 59, date('m'), date('d') - date('w') + 7 - 7, date('Y'));
break;
case 4;//上月
$stime = strtotime(date('Y-m-01 00:00:00', strtotime('-1 month')));
$etime = strtotime(date("Y-m-d 23:59:59", strtotime(-date('d') . 'day')));
break;
case 5;//本月
$stime = mktime(0, 0, 0, date('m'), 1, date('Y'));
$etime = mktime(23, 59, 59, date('m'), date('t'), date('Y'));
break;
case 6;//所有时间
$stime = strtotime('2020-3-10' . ' 0:0:0');
$etime = strtotime('2030-3-10' . ' 23:59:59');
break;
}
return ['stime'=>$stime,'etime'=>$etime];
}
} |
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateRatesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('rates', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('dia');
$table->integer('tarifa');
$table->timestamps();
});
DB::table('rates')->insert(array('dia'=>'Lunes', 'tarifa'=>'0'));
DB::table('rates')->insert(array('dia'=>'Martes', 'tarifa'=>'0'));
DB::table('rates')->insert(array('dia'=>'Miercoles', 'tarifa'=>'0'));
DB::table('rates')->insert(array('dia'=>'Jueves', 'tarifa'=>'0'));
DB::table('rates')->insert(array('dia'=>'Viernes', 'tarifa'=>'0'));
DB::table('rates')->insert(array('dia'=>'Sabado', 'tarifa'=>'0'));
DB::table('rates')->insert(array('dia'=>'Domingo','tarifa'=>'0'));
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('rates');
}
}
|
<?php
namespace App\Http\Controllers;
use App\Department;
use App\RoleUser;
use Illuminate\Http\Request;
use App\User;
use App\DepartmentUser;
use App\Role;
use Illuminate\Support\Facades\Session;
use Illuminate\Support\Facades\Storage;
use Illuminate\Support\Facades\Auth;
class UsersController extends Controller
{
public function getAllUsers()
{
return User::all();
}
public function getAllUsersWithDepartments()
{
$users = User::with(['departments','roles'])->paginate(10);//
return($users);
}
public function anyData()
{
$users=$this->getAllUsersWithDepartments();
if(Auth::user()->hasRole('administrator')){
return view('users.index',compact('users'));
}
else{
return view('users.indexEmp',compact('users'));
}
//return(compact('users'));
}
public function getAllUserInfo($id){
//$user=User::find($id)->with(['departments','userRole'])->first();
$user=User::where('id', $id)
->with(['departments','userRole'])->first();
return($user);
}
public function show($id)
{
$user=$this->getAllUserInfo($id);
$departments=Department::all();
$roles=Role::all();
return view('users.show',compact('user','departments','roles'));
//return(dd($user));
}
public function info($id){
$user=$this->getAllUserInfo($id);
$img = Storage::url($user->image_path);
if($img=="/storage/"){
$img=Storage::url('default_avatar.jpg');}
return view('users.info',compact('user','img'));
//return(dd($img));
}
public function update(Request $request){
//return dd($request);
if ($request->hasFile('image_path')) {
if (!is_dir(public_path(). '/storage/users')) {
mkdir(public_path(). '/storage/users', 0777, true);
}
$file = $request->file('image_path');
$destinationPath = public_path(). '/storage/users/'.$request->id;
$filename = str_random(8) . '_' . $file->getClientOriginalName() ;
$file->move($destinationPath, $filename);
}
$user=User::where('id', $request->id)
->with(['departments','userRole'])->first();
$user->name=$request->name;
$user->email=$request->email;
$user->password=bcrypt($request->password);
$user->work_number=$request->work_number;
$user->personal_number=$request->personal_number;
if($request->hasFile('image_path')){
$user->image_path=$filename;
}
$user->save();
//$depuser='';
//$depuser=DepartmentUser::where('user_id', '=', $request->id)->first();;
foreach ($user->departments as $dep) {
if ($dep->id != $request->department) {
$depuser=DepartmentUser::where('user_id', '=', $request->id)->first();
// DepartmentUser::where('user_id', $request->id)
// ->where('department_id', $dep->id)
// ->update(['department_id' => $request->department]);
$depuser->department_id=$request->department;
$depuser->save();
}
}
foreach ($user->roles as $role) {
if ($role != $request->role) {
// RoleUser::where('user_id', $request->id)
// ->where('role_id', $role->id)
// ->update(['role_id' => $request->role]);
$roleuser=RoleUser::where([['user_id', $request->id],['role_id', $role->id]])->first();
$roleuser->role_id=$request->role;
$roleuser->save();
// $user=RoleUser::where([['user_id',$request->id],['role_id',$role->id]])->first();
// $user->role_id=$request->role;
// $user->save();
}
}
//return(dd($request->file('image_path')));
return redirect(route('users.data'));
//return(dd($user1->departments));
}
public function addForm(){
$departments=Department::all();
$roles=Role::all();
return view('users.add',compact('departments','roles'));
}
public function create(Request $request){
Session::flash('flash', 'Пользователь успешно добавлен');
$user=new User();
$user->name=$request->name;
$user->email=$request->email;
$user->password=bcrypt($request->password);
$user->work_number=$request->work_number;
$user->personal_number=$request->personal_number;
$user->save();
if ($request->hasFile('image_path')) {
if (!is_dir(public_path(). '/storage/users')) {
mkdir(public_path(). '/storage/users', 0777, true);
}
$file = $request->file('image_path');
$destinationPath = public_path(). '/storage/users/'.$user->id;
$filename = str_random(8) . '_' . $file->getClientOriginalName() ;
$file->move($destinationPath, $filename);
//Storage::disk('rackspace')->put($destinationPath,$filename);
}
else{
$filename='default_avatar.jpg';
}
$user->image_path=$filename;
$user->save();
$user1=$this->getAllUserInfo($request->id);
$depuser = new DepartmentUser();
$depuser->insert([
'department_id' => $request->department,
'user_id' => $user->id
]);
$role=Role::find($request->role);
$user->attachRole($role);
return redirect(route('users.data'));
//return (dd(realpath($file)));
}
public function destroy($id){
$user=User::find($id);
try{$user->delete();} catch (\Illuminate\Database\QueryException $e){Session()->flash('flash_message_warning', 'Не вышло');}
return redirect(route('users.data'));
}
}
|
<?php
namespace App\Http\Controllers;
use App\Bank;
use App\Country;
use App\GradeRank;
use App\Major;
use App\Person;
use App\PersonTitles;
use App\SceMembershipType;
use Illuminate\Support\Facades\Auth;
use Illuminate\Http\Request;
use App\Rules\ValidDate;
use App\Rules\ValidHijriDate;
use App\Rules\ValidGregorianDate;
use Illuminate\Support\Facades\Redirect;
class PersonController extends Controller
{
// -----------------------------------------------------------------------------------------------------------------
/**
* Create a new controller instance.
*
* @return void
*/
public function __construct()
{
$this->middleware('auth');
// $this->authorizeResource(Person::class, 'person');
// $this->middleware('signed')->only('verify');
// $this->middleware('throttle:6,1')->only('verify', 'resend');
}
// -----------------------------------------------------------------------------------------------------------------
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index(Person $person)
{
$this->authorize('viewAny', $person);
$allPersons = Person::all()->reverse();
return view('person.index')->with('persons', $allPersons);
}
// -----------------------------------------------------------------------------------------------------------------
/**
* Show the form for creating a new resource.
*
* @return \Illuminate\Http\Response
*/
public function create(Request $request, Person $person)
{
$national_id = $request->input('national_id');
$formsData = array_merge($this->formsData(), [
'national_id' => $national_id,
'person' => $person,
]);
// dd($formsData);
return view('person.create')->with($formsData);
}
// -----------------------------------------------------------------------------------------------------------------
/**
* Store a newly created resource in storage.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function store(Request $request)
{
$validatedData = $this->validatePerson($request);
$nationality = Country::where('code_2chracters', $validatedData['nationality_code'])->first();
if ($nationality) {
$validatedData['nationality_ar'] = $nationality->ar_name;
$validatedData['nationality_en'] = $nationality->en_name;
}
$validatedData['created_by_id'] = auth()->user()->id;
$validatedData['created_by_name'] = auth()->user()->user_name;
if ($request->form_action == 'create_new_custorm') {
$validatedData['is_customer'] = true;
}
$found_person = Person::where('national_id', $validatedData['national_id'])->first();
if ($found_person) {
if ($request->coming_from == 'create_new_project') {
return $found_person;
}
return redirect()->route('person.show', $found_person);
}
$person = Person::create($validatedData);
$person->save();
// -----------------------------------------------------------------
// add record to db_log
$db_record_data = [
'table' => 'people',
'model' => 'Person',
'model_id' => $person->id,
'action' => 'create',
'description' => 'new person as customer created national_id =>' . $person->national_id,
];
DbLogController::add_record($db_record_data);
// -----------------------------------------------------------------
if ($request->coming_from == 'create_new_project') {
return $person;
}
return redirect()->action('PersonController@index');
}
// -----------------------------------------------------------------------------------------------------------------
/**
* Display the specified resource.
*
* @param \App\Person $person
* @return \Illuminate\Http\Response
*/
public function show(Request $request, Person $person)
{
// if person not found laravel (route model binding) will send us 404 page
$this->authorize('viewAny', $person);
return view('person.show')->with('person', $person);
}
// -----------------------------------------------------------------------------------------------------------------
/**
* Show the form for editing the specified resource.
*
* @param \App\Person $person
* @return \Illuminate\Http\Response
*/
public function edit(Person $person)
{
$formsData = array_merge($this->formsData(), [
'person' => $person,
]);
return view('person.edit')->with($formsData);
}
// -----------------------------------------------------------------------------------------------------------------
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param \App\Person $person
* @return \Illuminate\Http\Response
*/
public function update(Request $request, Person $person)
{
$validatedData = collect($this->validatePerson($request));
$nationality = Country::where('code_2chracters', $validatedData['nationality_code'])->first();
if ($nationality) {
$validatedData->put('nationality_ar', $nationality->ar_name);
$validatedData->put('nationality_en', $nationality->en_name);
}
// -------------------
$last_edit_by_id = auth()->user()->id;
$last_edit_by_name = auth()->user()->user_name;
if (!$last_edit_by_id and !$last_edit_by_name) {
return abort(403);
}
$validatedData->put('last_edit_by_id', $last_edit_by_id);
$validatedData->put('last_edit_by_name', $last_edit_by_name);
// -------------------
$person->update($validatedData->all());
$person->save();
return redirect()->action('PersonController@show', $person->id);
}
// -----------------------------------------------------------------------------------------------------------------
/**
* Remove the specified resource from storage.
*
* @param \App\Person $person
* @return \Illuminate\Http\Response
*/
public function destroy(Person $person)
{
$person->delete();
return redirect()->action('PersonController@index');
}
// -----------------------------------------------------------------------------------------------------------------
public function check(Request $request, Person $person)
{
if ($request->method() === "GET") {
return view('person.check');
}
$validatedData = $request->validate([
'national_id' => 'required|numeric|starts_with:1,2|digits:10',
// 'body' => 'required',
]);
// return $request->all();
$found_person = $person->where('national_id', $request->national_id)->first();
// return $found_person;
if ($found_person) {
return redirect()->action('PersonController@show', $found_person->id);
// return redirect()->action('PersonController@show', ['id' => $found_person->id]);
} else {
return redirect()->action('PersonController@create', $request);
}
}
// -----------------------------------------------------------------------------------------------------------------
public function formsData()
{
$countries = Country::all();
$majors = Major::all();
$gread_ranks = GradeRank::all();
$SCE_membership_types = SceMembershipType::all();
$person_titles = PersonTitles::all();
$banks = Bank::all();
return [
'countries' => $countries,
'majors' => $majors,
'gread_ranks' => $gread_ranks,
'gread_ranks' => $gread_ranks,
'SCE_membership_types' => $SCE_membership_types,
'person_titles' => $person_titles,
'banks' => $banks,
];
}
// -----------------------------------------------------------------------------------------------------------------
public static function validatePerson($request)
{
return $request->validate([
'national_id' => 'required|numeric|starts_with:1,2|digits:10',
'is_employee' => 'boolean|nullable',
'is_customer' => 'boolean|nullable',
// ----------------------------------------------------
'ar_name1' => 'required|string|min:2',
'ar_name2' => 'string|nullable',
'ar_name3' => 'string|nullable',
'ar_name4' => 'string|nullable',
'ar_name5' => "required|string|min:2",
'en_name1' => 'string|nullable|regex:/[A-Za-z]/',
'en_name2' => 'string|nullable|regex:/[A-Za-z]/',
'en_name3' => 'string|nullable|regex:/[A-Za-z]/',
'en_name4' => 'string|nullable|regex:/[A-Za-z]/',
'en_name5' => 'string|nullable|regex:/[A-Za-z]/',
// ----------------------------------------------------
'gender' => 'string|nullable',
'relational_status' => 'string|nullable',
'religion' => 'string|nullable',
'prefer_language' => 'string|nullable',
// ----------------------------------------------------
'nationality_code' => "required",
'nationality_ar' => "nullable",
'nationality_en' => "nullable",
// ----------------------------------------------------
'hafizah_no' => 'numeric|nullable',
'national_id_issue_date' => ['nullable', 'string', new ValidHijriDate],
'national_id_expire_date' => ['nullable', 'string', new ValidHijriDate],
'national_id_issue_place' => 'string|nullable',
// ----------------------------------------------------
'pasport_no' => 'nullable',
'pasport_issue_date' => ['nullable', 'string', new ValidGregorianDate],
'pasport_expire_date' => ['nullable', 'string', new ValidGregorianDate],
'pasport_issue_place' => 'nullable',
// ----------------------------------------------------
'ah_birth_date' => ['nullable', 'string', new ValidHijriDate],
'ad_birth_date' => ['nullable', 'string', new ValidGregorianDate],
'birth_place' => 'string|nullable',
'birth_city' => 'string|nullable',
// ----------------------------------------------------
'ah_hiring_date' => ['nullable', 'string', new ValidHijriDate],
'ad_hiring_date' => ['nullable', 'string', new ValidGregorianDate],
'hiring_day' => 'string|nullable',
// ----------------------------------------------------
'employment_no' => 'numeric|nullable',
'fingerprint_no' => 'numeric|nullable',
// ----------------------------------------------------
'degree' => 'string|nullable',
'major_id' => 'numeric|nullable',
'graduated_from' => 'string|nullable',
'college_name' => 'string|nullable',
'graduation_year' => 'numeric|nullable',
'graduation_points' => 'numeric|nullable',
'graduation_points_of' => 'numeric|nullable',
'graduation_grade_rank_id' => 'numeric|nullable',
// ----------------------------------------------------
'id_job_title' => 'string|nullable',
'job_title' => 'string|nullable',
'job_division' => 'string|nullable',
'job_position' => 'string|nullable',
'current_project' => 'string|nullable',
// ----------------------------------------------------
'SCE_membership_no' => 'numeric|nullable',
'SCE_membership_type_id' => 'numeric|nullable',
'SCE_membership_expire_date' => ['nullable', 'string', new ValidGregorianDate],
'SCE_classification_expire_date' => ['nullable', 'string', new ValidGregorianDate],
// ----------------------------------------------------
'mobile' => 'required|numeric|starts_with:0,9|digits:10,12,14',
'phone' => 'nullable',
'phone_extension' => 'nullable',
'email' => 'nullable|email',
'personal_email' => 'email|nullable',
'mobile2' => 'string|nullable',
'mobile3' => 'string|nullable',
// ----------------------------------------------------
'foreign_phone1' => 'string|nullable',
'foreign_phone2' => 'string|nullable',
'foreign_address1' => 'string|nullable',
'foreign_address2' => 'string|nullable',
// ----------------------------------------------------
'SNA_application_no' => 'numeric|nullable',
'SNA_service_no' => 'numeric|nullable',
'SNA_account_no' => 'numeric|nullable',
'SNA_building_no' => 'numeric|nullable',
'SNA_street_name' => 'string|nullable',
'SNA_district_name' => 'string|nullable',
'SNA_city_name' => 'string|nullable',
'SNA_zip_code' => 'numeric|nullable',
'SNA_additional_no' => 'numeric|nullable',
'SNA_unit_no' => 'numeric|nullable',
'SNA_residence_type' => 'string|nullable',
'SNA_residence_ownership' => 'string|nullable',
// ----------------------------------------------------
'bank_id' => 'numeric|nullable',
'bank_account_no' => 'numeric|nullable',
'bank_IBAN_no' => 'numeric|nullable',
// ----------------------------------------------------
'emergency_contact_name1' => 'string|nullable',
'emergency_contact_mobile1' => 'string|nullable',
'emergency_contact_relationship1' => 'string|nullable',
'emergency_contact_name2' => 'string|nullable',
'emergency_contact_mobile2' => 'string|nullable',
'emergency_contact_relationship2' => 'string|nullable',
// ----------------------------------------------------
'notes' => 'string|nullable',
'private_notes' => 'string|nullable',
]);
}
// -----------------------------------------------------------------------------------------------------------------
}
|
<?php
namespace FirePHP\Exception;
/**
* UploadFileNotFoundException est l'exception à l'upload lors que le fichier n'est pas trouvé.
* @author Yoann Chaumin <yoann.chaumin@gmail.com>
*/
class UploadFileNotFoundException extends Exception
{
}
?> |
<?php
namespace DevGroup\Users\actions;
use DevGroup\Users\models\User;
use DevGroup\Users\models\UserService;
use yii\base\Action;
use Yii;
use yii\web\NotFoundHttpException;
use yii\web\ServerErrorHttpException;
/**
* Class DeleteSocial
*
* @package DevGroup\Users\actions
*/
class DeleteSocial extends Action
{
/**
* @param $service_id
* @return \yii\web\Response
* @throws NotFoundHttpException
* @throws ServerErrorHttpException
*/
public function run($service_id)
{
/** @var User $user */
$user = Yii::$app->user->identity;
if ($user === null) {
throw new NotFoundHttpException(Yii::t('users', 'No user identity found'));
}
$userService = UserService::findOne(['social_service_id' => $service_id, 'user_id' => $user->id]);
if ($userService === null) {
throw new NotFoundHttpException(Yii::t(
'users',
'Service with id \'{serviceId}\' not found!',
['serviceId' => $service_id]
));
}
if ($userService->delete()) {
Yii::$app->session->addFlash('success', Yii::t('users', 'Service has been deleted'));
} else {
Yii::$app->session->addFlash('error', Yii::t('users', 'Service has not been deleted'));
}
return $this->controller->redirect(['@manage-social']);
}
}
|
<?php
namespace app\wxpay\controller;
use think\Loader;
use think\Controller;
class Index extends Controller
{
public function index()
{
return $this->fetch();
}
public function native()
{
Loader::import('wxpay.WxPayNativePay', EXTEND_PATH);
//Loader::import('wxpay.lib.WxPayApi', EXTEND_PATH);
Loader::import('wxpay.log', EXTEND_PATH);
//require_once "../lib/WxPay.Api.php";
//require_once "WxPay.NativePay.php";
//require_once 'log.php';
//模式一
/**
* 流程:
* 1、组装包含支付信息的url,生成二维码
* 2、用户扫描二维码,进行支付
* 3、确定支付之后,微信服务器会回调预先配置的回调地址,在【微信开放平台-微信支付-支付配置】中进行配置
* 4、在接到回调通知之后,用户进行统一下单支付,并返回支付信息以完成支付(见:native_notify.php)
* 5、支付完成之后,微信服务器会通知支付成功
* 6、在支付成功通知中需要查单确认是否真正支付成功(见:notify.php)
*/
$notify = new \NativePay();
$url1 = $notify->GetPrePayUrl("123456789");
//模式二
/**
* 流程:
* 1、调用统一下单,取得code_url,生成二维码
* 2、用户扫描二维码,进行支付
* 3、支付完成之后,微信服务器会通知支付成功
* 4、在支付成功通知中需要查单确认是否真正支付成功(见:notify.php)
*/
$wxPayConfig = new \WxPayConfig();
$out_trade_no = $wxPayConfig::MCHID.date("YmdHis");
$input = new \WxPayUnifiedOrder();
$input->SetBody("公房管理系统");
$input->SetAttach("two");
$input->SetOut_trade_no($out_trade_no);
$input->SetTotal_fee("1"); //以1分钱为单位
$input->SetTime_start(date("YmdHis"));
$input->SetTime_expire(date("YmdHis", time() + 600)); //设置二维码过期时间10分钟
$input->SetGoods_tag("goods_tag"); //设置商品标识
$input->SetNotify_url("https://ph.ctnmit.com/wxpay/Notify/orderQuery"); //设置回调地址
$input->SetTrade_type("NATIVE");
$input->SetProduct_id("123456789");
$result = $notify->GetPayUrl($input);
//halt($result);
$url2 = $result["code_url"];
$this->assign([
'out_trade_no'=> $out_trade_no,
'url1' => $url1,
'url2' => $url2,
]);
return $this->fetch();
}
public function nativeapi()
{
Loader::import('wxpay.WxPayNativePay', EXTEND_PATH);
//Loader::import('wxpay.lib.WxPayApi', EXTEND_PATH);
Loader::import('wxpay.log', EXTEND_PATH);
//require_once "../lib/WxPay.Api.php";
//require_once "WxPay.NativePay.php";
//require_once 'log.php';
//模式一
/**
* 流程:
* 1、组装包含支付信息的url,生成二维码
* 2、用户扫描二维码,进行支付
* 3、确定支付之后,微信服务器会回调预先配置的回调地址,在【微信开放平台-微信支付-支付配置】中进行配置
* 4、在接到回调通知之后,用户进行统一下单支付,并返回支付信息以完成支付(见:native_notify.php)
* 5、支付完成之后,微信服务器会通知支付成功
* 6、在支付成功通知中需要查单确认是否真正支付成功(见:notify.php)
*/
$notify = new \NativePay();
$url1 = $notify->GetPrePayUrl("123456789");
//模式二
/**
* 流程:
* 1、调用统一下单,取得code_url,生成二维码
* 2、用户扫描二维码,进行支付
* 3、支付完成之后,微信服务器会通知支付成功
* 4、在支付成功通知中需要查单确认是否真正支付成功(见:notify.php)
*/
$wxPayConfig = new \WxPayConfig();
$out_trade_no = $wxPayConfig::MCHID.date("YmdHis");
$input = new \WxPayUnifiedOrder();
$input->SetBody("公房管理系统");
$input->SetAttach("two");
$input->SetOut_trade_no($out_trade_no);
$input->SetTotal_fee("1"); //以1分钱为单位
$input->SetTime_start(date("YmdHis"));
$input->SetTime_expire(date("YmdHis", time() + 600)); //设置二维码过期时间10分钟
$input->SetGoods_tag("goods_tag"); //设置商品标识
$input->SetNotify_url("https://ph.ctnmit.com/wxpay/Notify/orderQuery"); //设置回调地址
$input->SetTrade_type("NATIVE");
$input->SetProduct_id("123456789");
$result = $notify->GetPayUrl($input);
if (isset($result["code_url"])) {
jsons('2000','获取成功',['url'=>$result["code_url"],'out_trade_no'=>$out_trade_no]);
}else{
jsons('4000','获取失败');
}
}
public function notify()
{
Loader::import('wxpay.notify', EXTEND_PATH);
$wxPayConfig = new \PayNotifyCallBack();
}
public function qrcode()
{
error_reporting(E_ERROR);
Loader::import('wxpay.phpqrcode', EXTEND_PATH);
//require_once 'phpqrcode/phpqrcode.php';
$url = urldecode($_GET["data"]);
$QRcode = new \QRcode();
$QRcode::png($url);
}
} |
Laravel provides an expressive, minimal API arround the Guzzle HTTP client, allowing you to quickly make outgoing HTTP requests to communicate with other web apps.
Laravel's wrapper around Guzzle is focused on its most common use cases and a wonderful dev experience.
Before getting started, insure you have the Guzzle package installed as a dependency of your app. Laravel automatically includes it, but if you need to install it:
<? composer require guzzlehttp/guzzle ?>
Making requests
================
To make requests, use the <? get, post, put, patch, delete ?> methods provided by the Http facade.
<?
use Illuminate\Support\Facades\Http;
// basic get request
$response = Http::get('http://example.com');
?>
The get method returns an instance of Illuminate\Http\Client\Response, which provides a variety of methods that can be used to inspect the response:
<?
$response->body() : string;
$response->json() : array|mixed;
$response->status() : int;
$response->ok() : bool;
$response->successful() : bool;
$response->failed() : bool;
$response->serverError() : bool;
$response->clientError() : bool;
$response->header($header) : string;
$response->headers() : array;
?>
The Illuminate\Http\Client\Response object also implements the PHP ArrayAccess interface, allowing you access to JSON response data directly on the response:
<?
return Http::get('http://example.com/users/1')['name'];
?>
Request Data
===============
Post, put, and patch requests requires additional data with your request so those methods accept an array of data as their 2nd argument.
By default, this data will be sent using to application/json content type.
<?
$response = Http::post('http://example.com/users', [
'name' => 'Steve',
'role' => 'Network Administrator',
]);
?>
Get requests also have this option:
<?
$response = Http::get('http://example.com/users', [
'name' => 'Taylor',
'page' => 1,
]);
?>
To send form URL encoded requests, call the asForm method to utilize the application/x-www-form-urlencoded content type.
<?
$response = Http::asForm()->post('http://example.com/users', [
'name' => 'Sara',
'role' => 'Privacy Consultant',
]);
?>
Use the withBody method to provide a raw request body when making a request. The content type can be provided via the method's 2nd argument:
<?
$response = Http::withBody(
base64_encode($photo), 'image/jpeg'
)->post('http://example.com/photo');
?>
If you need to send files a multi-part requests, call the attach method before making your request. This method accepts the name of the file and its contents. If needed, provide a 3rd argument which will be considered the file's filename:
<?
$response = Http::attach(
'attachment', file_get_contents('photo.jpg'), 'photo.jpg'
)->post('http://example.com/attachments');
?>
Headers
=============
Headers can be added to requests using the withHeaders method. This method accepts an array of key/value pairs:
<?
$response = Http::withHeaders([
'X-First' => 'foo',
'X-Second' => 'bar'
])->post('http://example.com/users', [
'name' => 'Taylor',
]);
?>
Authentication
================
You can specify basic and digest authentication credentials using the withBasicAuth or withDigestAuth methods:
<?
// Basic authentication...
$response = Http::withBasicAuth('taylor@laravel.com', 'secret')->post(...);
// Digest authentication...
$response = Http::withDigestAuth('taylor@laravel.com', 'secret')->post(...);
// To quickly add bearer token to request's Authorization header...
$response = Http::withToken('token')->post(...);
?>
Timeout
===========
The timeout method can be used to specify the max number of seconds to wait for a response:
<?
// If given timeout exceeded, instance of Illuminate\Http\Client\ConnectionException thrown
$response = Http::timeout(3)->get(...);
?>
Retries
===========
If you need the HTTP client to automatically retry the request if a client or server error occurs, you can use the retry method.
This method accept the max number of attempts as the 1st argument and the number of milliseconds to wait between attempts as the 2nd argument:
<?
// If given timeout exceeded, instance of Illuminate\Http\Client\ConnectionException thrown
$response = Http::retry(3, 100)->post(...);
?>
Error Handling
===============
Unlike Guzzle's default behavior, Laravel's HTTP client wrapper doesn't throw exceptions on client or server errors (400 & 500 level responses).
You can determine if one of these errors was returned using the successful, clientError, or serverError methods:
<?
// Determine if the status code is >= 200 and < 300...
$response->successful();
// Determine if the status code is >= 400...
$response->failed();
// Determine if the response has a 400 level status code...
$response->clientError();
// Determine if the response has a 500 level status code...
$response->serverError();
?>
If you have a response instance and want to throw an error instance of Illuminate\Http\Client\RequestException indicates a client or server error, use the throw method:
<?
$response = Http::post(...);
// Throw an exception if a client or server error occurred...
$response->throw();
return $response['user']['id'];
?>
The Illuminate\Http\Client\RequestException instance has a public $response property that will allow you to inspect the returned response:
The throw method returns the response instance if no error occurred, allowing you to chain other operations onto the throw method.
<? return Http::post(...)->throw()->json(); ?>
If you need to perform additional logic before the exception is thrown, pass a closure to the throw mehod.
The exception will be thrown automatically after the closure is invoked so you don't need to re-throw the exception from within the closure:
<?
return Http::post(...)->throw(function ($response, $e) {
//
})->json();
?>
Guzzle Options
================
You can specify additional Guzzle request options using the withOptions method. It accepts an array of key/value pairs:
<?
$response = Http::withOptions([
'debug' => true,
])->get('http://example.com/users');
?>
|
<?php
/*
Helper File for Plugin: Filedownload
Plugin URI: http://www.worldweb-innovation.de/
Description: Database functions
Author: Peter Gross
Author URI: http://www.worldweb-innovation.de/
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* Tabellen erstellen wenn nicht vorhanden
*/
function filedownload_CreateTables() {
require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
global $wpdb;
// Counter-Tabelle existieren nicht - anlegen
$sql ="CREATE TABLE IF NOT EXISTS ".$wpdb->prefix."filedownload"." (
id INT(10) NOT NULL AUTO_INCREMENT,
filename VARCHAR(512) NOT NULL,
count INT(10) NOT NULL,
PRIMARY KEY (id)
);";
dbDelta($sql);
//echo $sql; exit();
}
function filedownload_Write($filename)
{
global $wpdb;
$query = 'SELECT * FROM '.$wpdb->prefix.'filedownload WHERE filename = \''.$filename.'\'';
//print $query;
$result=$wpdb->get_row($query, ARRAY_A);
//print_r($result);exit();
if (count($result) == 0)
{
$wpdb->insert( $wpdb->prefix.'filedownload', array( 'filename' => $filename, 'count' => 1 ), array( '%s', '%d' ));
}
else // iserip does not yet exist
{
$count = $result['count'] + 1;
$wpdb->update( $wpdb->prefix.'filedownload', array( 'filename' => $filename, 'count' => $count ), array( 'filename' => $filename), array( '%s', '%d' ), array( '%s' ) );
}
}
function filedownload_Reset($filename)
{
global $wpdb;
$query = 'SELECT * FROM '.$wpdb->prefix.'filedownload WHERE filename = \''.$filename.'\'';
//print $query;
$result=$wpdb->get_row($query, ARRAY_A);
//print_r($result);exit();
if (count($result) == 0)
{
$wpdb->insert( $wpdb->prefix.'filedownload', array( 'filename' => $filename, 'count' => 0 ), array( '%s', '%d' ));
}
else // iserip does not yet exist
{
$wpdb->update( $wpdb->prefix.'filedownload', array( 'filename' => $filename, 'count' => 0 ), array( 'filename' => $filename), array( '%s', '%d' ), array( '%s' ) );
}
}
function filedownload_Delete($filename)
{
global $wpdb;
$query = 'DELETE FROM '.$wpdb->prefix.'filedownload WHERE filename = \''.$filename.'\'';
//print $query;
$result = $wpdb->query($query);
}
function filedownload_Read($filename)
{
global $wpdb;
$query = 'SELECT * FROM '.$wpdb->prefix.'filedownload WHERE filename = \''.$filename.'\'';
//print $query;
$result=$wpdb->get_row($query, ARRAY_A);
//print_r($result);
if (count($result) == 0) return "0";
return strval($result[count]);
}
function filedownload_ReadAll()
{
global $wpdb;
$query = 'SELECT * FROM '.$wpdb->prefix.'filedownload';
//print $query;
$result=$wpdb->get_results($query, ARRAY_A);
//print_r($result);exit();
return $result;
}
?>
|
<?php
return [
'test-00036-00405' => [
'ua' => 'Mozilla/5.0 (Linux; Android 4.4.2; XT890 Build/KIA20.74) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.111 Mobile Safari/537.36',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '42.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '4.4.2',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'unknown',
'Device_Maker' => 'unknown',
'Device_Type' => 'unknown',
'Device_Pointing_Method' => 'unknown',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'unknown',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00406' => [
'ua' => 'Mozilla/5.0 (Linux; Android 4.4.2; TAB744 Build/KVT49L) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.111 Safari/537.36',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '42.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '4.4.2',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'unknown',
'Device_Maker' => 'unknown',
'Device_Type' => 'unknown',
'Device_Pointing_Method' => 'unknown',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'unknown',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00407' => [
'ua' => 'Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.0.10) Gecko/2009042316 Firefox/3.0.10 ( .NET CLR 3.5.30729)',
'properties' => [
'Browser_Name' => 'Firefox',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Mozilla Foundation',
'Browser_Modus' => 'unknown',
'Browser_Version' => '3.0',
'Platform_Codename' => 'Windows NT 5.1',
'Platform_Marketingname' => 'Windows XP',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Gecko',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Mozilla Foundation',
],
],
'test-00036-00408' => [
'ua' => 'Mozilla/5.0 (Linux; Android 4.4.4; A1-840 Build/KTU84P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.111 Safari/537.36',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '42.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '4.4.4',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'unknown',
'Device_Maker' => 'unknown',
'Device_Type' => 'unknown',
'Device_Pointing_Method' => 'unknown',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'unknown',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00409' => [
'ua' => 'Mozilla/5.0 (Linux; Android 4.4.4; Venue 8 7840 Build/KTU84P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.111 Safari/537.36',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '42.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '4.4.4',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'unknown',
'Device_Maker' => 'unknown',
'Device_Type' => 'unknown',
'Device_Pointing_Method' => 'unknown',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'unknown',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00410' => [
'ua' => 'Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '42.0',
'Platform_Codename' => 'Windows NT 6.2',
'Platform_Marketingname' => 'Windows 8',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00411' => [
'ua' => 'Mozilla/5.0 (Linux; Android 4.4.2; SM-G800F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/30.0.0.0 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/32.0.0.23.15;]',
'properties' => [
'Browser_Name' => 'Facebook App',
'Browser_Type' => 'Application',
'Browser_Bits' => 32,
'Browser_Maker' => 'Facebook',
'Browser_Modus' => 'unknown',
'Browser_Version' => '32.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '4.4.2',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'Galaxy S5 Mini (Europe)',
'Device_Maker' => 'Samsung',
'Device_Type' => 'Mobile Phone',
'Device_Pointing_Method' => 'touchscreen',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'SM-G800F',
'Device_Brand_Name' => 'Samsung',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00412' => [
'ua' => 'Mozilla/5.0 (Linux; Android 5.0; SM-G900F Build/LRX21T; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/42.0.2311.137 Mobile Safari/537.36',
'properties' => [
'Browser_Name' => 'Android WebView',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '4.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '5.0.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'Galaxy S5 LTE',
'Device_Maker' => 'Samsung',
'Device_Type' => 'Mobile Phone',
'Device_Pointing_Method' => 'touchscreen',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'SM-G900F',
'Device_Brand_Name' => 'Samsung',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00413' => [
'ua' => 'Mozilla/5.0 (Linux; Android 4.4.4; Nexus 7 Build/KTU84P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.111 Safari/537.36',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '42.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '4.4.4',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'Nexus 7',
'Device_Maker' => 'Asus',
'Device_Type' => 'Tablet',
'Device_Pointing_Method' => 'touchscreen',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'Nexus 7',
'Device_Brand_Name' => 'Google',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00414' => [
'ua' => 'Mozilla/5.0 (Linux; U; Android 4.1.2; de-de; LT22i Build/6.2.A.1.100) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30 [FB_IAB/FB4A;FBAV/31.0.0.20.13;]',
'properties' => [
'Browser_Name' => 'Facebook App',
'Browser_Type' => 'Application',
'Browser_Bits' => 32,
'Browser_Maker' => 'Facebook',
'Browser_Modus' => 'unknown',
'Browser_Version' => '31.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '4.1.2',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'Xperia P',
'Device_Maker' => 'SonyEricsson',
'Device_Type' => 'Mobile Phone',
'Device_Pointing_Method' => 'touchscreen',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'LT22i',
'Device_Brand_Name' => 'SonyEricsson',
'RenderingEngine_Name' => 'WebKit',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Apple Inc',
],
],
'test-00036-00415' => [
'ua' => 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; BTRS124342; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; (gmx/1.0.0.8))',
'properties' => [
'Browser_Name' => 'Internet Explorer',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Microsoft Corporation',
'Browser_Modus' => 'unknown',
'Browser_Version' => '8.0',
'Platform_Codename' => 'Windows NT 5.1',
'Platform_Marketingname' => 'Windows XP',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Trident',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Microsoft Corporation',
],
],
'test-00036-00416' => [
'ua' => 'Mozilla/5.0 (Linux; Android 4.4.2; GT-N8010 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.111 Safari/537.36',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '42.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '4.4.2',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'Galaxy Note 10.1 WiFi',
'Device_Maker' => 'Samsung',
'Device_Type' => 'Tablet',
'Device_Pointing_Method' => 'touchscreen',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'GT-N8010',
'Device_Brand_Name' => 'Samsung',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00417' => [
'ua' => 'Mozilla/5.0 (Linux; Android 4.4.2; A3-A20FHD Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.111 Safari/537.36',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '42.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '4.4.2',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'unknown',
'Device_Maker' => 'unknown',
'Device_Type' => 'unknown',
'Device_Pointing_Method' => 'unknown',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'unknown',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00418' => [
'ua' => 'Mozilla/5.0 (Windows NT 6.2; rv:37.0.2) Gecko/20100101 Firefox/37.0.2 anonymized by Abelssoft 385993085',
'properties' => [
'Browser_Name' => 'Firefox',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Mozilla Foundation',
'Browser_Modus' => 'unknown',
'Browser_Version' => '37.0',
'Platform_Codename' => 'Windows NT 6.2',
'Platform_Marketingname' => 'Windows 8',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Gecko',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Mozilla Foundation',
],
],
'test-00036-00419' => [
'ua' => 'Mozilla/5.0 (Linux; Android 4.3; C6603 Build/10.4.1.B.0.101) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.111 Mobile Safari/537.36',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '42.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '4.3.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'Xperia Z',
'Device_Maker' => 'Sony',
'Device_Type' => 'Mobile Phone',
'Device_Pointing_Method' => 'touchscreen',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'C6603',
'Device_Brand_Name' => 'Sony',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00420' => [
'ua' => 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB7.5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET4.0C; AskTbORJ/5.15.15.36191)',
'properties' => [
'Browser_Name' => 'Internet Explorer',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Microsoft Corporation',
'Browser_Modus' => 'unknown',
'Browser_Version' => '8.0',
'Platform_Codename' => 'Windows NT 6.0',
'Platform_Marketingname' => 'Windows Vista',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Trident',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Microsoft Corporation',
],
],
'test-00036-00421' => [
'ua' => 'Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 PTST/209',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '42.0',
'Platform_Codename' => 'Windows NT 6.3',
'Platform_Marketingname' => 'Windows 8.1',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 64,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00422' => [
'ua' => 'Mozilla/5.0 (iPhone; CPU iPhone OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Mobile/11D257 [FBAN/FBIOS;FBAV/29.0.0.9.13;FBBV/9374459;FBDV/iPhone3,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/7.1.2;FBSS/2; FBCR/Vodafone.de;FBID/phone;FBLC/de_DE;FBOP/5]',
'properties' => [
'Browser_Name' => 'Facebook App',
'Browser_Type' => 'Application',
'Browser_Bits' => 32,
'Browser_Maker' => 'Facebook',
'Browser_Modus' => 'unknown',
'Browser_Version' => '29.0',
'Platform_Codename' => 'iOS',
'Platform_Marketingname' => 'iOS',
'Platform_Version' => '7.1.2',
'Platform_Bits' => 32,
'Platform_Maker' => 'Apple Inc',
'Platform_Brand_Name' => 'Apple',
'Device_Name' => 'iPhone',
'Device_Maker' => 'Apple Inc',
'Device_Type' => 'Mobile Phone',
'Device_Pointing_Method' => 'touchscreen',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'iPhone',
'Device_Brand_Name' => 'Apple',
'RenderingEngine_Name' => 'WebKit',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Apple Inc',
],
],
'test-00036-00423' => [
'ua' => 'Mozilla/5.0 (Linux; U; Android 4.2.2; de-de; U30GT 2 Build/JDQ39) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30',
'properties' => [
'Browser_Name' => 'Android',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '4.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '4.2.2',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'unknown',
'Device_Maker' => 'unknown',
'Device_Type' => 'unknown',
'Device_Pointing_Method' => 'unknown',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'unknown',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'WebKit',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Apple Inc',
],
],
'test-00036-00424' => [
'ua' => 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2389.0 Safari/537.36',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '44.0',
'Platform_Codename' => 'Windows NT 6.1',
'Platform_Marketingname' => 'Windows 7',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 64,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00425' => [
'ua' => 'Mozilla/5.0 (Linux; Android 4.4.4; SM-N915FY Build/KTU84P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.111 Mobile Safari/537.36',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '42.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '4.4.4',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'Galaxy Note Edge 4 LTE (Europe)',
'Device_Maker' => 'Samsung',
'Device_Type' => 'Mobile Phone',
'Device_Pointing_Method' => 'touchscreen',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'SM-N915FY',
'Device_Brand_Name' => 'Samsung',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00426' => [
'ua' => 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; tb-gmx/1.7.2)',
'properties' => [
'Browser_Name' => 'Internet Explorer',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Microsoft Corporation',
'Browser_Modus' => 'unknown',
'Browser_Version' => '9.0',
'Platform_Codename' => 'Windows NT 6.1',
'Platform_Marketingname' => 'Windows 7',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 64,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Trident',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Microsoft Corporation',
],
],
'test-00036-00427' => [
'ua' => 'Mozilla/5.0 (Windows NT 6.2; rv:37.0.2) Gecko/20100101 Firefox/37.0.2 anonymized by Abelssoft 1625649229',
'properties' => [
'Browser_Name' => 'Firefox',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Mozilla Foundation',
'Browser_Modus' => 'unknown',
'Browser_Version' => '37.0',
'Platform_Codename' => 'Windows NT 6.2',
'Platform_Marketingname' => 'Windows 8',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Gecko',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Mozilla Foundation',
],
],
'test-00036-00428' => [
'ua' => 'Mozilla/5.0 (Linux; Android 4.1.2; HUAWEI G525-U00 Build/HuaweiG525-U00) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.111 Mobile Safari/537.36',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '42.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '4.1.2',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'Ascend G525',
'Device_Maker' => 'Huawei',
'Device_Type' => 'Mobile Phone',
'Device_Pointing_Method' => 'touchscreen',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'G525-U00',
'Device_Brand_Name' => 'Huawei',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00429' => [
'ua' => 'Mozilla/5.0 (Linux; Android 4.3; Archos 45b Platinum Build/JLS36C) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.111 Mobile Safari/537.36',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '42.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '4.3.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'unknown',
'Device_Maker' => 'unknown',
'Device_Type' => 'unknown',
'Device_Pointing_Method' => 'unknown',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'unknown',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00430' => [
'ua' => 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; GTB7.5; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET4.0C; BRI/2; OfficeLiveConnector.1.5; OfficeLivePatch.1.3)',
'properties' => [
'Browser_Name' => 'Internet Explorer',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Microsoft Corporation',
'Browser_Modus' => 'unknown',
'Browser_Version' => '7.0',
'Platform_Codename' => 'Windows NT 6.0',
'Platform_Marketingname' => 'Windows Vista',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'unknown',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'unknown',
],
],
'test-00036-00431' => [
'ua' => 'Mozilla/5.0 (Linux; Android 4.4.2; Archos 50b Neon Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.111 Mobile Safari/537.36',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '42.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '4.4.2',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'unknown',
'Device_Maker' => 'unknown',
'Device_Type' => 'unknown',
'Device_Pointing_Method' => 'unknown',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'unknown',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00432' => [
'ua' => 'Mozilla/5.0 (Linux; Android 5.0.1; GT-I9505 Build/LRX22C) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/40.0.0.0 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/31.0.0.20.13;]',
'properties' => [
'Browser_Name' => 'Facebook App',
'Browser_Type' => 'Application',
'Browser_Bits' => 32,
'Browser_Maker' => 'Facebook',
'Browser_Modus' => 'unknown',
'Browser_Version' => '31.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '5.0.1',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'Galaxy S4',
'Device_Maker' => 'Samsung',
'Device_Type' => 'Mobile Phone',
'Device_Pointing_Method' => 'touchscreen',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'GT-I9505',
'Device_Brand_Name' => 'Samsung',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00433' => [
'ua' => 'Mozilla/5.0 (Linux; Android 4.4.2; ro-ro; SAMSUNG GT-I9301I/I9301IXXUANI1 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Version/1.5 Chrome/28.0.1500.94 Mobile Safari/537.36',
'properties' => [
'Browser_Name' => 'Android WebView',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '1.5',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '4.4.2',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'Galaxy S3 Neo Plus',
'Device_Maker' => 'Samsung',
'Device_Type' => 'Mobile Phone',
'Device_Pointing_Method' => 'touchscreen',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'GT-I9301I',
'Device_Brand_Name' => 'Samsung',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00434' => [
'ua' => 'Mozilla/5.0 (Windows NT 6.1; rv:37.0.2) Gecko/20100101 Firefox/37.0.2 anonymized by Abelssoft 673210219',
'properties' => [
'Browser_Name' => 'Firefox',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Mozilla Foundation',
'Browser_Modus' => 'unknown',
'Browser_Version' => '37.0',
'Platform_Codename' => 'Windows NT 6.1',
'Platform_Marketingname' => 'Windows 7',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Gecko',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Mozilla Foundation',
],
],
'test-00036-00435' => [
'ua' => 'Mozilla/5.0 (Windows; U; Windows NT 6.0; de; rv:1.9.2.25) Gecko/20111212 YFF35 Firefox/3.6.25 BLNGBAR',
'properties' => [
'Browser_Name' => 'Firefox',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Mozilla Foundation',
'Browser_Modus' => 'unknown',
'Browser_Version' => '3.6',
'Platform_Codename' => 'Windows NT 6.0',
'Platform_Marketingname' => 'Windows Vista',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Gecko',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Mozilla Foundation',
],
],
'test-00036-00436' => [
'ua' => 'Mozilla/5.0 (Linux; Android 4.2.2; Archos 101 Neon Build/JDQ39) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.111 Safari/537.36',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '42.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '4.2.2',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => '101 Neon',
'Device_Maker' => 'Archos',
'Device_Type' => 'Tablet',
'Device_Pointing_Method' => 'touchscreen',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => '101 Neon',
'Device_Brand_Name' => 'Archos',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00437' => [
'ua' => 'Mozilla/5.0 (Linux; Android 4.4.2; YOGA Tablet 2-1050L Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.111 Safari/537.36',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '42.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '4.4.2',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'Yoga Tablet 2 10.1 LTE',
'Device_Maker' => 'Lenovo',
'Device_Type' => 'FonePad',
'Device_Pointing_Method' => 'touchscreen',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => '1050L',
'Device_Brand_Name' => 'Lenovo',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00438' => [
'ua' => 'Mozilla/5.0 (Windows; U; Windows NT 6.1; de; rv:1.9.2.6) Gecko/20100625 Firefox/37.0.1 (x86 de) Anonymisiert durch AlMiSoft Browser-Anonymisierer 77205140',
'properties' => [
'Browser_Name' => 'Firefox',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Mozilla Foundation',
'Browser_Modus' => 'unknown',
'Browser_Version' => '37.0',
'Platform_Codename' => 'Windows NT 6.1',
'Platform_Marketingname' => 'Windows 7',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Gecko',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Mozilla Foundation',
],
],
'test-00036-00439' => [
'ua' => 'Mozilla/5.0 (Windows NT 5.1; WOW64; rv:34.0) Gecko/20100101 Firefox/34.0 DT-Browser/DTB7.34.0.19_06',
'properties' => [
'Browser_Name' => 'Firefox',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Mozilla Foundation',
'Browser_Modus' => 'unknown',
'Browser_Version' => '34.0',
'Platform_Codename' => 'Windows NT 5.1',
'Platform_Marketingname' => 'Windows XP',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 64,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Gecko',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Mozilla Foundation',
],
],
'test-00036-00440' => [
'ua' => 'Mozilla/5.0 (Linux; U; Android 4.2.2; de-de; GT-P5200 Build/JDQ39) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30 [Pinterest/Android]',
'properties' => [
'Browser_Name' => 'Android',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '4.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '4.2.2',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'Galaxy Tab 3 10.1 3G',
'Device_Maker' => 'Samsung',
'Device_Type' => 'FonePad',
'Device_Pointing_Method' => 'touchscreen',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'GT-P5200',
'Device_Brand_Name' => 'Samsung',
'RenderingEngine_Name' => 'WebKit',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Apple Inc',
],
],
'test-00036-00441' => [
'ua' => 'yacybot (/global; x86 Windows 7 6.1; java 1.8.0_45; Europe/de) http://yacy.net/bot.html',
'properties' => [
'Browser_Name' => 'Default Browser',
'Browser_Type' => 'unknown',
'Browser_Bits' => 32,
'Browser_Maker' => 'unknown',
'Browser_Modus' => 'unknown',
'Browser_Version' => '0.0',
'Platform_Codename' => 'Windows NT 6.1',
'Platform_Marketingname' => 'Windows 7',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'unknown',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'unknown',
],
],
'test-00036-00442' => [
'ua' => 'Mozilla/5.0 (Linux; Android 5.1; Nexus 5 Build/LMY47I) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2389.0 Mobile Safari/537.36',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '44.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '5.1.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'Nexus 5',
'Device_Maker' => 'LG',
'Device_Type' => 'Mobile Phone',
'Device_Pointing_Method' => 'touchscreen',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'Nexus 5',
'Device_Brand_Name' => 'Google',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00443' => [
'ua' => 'Mozilla/5.0 (Linux; U; Android 4.2.2; en-US; A1-810 Build/JDQ39) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 UCBrowser/10.4.1.565 U3/0.8.0 Mobile Safari/534.30',
'properties' => [
'Browser_Name' => 'UC Browser',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'UC Web',
'Browser_Modus' => 'unknown',
'Browser_Version' => '10.4',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '4.2.2',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'unknown',
'Device_Maker' => 'unknown',
'Device_Type' => 'unknown',
'Device_Pointing_Method' => 'unknown',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'unknown',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'U3',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'UC Web',
],
],
'test-00036-00444' => [
'ua' => 'Mozilla/4.0 (Windows; U; Windows NT 6.0; en-GB; rv:7.4.3) Gecko/20100824 Firefox/7.1',
'properties' => [
'Browser_Name' => 'Firefox',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Mozilla Foundation',
'Browser_Modus' => 'unknown',
'Browser_Version' => '7.1',
'Platform_Codename' => 'Windows NT 6.0',
'Platform_Marketingname' => 'Windows Vista',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Gecko',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Mozilla Foundation',
],
],
'test-00036-00445' => [
'ua' => 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.5; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0E; .NET4.0C; InfoPath.2; OfficeLiveConnector.1.5; OfficeLivePatch.1.3)',
'properties' => [
'Browser_Name' => 'Internet Explorer',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Microsoft Corporation',
'Browser_Modus' => 'unknown',
'Browser_Version' => '8.0',
'Platform_Codename' => 'Windows NT 5.1',
'Platform_Marketingname' => 'Windows XP',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Trident',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Microsoft Corporation',
],
],
'test-00036-00446' => [
'ua' => 'Mozilla/5.0 (Linux; Android 4.4.2; breeze 10.1 quad Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.111 Safari/537.36',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '42.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '4.4.2',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'unknown',
'Device_Maker' => 'unknown',
'Device_Type' => 'unknown',
'Device_Pointing_Method' => 'unknown',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'unknown',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00447' => [
'ua' => 'com.apple.WebKit.WebContent/10600.5.17 CFNetwork/720.4 Darwin/14.4.0 (x86_64)',
'properties' => [
'Browser_Name' => 'Default Browser',
'Browser_Type' => 'unknown',
'Browser_Bits' => 64,
'Browser_Maker' => 'unknown',
'Browser_Modus' => 'unknown',
'Browser_Version' => '0.0',
'Platform_Codename' => 'Mac OS X',
'Platform_Marketingname' => 'Mac OS X',
'Platform_Version' => '10.10.0',
'Platform_Bits' => 64,
'Platform_Maker' => 'Apple Inc',
'Platform_Brand_Name' => 'Apple',
'Device_Name' => 'Macintosh',
'Device_Maker' => 'Apple Inc',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Macintosh',
'Device_Brand_Name' => 'Apple',
'RenderingEngine_Name' => 'unknown',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'unknown',
],
],
'test-00036-00448' => [
'ua' => 'Mozilla/5.0 ;Windows NT 6.4; rv:35.0; Gecko/20100101 Firefox/35.0',
'properties' => [
'Browser_Name' => 'Firefox',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Mozilla Foundation',
'Browser_Modus' => 'unknown',
'Browser_Version' => '35.0',
'Platform_Codename' => 'Windows NT 6.4',
'Platform_Marketingname' => 'Windows 10',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Gecko',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Mozilla Foundation',
],
],
'test-00036-00449' => [
'ua' => 'Mozilla/5.0 (Linux; Android 4.4.4; SM-A500FU Build/KTU84P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.111 Mobile Safari/537.36',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '42.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '4.4.4',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'Galaxy A5 (Europe)',
'Device_Maker' => 'Samsung',
'Device_Type' => 'Mobile Phone',
'Device_Pointing_Method' => 'touchscreen',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'SM-A500FU',
'Device_Brand_Name' => 'Samsung',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00450' => [
'ua' => 'Mozilla/5.0 (Windows NT 6.1; rv:37.0.2) Gecko/20100101 Firefox/37.0.2 anonymized by Abelssoft 689290896',
'properties' => [
'Browser_Name' => 'Firefox',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Mozilla Foundation',
'Browser_Modus' => 'unknown',
'Browser_Version' => '37.0',
'Platform_Codename' => 'Windows NT 6.1',
'Platform_Marketingname' => 'Windows 7',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Gecko',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Mozilla Foundation',
],
],
'test-00036-00451' => [
'ua' => 'Mozilla/5.0 (Linux; U; Android 4.3; de-de; W858 Build/JLS36C) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30',
'properties' => [
'Browser_Name' => 'Android',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '4.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '4.3.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'unknown',
'Device_Maker' => 'unknown',
'Device_Type' => 'unknown',
'Device_Pointing_Method' => 'unknown',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'unknown',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'WebKit',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Apple Inc',
],
],
'test-00036-00452' => [
'ua' => 'Mozilla/5.0 (iPhone; CPU iPhone OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Mobile/11D257 [FBAN/FBIOS;FBAV/29.0.0.9.13;FBBV/9374459;FBDV/iPhone3,1;FBMD/iPhone;FBSN/iPhone OS;FBSV/7.1.2;FBSS/2; FBCR/Carrier;FBID/phone;FBLC/de_DE;FBOP/5]',
'properties' => [
'Browser_Name' => 'Facebook App',
'Browser_Type' => 'Application',
'Browser_Bits' => 32,
'Browser_Maker' => 'Facebook',
'Browser_Modus' => 'unknown',
'Browser_Version' => '29.0',
'Platform_Codename' => 'iOS',
'Platform_Marketingname' => 'iOS',
'Platform_Version' => '7.1.2',
'Platform_Bits' => 32,
'Platform_Maker' => 'Apple Inc',
'Platform_Brand_Name' => 'Apple',
'Device_Name' => 'iPhone',
'Device_Maker' => 'Apple Inc',
'Device_Type' => 'Mobile Phone',
'Device_Pointing_Method' => 'touchscreen',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'iPhone',
'Device_Brand_Name' => 'Apple',
'RenderingEngine_Name' => 'WebKit',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Apple Inc',
],
],
'test-00036-00453' => [
'ua' => 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; BRI/2; .NET4.0C; .NET4.0E; tb-webde/2.6.0; (webde/1.4.0.0))',
'properties' => [
'Browser_Name' => 'Internet Explorer',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Microsoft Corporation',
'Browser_Modus' => 'unknown',
'Browser_Version' => '8.0',
'Platform_Codename' => 'Windows NT 5.1',
'Platform_Marketingname' => 'Windows XP',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Trident',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Microsoft Corporation',
],
],
'test-00036-00454' => [
'ua' => 'Mozilla/5.0 (Linux; Android 4.4.2; LG-V700 Build/KOT49I.A1403851714) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.111 Safari/537.36',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '42.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '4.4.2',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'unknown',
'Device_Maker' => 'unknown',
'Device_Type' => 'unknown',
'Device_Pointing_Method' => 'unknown',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'unknown',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00455' => [
'ua' => 'Dalvik/2.1.0 (Linux; U; Android 5.1.1; A0001 Build/LMY47V)',
'properties' => [
'Browser_Name' => 'Default Browser',
'Browser_Type' => 'unknown',
'Browser_Bits' => 32,
'Browser_Maker' => 'unknown',
'Browser_Modus' => 'unknown',
'Browser_Version' => '0.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '5.1.1',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'unknown',
'Device_Maker' => 'unknown',
'Device_Type' => 'unknown',
'Device_Pointing_Method' => 'unknown',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'unknown',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'unknown',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'unknown',
],
],
'test-00036-00456' => [
'ua' => 'Mozilla/5.0 (Linux; Android 4.4.2; S50 Build/KVT49L) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.135 Mobile Safari/537.36',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '36.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '4.4.2',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'unknown',
'Device_Maker' => 'unknown',
'Device_Type' => 'unknown',
'Device_Pointing_Method' => 'unknown',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'unknown',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00457' => [
'ua' => 'Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.22 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.22 anonymized by Abelssoft 179179333',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '42.0',
'Platform_Codename' => 'Windows NT 6.2',
'Platform_Marketingname' => 'Windows 8',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00458' => [
'ua' => 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Sky Broadband; SV1; .NET4.0C; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 2.0.40607)',
'properties' => [
'Browser_Name' => 'Internet Explorer',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Microsoft Corporation',
'Browser_Modus' => 'unknown',
'Browser_Version' => '8.0',
'Platform_Codename' => 'Windows NT 5.1',
'Platform_Marketingname' => 'Windows XP',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Trident',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Microsoft Corporation',
],
],
'test-00036-00459' => [
'ua' => 'Mozilla/5.0 (Windows NT 6.1; Trident/7.0; tb-gmx/2.6.2; (gmx/1.4.0.0); rv:11.0) like Gecko',
'properties' => [
'Browser_Name' => 'Default Browser',
'Browser_Type' => 'unknown',
'Browser_Bits' => 32,
'Browser_Maker' => 'unknown',
'Browser_Modus' => 'unknown',
'Browser_Version' => '0.0',
'Platform_Codename' => 'Windows NT 6.1',
'Platform_Marketingname' => 'Windows 7',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Trident',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Microsoft Corporation',
],
],
'test-00036-00460' => [
'ua' => 'Mozilla/5.0 (Linux; Android 5.0.1; GT-I9506 Build/LRX22C) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.111 Mobile Safari/537.36',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '42.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '5.0.1',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'Galaxy S4 LTE+',
'Device_Maker' => 'Samsung',
'Device_Type' => 'Mobile Phone',
'Device_Pointing_Method' => 'touchscreen',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'GT-I9506',
'Device_Brand_Name' => 'Samsung',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00461' => [
'ua' => 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0;WUID=CC1F93AB28E6430CA1399B24DA09D35D;WTB=3772) like Gecko',
'properties' => [
'Browser_Name' => 'Default Browser',
'Browser_Type' => 'unknown',
'Browser_Bits' => 32,
'Browser_Maker' => 'unknown',
'Browser_Modus' => 'unknown',
'Browser_Version' => '0.0',
'Platform_Codename' => 'Windows NT 6.1',
'Platform_Marketingname' => 'Windows 7',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 64,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Trident',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Microsoft Corporation',
],
],
'test-00036-00462' => [
'ua' => 'Mozilla/5.0 (Linux; Android 5.0.2; XT1068 Build/LXB22.46-28.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.111 Mobile Safari/537.36',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '42.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '5.0.2',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'Moto G Dual SIM (2nd gen)',
'Device_Maker' => 'Motorola',
'Device_Type' => 'Mobile Phone',
'Device_Pointing_Method' => 'touchscreen',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'XT1068',
'Device_Brand_Name' => 'Motorola',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00463' => [
'ua' => 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; BTRS101478; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET4.0C; InfoPath.2; .NET4.0E; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; .NET CLR 3.0.30618)',
'properties' => [
'Browser_Name' => 'Internet Explorer',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Microsoft Corporation',
'Browser_Modus' => 'unknown',
'Browser_Version' => '8.0',
'Platform_Codename' => 'Windows NT 6.0',
'Platform_Marketingname' => 'Windows Vista',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Trident',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Microsoft Corporation',
],
],
'test-00036-00464' => [
'ua' => 'Mozilla/5.0 (Linux; Android 4.4.2; LIFETAB_S785X Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/30.0.0.0 Safari/537.36 [FB_IAB/FB4A;FBAV/32.0.0.23.15;]',
'properties' => [
'Browser_Name' => 'Facebook App',
'Browser_Type' => 'Application',
'Browser_Bits' => 32,
'Browser_Maker' => 'Facebook',
'Browser_Modus' => 'unknown',
'Browser_Version' => '32.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '4.4.2',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'LifeTab S785X',
'Device_Maker' => 'Lenovo',
'Device_Type' => 'Tablet',
'Device_Pointing_Method' => 'touchscreen',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'LifeTab S785X',
'Device_Brand_Name' => 'Lenovo',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00465' => [
'ua' => 'Mozilla/5.0 (Linux; Android 4.4.2; K00Z Build/KVT49L) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.111 Safari/537.36',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '42.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '4.4.2',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'unknown',
'Device_Maker' => 'unknown',
'Device_Type' => 'unknown',
'Device_Pointing_Method' => 'unknown',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'unknown',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00466' => [
'ua' => 'Mozilla/5.0 (Linux; Android 5.1; Nexus 6 Build/LMY47D) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.111 Mobile Safari/537.36',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '42.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '5.1.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'Nexus 6',
'Device_Maker' => 'Motorola',
'Device_Type' => 'Mobile Phone',
'Device_Pointing_Method' => 'touchscreen',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'Nexus 6',
'Device_Brand_Name' => 'Google',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00467' => [
'ua' => 'Mozilla/5.0 (Linux; Android 4.4.2; MEDION E4502 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.111 Mobile Safari/537.36',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '42.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '4.4.2',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'Life E4502',
'Device_Maker' => 'Medion',
'Device_Type' => 'Mobile Phone',
'Device_Pointing_Method' => 'touchscreen',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'Life E4502',
'Device_Brand_Name' => 'Medion',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00468' => [
'ua' => 'Mozilla/5.0 (Linux; U; Android 4.0.3; de-ch; GT-P5100 Build/IML74K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30',
'properties' => [
'Browser_Name' => 'Android',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '4.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '4.0.3',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'Galaxy Tab 2 10.1',
'Device_Maker' => 'Samsung',
'Device_Type' => 'Tablet',
'Device_Pointing_Method' => 'touchscreen',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'GT-P5100',
'Device_Brand_Name' => 'Samsung',
'RenderingEngine_Name' => 'WebKit',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Apple Inc',
],
],
'test-00036-00469' => [
'ua' => 'Mozilla/5.0 (Windows; U; Windows NT 6.1; de) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/41.0.2272.118 Chrome anonymized by Abelssoft 141657755',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '41.0',
'Platform_Codename' => 'Windows NT 6.1',
'Platform_Marketingname' => 'Windows 7',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00470' => [
'ua' => 'Mozilla/5.0 (Linux; Android 4.4.2; HIGHWAY SIGNS Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.111 Mobile Safari/537.36',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '42.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '4.4.2',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'unknown',
'Device_Maker' => 'unknown',
'Device_Type' => 'unknown',
'Device_Pointing_Method' => 'unknown',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'unknown',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00471' => [
'ua' => 'Opera%20Coast/4.21.91399 CFNetwork/711.3.18 Darwin/14.0.0',
'properties' => [
'Browser_Name' => 'Opera',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Opera Software ASA',
'Browser_Modus' => 'unknown',
'Browser_Version' => '0.0',
'Platform_Codename' => 'iOS',
'Platform_Marketingname' => 'iOS',
'Platform_Version' => '8.3.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Apple Inc',
'Platform_Brand_Name' => 'Apple',
'Device_Name' => 'general Apple Device',
'Device_Maker' => 'Apple Inc',
'Device_Type' => 'Mobile Device',
'Device_Pointing_Method' => 'touchscreen',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'general Apple Device',
'Device_Brand_Name' => 'Apple',
'RenderingEngine_Name' => 'unknown',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'unknown',
],
],
'test-00036-00472' => [
'ua' => 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET4.0C; .NET CLR 3.5.30729; .NET CLR 3.0.30729)',
'properties' => [
'Browser_Name' => 'Internet Explorer',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Microsoft Corporation',
'Browser_Modus' => 'unknown',
'Browser_Version' => '7.0',
'Platform_Codename' => 'Windows NT 6.0',
'Platform_Marketingname' => 'Windows Vista',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 64,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'unknown',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'unknown',
],
],
'test-00036-00473' => [
'ua' => 'Mozilla/5.0 (Linux; Android 4.2.2; VT10416-2 Build/JDQ39) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.111 Safari/537.36',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '42.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '4.2.2',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'unknown',
'Device_Maker' => 'unknown',
'Device_Type' => 'unknown',
'Device_Pointing_Method' => 'unknown',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'unknown',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00474' => [
'ua' => 'Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36,gzip(gfe)',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '37.0',
'Platform_Codename' => 'Windows NT 6.3',
'Platform_Marketingname' => 'Windows 8.1',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 64,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00475' => [
'ua' => 'Mozilla/5.0 (X11; CrOS i686 6812.83.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.134 Safari/537.36',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '42.0',
'Platform_Codename' => 'ChromeOS',
'Platform_Marketingname' => 'ChromeOS',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'unknown',
'Device_Maker' => 'unknown',
'Device_Type' => 'unknown',
'Device_Pointing_Method' => 'unknown',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'unknown',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00476' => [
'ua' => 'Mozilla/5.0 (X11; Linux x86_64; rv:2.0) Gecko/20110321 Firefox/4.0',
'properties' => [
'Browser_Name' => 'Firefox',
'Browser_Type' => 'Browser',
'Browser_Bits' => 64,
'Browser_Maker' => 'Mozilla Foundation',
'Browser_Modus' => 'unknown',
'Browser_Version' => '4.0',
'Platform_Codename' => 'Linux',
'Platform_Marketingname' => 'Linux',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 64,
'Platform_Maker' => 'Linux Foundation',
'Platform_Brand_Name' => 'Linux Foundation',
'Device_Name' => 'Linux Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Linux Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Gecko',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Mozilla Foundation',
],
],
'test-00036-00477' => [
'ua' => 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10,gzip(gfe) (via translate.google.com)',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '8.0',
'Platform_Codename' => 'Windows NT 5.1',
'Platform_Marketingname' => 'Windows XP',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'WebKit',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Apple Inc',
],
],
'test-00036-00478' => [
'ua' => 'Mozilla/5.0 (Windows; U; Windows NT 6.0; de; rv:1.9.1.1) Gecko/20090715 Firefox/3.5.1 (.NET CLR 3.5.30729)',
'properties' => [
'Browser_Name' => 'Firefox',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Mozilla Foundation',
'Browser_Modus' => 'unknown',
'Browser_Version' => '3.5',
'Platform_Codename' => 'Windows NT 6.0',
'Platform_Marketingname' => 'Windows Vista',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Gecko',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Mozilla Foundation',
],
],
'test-00036-00479' => [
'ua' => 'Mozilla/5.0 (X11; U; Linux i686; de; rv:1.9.0.1) Gecko/2008070400 Firefox/3.0.1',
'properties' => [
'Browser_Name' => 'Firefox',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Mozilla Foundation',
'Browser_Modus' => 'unknown',
'Browser_Version' => '3.0',
'Platform_Codename' => 'Linux',
'Platform_Marketingname' => 'Linux',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Linux Foundation',
'Platform_Brand_Name' => 'Linux Foundation',
'Device_Name' => 'Linux Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Linux Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Gecko',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Mozilla Foundation',
],
],
'test-00036-00480' => [
'ua' => 'Mozilla/5.0 (Linux; Android 4.1.2; GT-P3110 Build/JZO54K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.111 Safari/537.36',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '42.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '4.1.2',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'Galaxy Tab 2 7.0',
'Device_Maker' => 'Samsung',
'Device_Type' => 'Tablet',
'Device_Pointing_Method' => 'touchscreen',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'GT-P3110',
'Device_Brand_Name' => 'Samsung',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00481' => [
'ua' => 'Mozilla/5.0 (iPad; CPU OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Mobile/11D257 [FBAN/FBIOS;FBAV/29.0.0.9.13;FBBV/9374459;FBDV/iPad3,6;FBMD/iPad;FBSN/iPhone OS;FBSV/7.1.2;FBSS/2; FBCR/Carrier;FBID/tablet;FBLC/de_DE;FBOP/1]',
'properties' => [
'Browser_Name' => 'Facebook App',
'Browser_Type' => 'Application',
'Browser_Bits' => 32,
'Browser_Maker' => 'Facebook',
'Browser_Modus' => 'unknown',
'Browser_Version' => '29.0',
'Platform_Codename' => 'iOS',
'Platform_Marketingname' => 'iOS',
'Platform_Version' => '7.1.2',
'Platform_Bits' => 32,
'Platform_Maker' => 'Apple Inc',
'Platform_Brand_Name' => 'Apple',
'Device_Name' => 'iPad',
'Device_Maker' => 'Apple Inc',
'Device_Type' => 'Tablet',
'Device_Pointing_Method' => 'touchscreen',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'iPad',
'Device_Brand_Name' => 'Apple',
'RenderingEngine_Name' => 'WebKit',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Apple Inc',
],
],
'test-00036-00482' => [
'ua' => 'Mozilla/5.0 (Linux; U; Android 4.2.2; de-de; GT-P5200 Build/JDQ39) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30 [FB_IAB/FB4A;FBAV/31.0.0.20.13;]',
'properties' => [
'Browser_Name' => 'Facebook App',
'Browser_Type' => 'Application',
'Browser_Bits' => 32,
'Browser_Maker' => 'Facebook',
'Browser_Modus' => 'unknown',
'Browser_Version' => '31.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '4.2.2',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'Galaxy Tab 3 10.1 3G',
'Device_Maker' => 'Samsung',
'Device_Type' => 'FonePad',
'Device_Pointing_Method' => 'touchscreen',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'GT-P5200',
'Device_Brand_Name' => 'Samsung',
'RenderingEngine_Name' => 'WebKit',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Apple Inc',
],
],
'test-00036-00483' => [
'ua' => 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; InfoPath.3)',
'properties' => [
'Browser_Name' => 'Internet Explorer',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Microsoft Corporation',
'Browser_Modus' => 'unknown',
'Browser_Version' => '7.0',
'Platform_Codename' => 'Windows NT 5.1',
'Platform_Marketingname' => 'Windows XP',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Trident',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Microsoft Corporation',
],
],
'test-00036-00484' => [
'ua' => 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; InfoPath.3)',
'properties' => [
'Browser_Name' => 'Internet Explorer',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Microsoft Corporation',
'Browser_Modus' => 'unknown',
'Browser_Version' => '8.0',
'Platform_Codename' => 'Windows NT 5.1',
'Platform_Marketingname' => 'Windows XP',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Trident',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Microsoft Corporation',
],
],
'test-00036-00485' => [
'ua' => 'Mozilla/5.0 (Linux; Android 4.4.2; GT-I9195 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/30.0.0.0 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/32.0.0.23.15;]',
'properties' => [
'Browser_Name' => 'Facebook App',
'Browser_Type' => 'Application',
'Browser_Bits' => 32,
'Browser_Maker' => 'Facebook',
'Browser_Modus' => 'unknown',
'Browser_Version' => '32.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '4.4.2',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'Galaxy S4 Mini',
'Device_Maker' => 'Samsung',
'Device_Type' => 'Mobile Phone',
'Device_Pointing_Method' => 'touchscreen',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'GT-I9195',
'Device_Brand_Name' => 'Samsung',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00486' => [
'ua' => 'yacybot (/global; amd64 Linux 3.2.0-4-amd64; java 1.7.0_79; Europe/en) http://yacy.net/bot.html',
'properties' => [
'Browser_Name' => 'Default Browser',
'Browser_Type' => 'unknown',
'Browser_Bits' => 32,
'Browser_Maker' => 'unknown',
'Browser_Modus' => 'unknown',
'Browser_Version' => '0.0',
'Platform_Codename' => 'Linux',
'Platform_Marketingname' => 'Linux',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 64,
'Platform_Maker' => 'Linux Foundation',
'Platform_Brand_Name' => 'Linux Foundation',
'Device_Name' => 'Linux Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Linux Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'unknown',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'unknown',
],
],
'test-00036-00487' => [
'ua' => 'Opera/9.80 (J2ME/MIDP; Opera Mini/5.351/25.729; U; en) Presto/2.5.25 Version/10.54',
'properties' => [
'Browser_Name' => 'Opera',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Opera Software ASA',
'Browser_Modus' => 'unknown',
'Browser_Version' => '10.54',
'Platform_Codename' => 'Java',
'Platform_Marketingname' => 'Java',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Oracle',
'Platform_Brand_Name' => 'Oracle',
'Device_Name' => 'unknown',
'Device_Maker' => 'unknown',
'Device_Type' => 'unknown',
'Device_Pointing_Method' => 'unknown',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'unknown',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Presto',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Opera Software ASA',
],
],
'test-00036-00488' => [
'ua' => 'Mozilla/5.0 (Windows; U; Windows NT 6.0; de; rv:1.9.2.3) Gecko/20100401 Firefox/3.6 (de) ( .NET CLR 3.5.30729)',
'properties' => [
'Browser_Name' => 'Firefox',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Mozilla Foundation',
'Browser_Modus' => 'unknown',
'Browser_Version' => '3.6',
'Platform_Codename' => 'Windows NT 6.0',
'Platform_Marketingname' => 'Windows Vista',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Gecko',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Mozilla Foundation',
],
],
'test-00036-00489' => [
'ua' => 'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.549.0 Safari/534.10',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '8.0',
'Platform_Codename' => 'Windows NT 6.1',
'Platform_Marketingname' => 'Windows 7',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'WebKit',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Apple Inc',
],
],
'test-00036-00490' => [
'ua' => 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/15.0.861.0 Safari/535.2',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '15.0',
'Platform_Codename' => 'Windows NT 6.1',
'Platform_Marketingname' => 'Windows 7',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 64,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'WebKit',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Apple Inc',
],
],
'test-00036-00491' => [
'ua' => 'Mozilla/5.0 (X11; U; Linux i686; de; rv:1.9.0.8) Gecko/2009042111 Gentoo Firefox/3.0.8',
'properties' => [
'Browser_Name' => 'Firefox',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Mozilla Foundation',
'Browser_Modus' => 'unknown',
'Browser_Version' => '3.0',
'Platform_Codename' => 'Gentoo Linux',
'Platform_Marketingname' => 'Gentoo Linux',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Gentoo Foundation Inc',
'Platform_Brand_Name' => 'Gentoo',
'Device_Name' => 'Linux Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Linux Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Gecko',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Mozilla Foundation',
],
],
'test-00036-00492' => [
'ua' => 'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.16) Gecko/20101130 AlexaToolbar/alxf-2.01 Firefox/3.5.16',
'properties' => [
'Browser_Name' => 'Firefox',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Mozilla Foundation',
'Browser_Modus' => 'unknown',
'Browser_Version' => '3.5',
'Platform_Codename' => 'Windows NT 6.1',
'Platform_Marketingname' => 'Windows 7',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Gecko',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Mozilla Foundation',
],
],
'test-00036-00493' => [
'ua' => 'Mozilla/5.0 (compatible; Konqueror/3.4; Linux 2.6.14-kanotix-9; X11)',
'properties' => [
'Browser_Name' => 'Konqueror',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'unknown',
'Browser_Modus' => 'unknown',
'Browser_Version' => '3.4',
'Platform_Codename' => 'Linux',
'Platform_Marketingname' => 'Linux',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Linux Foundation',
'Platform_Brand_Name' => 'Linux Foundation',
'Device_Name' => 'Linux Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Linux Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'unknown',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'unknown',
],
],
'test-00036-00494' => [
'ua' => 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.4 (KHTML, like Gecko) Chrome/16.0.890.0 Safari/535.4',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '16.0',
'Platform_Codename' => 'Windows NT 6.1',
'Platform_Marketingname' => 'Windows 7',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 64,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'WebKit',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Apple Inc',
],
],
'test-00036-00495' => [
'ua' => 'Mozilla/5.0 (Windows; U; Windows NT 5.0; de; rv:1.9.0.7) Gecko/2009021910 Firefox/3.0.7',
'properties' => [
'Browser_Name' => 'Firefox',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Mozilla Foundation',
'Browser_Modus' => 'unknown',
'Browser_Version' => '3.0',
'Platform_Codename' => 'Windows NT 5.0',
'Platform_Marketingname' => 'Windows 2000',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Gecko',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Mozilla Foundation',
],
],
'test-00036-00496' => [
'ua' => 'Mozilla/5.0 (X11; Linux i686; rv:5.0a2) Gecko/20110423 Firefox/5.0a2',
'properties' => [
'Browser_Name' => 'Firefox',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Mozilla Foundation',
'Browser_Modus' => 'unknown',
'Browser_Version' => '5.0',
'Platform_Codename' => 'Linux',
'Platform_Marketingname' => 'Linux',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Linux Foundation',
'Platform_Brand_Name' => 'Linux Foundation',
'Device_Name' => 'Linux Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Linux Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Gecko',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Mozilla Foundation',
],
],
'test-00036-00497' => [
'ua' => 'Mozilla/4.0 (compatible; MSIE 7.0; America Online Browser 1.1; rev1.5; Windows NT 5.1; .NET CLR 2.0.50727; ZangoToolbar 4.8.2)',
'properties' => [
'Browser_Name' => 'Internet Explorer',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Microsoft Corporation',
'Browser_Modus' => 'unknown',
'Browser_Version' => '7.0',
'Platform_Codename' => 'Windows NT 5.1',
'Platform_Marketingname' => 'Windows XP',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'unknown',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'unknown',
],
],
'test-00036-00498' => [
'ua' => 'Mozilla/5.0 (Linux; Android 4.2.2; b1-721 Build/JDQ39) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.111 Safari/537.36',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '42.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '4.2.2',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'unknown',
'Device_Maker' => 'unknown',
'Device_Type' => 'unknown',
'Device_Pointing_Method' => 'unknown',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'unknown',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00499' => [
'ua' => 'Mozilla/5.0 (Linux; Android 4.3; ME302C Build/JSS15Q) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.111 Safari/537.36',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '42.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '4.3.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'Memo Pad FHD 10',
'Device_Maker' => 'Asus',
'Device_Type' => 'Tablet',
'Device_Pointing_Method' => 'touchscreen',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'ME302C',
'Device_Brand_Name' => 'Asus',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00500' => [
'ua' => 'Mozilla/5.0 (Linux; Android 4.4.4; Archos 101 Oxygen Build/KTU84Q) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/33.0.0.0 Safari/537.36',
'properties' => [
'Browser_Name' => 'Android WebView',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '4.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '4.4.4',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'unknown',
'Device_Maker' => 'unknown',
'Device_Type' => 'unknown',
'Device_Pointing_Method' => 'unknown',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'unknown',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00501' => [
'ua' => 'Mozilla/5.0 (Linux; Android 4.4.4; Archos 101 Oxygen Build/KTU84Q) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/33.0.0.0 Safari/537.36 [FB_IAB/FB4A;FBAV/32.0.0.23.15;]',
'properties' => [
'Browser_Name' => 'Facebook App',
'Browser_Type' => 'Application',
'Browser_Bits' => 32,
'Browser_Maker' => 'Facebook',
'Browser_Modus' => 'unknown',
'Browser_Version' => '32.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '4.4.4',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'unknown',
'Device_Maker' => 'unknown',
'Device_Type' => 'unknown',
'Device_Pointing_Method' => 'unknown',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'unknown',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00502' => [
'ua' => 'Mozilla/4.0 (compatible; MSIE 7.0; AOL 9.0; Windows NT 6.0; Trident/5.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; .NET4.0C; .NET4.0E)',
'properties' => [
'Browser_Name' => 'Internet Explorer',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Microsoft Corporation',
'Browser_Modus' => 'unknown',
'Browser_Version' => '7.0',
'Platform_Codename' => 'Windows NT 6.0',
'Platform_Marketingname' => 'Windows Vista',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 32,
'Platform_Maker' => 'Microsoft Corporation',
'Platform_Brand_Name' => 'Microsoft',
'Device_Name' => 'Windows Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Windows Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Trident',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Microsoft Corporation',
],
],
'test-00036-00503' => [
'ua' => 'Mozilla/5.0 (Linux; Android 4.2.2; tolino tab 8.9 Build/JDQ39) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.111 Safari/537.36',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 32,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '42.0',
'Platform_Codename' => 'Android',
'Platform_Marketingname' => 'Android',
'Platform_Version' => '4.2.2',
'Platform_Bits' => 32,
'Platform_Maker' => 'Google Inc',
'Platform_Brand_Name' => 'Google',
'Device_Name' => 'Tab 8.9',
'Device_Maker' => 'Tolino',
'Device_Type' => 'Tablet',
'Device_Pointing_Method' => 'touchscreen',
'Device_Dual_Orientation' => true,
'Device_Code_Name' => 'Tab 8.9',
'Device_Brand_Name' => 'Tolino',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
'test-00036-00504' => [
'ua' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.111 Safari/537.36',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' => 'Browser',
'Browser_Bits' => 64,
'Browser_Maker' => 'Google Inc',
'Browser_Modus' => 'unknown',
'Browser_Version' => '42.0',
'Platform_Codename' => 'Linux',
'Platform_Marketingname' => 'Linux',
'Platform_Version' => '0.0.0',
'Platform_Bits' => 64,
'Platform_Maker' => 'Linux Foundation',
'Platform_Brand_Name' => 'Linux Foundation',
'Device_Name' => 'Linux Desktop',
'Device_Maker' => 'unknown',
'Device_Type' => 'Desktop',
'Device_Pointing_Method' => 'mouse',
'Device_Dual_Orientation' => false,
'Device_Code_Name' => 'Linux Desktop',
'Device_Brand_Name' => 'unknown',
'RenderingEngine_Name' => 'Blink',
'RenderingEngine_Version' => 'unknown',
'RenderingEngine_Maker' => 'Google Inc',
],
],
];
|
<?php
namespace App\Http\Livewire;
use App\Models\Site;
use App\Valet\Valet;
use Livewire\Component;
use Livewire\WithPagination;
class Sites extends Component
{
use WithPagination;
protected $paginationTheme = 'bootstrap';
public $project_path;
public $project_name;
public $onLatestVerision;
public $logs = [];
public $logFileLines;
private $logFilePath;
public $logPerNum = 5;
public $info = [];
public $valetSites = [];
public function render()
{
return view('livewire.sites', [
'sites' => Site::paginate(10)
]);
}
public function toggleSecure($id)
{
$site = Site::find($id);
if ($site) {
$valet = new Valet();
$site->secured ? $valet->unSecure($site->name) : $valet->secure($site->name);
$site->update(['secured' => !$site->secured]);
}
}
public function unlink($id)
{
$site = Site::find($id);
if ($site) {
$valet = new Valet();
$valet->unlink($site->name);
}
}
public function link()
{
if (empty($this->project_name)) {
$this->project_name = null;
}
(new Valet())->link($this->project_path, $this->project_name)->save();
}
public function checkForUpdate()
{
$this->onLatestVerision = (new Valet())->onLatestVerision();
}
public function sync()
{
Site::refreshAll();
}
public function clear()
{
Site::truncate();
}
public function showLogs()
{
if ($this->logs) {
$this->logs = [];
return;
}
$this->logs = (new Valet())->logs();
}
public function showLog($path, $skip = 0)
{
$this->logFilePath = $path;
$this->logFileLines = (new Valet())->loadLogFile($this->logFilePath, $this->logPerNum, $skip)->toArray();
}
public function run()
{
if ($this->info) {
$this->info = [];
return;
}
$this->info = (new Valet())->run();
}
public function showValetsites()
{
if ($this->valetSites) {
$this->valetSites = [];
return;
}
$this->valetSites = (new Valet())->allSites();
}
}
|
<?php
namespace App\Models;
use Illuminate\Notifications\Notifiable;
use Illuminate\Foundation\Auth\User as Authenticatable;
class Pasien extends Authenticatable
{
use Notifiable;
protected $fillable = [
'nomor','nama','username','password','lp','kota','foto','alamat_pasien','gol_darah','hp_pasien','pekerjaan','agama','nama_wali','hp_wali','alamat_wali'
];
protected $hidden = [
'password', 'remember_token',
];
protected $casts = [
];
public function daftarperiksa()
{
return $this->hasMany(DaftarPeriksa::class, 'pasien_id', 'id');
}
public function riwayatpasien()
{
return $this->hasMany(RiwayatPasien::class, 'pasien_id', 'id');
}
public function alatterpasang()
{
return $this->hasMany(AlatTerpasang::class, 'pasien_id', 'id');
}
public function observasilanjutan()
{
return $this->hasMany(ObservasiLanjutan::class, 'pasien_id', 'id');
}
public function pemberianobat()
{
return $this->hasMany(PemberianObat::class, 'pasien_id', 'id');
}
public function tindakankeperawatan()
{
return $this->hasMany(TindakanKeperawatan::class, 'pasien_id', 'id');
}
}
|
End of preview. Expand
in Data Studio
- Downloads last month
- 15