diff --git a/CHANGE_LOG.MD b/CHANGE_LOG.MD index 2bad94c..3ea4bb9 100644 --- a/CHANGE_LOG.MD +++ b/CHANGE_LOG.MD @@ -1,3 +1,7 @@ +## [5.0.1](https://github.com/KoderLabs/ngx-device-detector/compare/v5.0.0...v5.0.1) (2023-01-20) + + + # [5.0.0](https://github.com/KoderLabs/ngx-device-detector/compare/v4.0.0...v5.0.0) (2023-01-20) diff --git a/docs/components/AppComponent.html b/docs/components/AppComponent.html index 9f78530..765668f 100644 --- a/docs/components/AppComponent.html +++ b/docs/components/AppComponent.html @@ -676,6 +676,9 @@ <h3 id="accessors"> <img src="assets/images/github-logo.png" /> </a> <div class="demo-heading"> + <div style="text-align: center; width: 100%"> + <img src="https://raw.githubusercontent.com/KoderLabs/ngx-device-detector/master/assets/logo.svg" width="200"> + </div> <a href="https://github.com/Koderlabs/ngx-device-detector"> <h1 align="center" class="demo-heading-text">ngx-device-detector</h1> </a> @@ -853,7 +856,7 @@ <h3 id="accessors"> <script src="../js/libs/htmlparser.js"></script> <script src="../js/libs/deep-iterator.js"></script> <script> - var COMPONENT_TEMPLATE = '<div><div id="demoApp" class="container"> <div class="demo-container"> <a class="github-logo" href="https://github.com/Koderlabs/ngx-device-detector"> <img src="assets/images/github-logo.png" /> </a> <div class="demo-heading"> <a href="https://github.com/Koderlabs/ngx-device-detector"> <h1 align="center" class="demo-heading-text">ngx-device-detector</h1> </a> <p align="center"> An Angular 5+ powered AOT compatible device detector that helps to identify browser, os and other useful information regarding the device using the app. The processing is based on user-agent. </p> <p align="center" class="badges"> <a href="https://travis-ci.org/KoderLabs/ngx-device-detector" ><img src="http://img.shields.io/travis/KoderLabs/ngx-device-detector.svg?style=flat" alt="travis build status" /></a> <a href="https://www.npmjs.com/package/ngx-device-detector" ><img src="https://img.shields.io/npm/v/ngx-device-detector.svg" alt="npm version" /></a> <a href="https://www.npmjs.com/package/ngx-device-detector" ><img src="https://img.shields.io/github/stars/KoderLabs/ngx-device-detector.svg?style=social&label=Star&style=flat-square" alt="github stars" /></a> <a href="https://www.npmjs.com/package/ngx-device-detector" ><img src="https://img.shields.io/npm/l/ngx-device-detector.svg?style=flat-square" alt="license" /></a> </p> <hr /> </div> <div class="demo-message text-center">Demo is at Angular version = {{ version }}</div> <div class="demo-message"> <p class="text-center">Open this page from different devices to see the appropriate details</p> <h4 class="text-center">Device Information</h4> </div> <div class="user-agent"> <div class="user-agent__input"> <div class="form-group"> <label for="userAgentInput">Test User Agent</label> <input class="form-control" id="userAgentInput" #userAgentInput type="text" placeholder="" /> <small id="uaHelp" class="form-text text-muted">Paste the user agent (window.navigator.userAgent) here</small> </div> </div> <div class="user-agent__buttons"> <button class="btn btn-primary btn-sm" (click)="applyDevice(userAgentInput.value)"> Apply test user agent </button> <button class="btn btn-warning btn-sm" (click)="resetDeviceInfo()">Reset device info</button> </div> </div> <div class="information-table"> <div class="device-icon"> <div class="fa" [ngClass]="{ \'fa-desktop\': isDesktop, \'fa-mobile\': isMobile, \'fa-tablet\': isTablet }"></div> <div class="device-text" *ngIf="isMobile">Mobile</div> <div class="device-text" *ngIf="isTablet">Tablet</div> <div class="device-text" *ngIf="isDesktop">Desktop</div> </div> <table class="table table-hover"> <tr> <th>Property</th> <th>Value</th> </tr> <tr *ngFor="let info of deviceInfo | keys : propsToShow" class="info-item w3-hover-blue"> <td>{{ info.key }}</td> <td>{{ info.value }}</td> </tr> <tr class="info-item w3-hover-blue"> <td>isDesktop()</td> <td>{{ isDesktop }}</td> </tr> <tr class="info-item w3-hover-blue"> <td>isMobile()</td> <td>{{ isMobile }}</td> </tr> <tr class="info-item w3-hover-blue"> <td>isTablet()</td> <td>{{ isTablet }}</td> </tr> </table> </div> </div></div></div>' + var COMPONENT_TEMPLATE = '<div><div id="demoApp" class="container"> <div class="demo-container"> <a class="github-logo" href="https://github.com/Koderlabs/ngx-device-detector"> <img src="assets/images/github-logo.png" /> </a> <div class="demo-heading"> <div style="text-align: center; width: 100%"> <img src="https://raw.githubusercontent.com/KoderLabs/ngx-device-detector/master/assets/logo.svg" width="200"> </div> <a href="https://github.com/Koderlabs/ngx-device-detector"> <h1 align="center" class="demo-heading-text">ngx-device-detector</h1> </a> <p align="center"> An Angular 5+ powered AOT compatible device detector that helps to identify browser, os and other useful information regarding the device using the app. The processing is based on user-agent. </p> <p align="center" class="badges"> <a href="https://travis-ci.org/KoderLabs/ngx-device-detector" ><img src="http://img.shields.io/travis/KoderLabs/ngx-device-detector.svg?style=flat" alt="travis build status" /></a> <a href="https://www.npmjs.com/package/ngx-device-detector" ><img src="https://img.shields.io/npm/v/ngx-device-detector.svg" alt="npm version" /></a> <a href="https://www.npmjs.com/package/ngx-device-detector" ><img src="https://img.shields.io/github/stars/KoderLabs/ngx-device-detector.svg?style=social&label=Star&style=flat-square" alt="github stars" /></a> <a href="https://www.npmjs.com/package/ngx-device-detector" ><img src="https://img.shields.io/npm/l/ngx-device-detector.svg?style=flat-square" alt="license" /></a> </p> <hr /> </div> <div class="demo-message text-center">Demo is at Angular version = {{ version }}</div> <div class="demo-message"> <p class="text-center">Open this page from different devices to see the appropriate details</p> <h4 class="text-center">Device Information</h4> </div> <div class="user-agent"> <div class="user-agent__input"> <div class="form-group"> <label for="userAgentInput">Test User Agent</label> <input class="form-control" id="userAgentInput" #userAgentInput type="text" placeholder="" /> <small id="uaHelp" class="form-text text-muted">Paste the user agent (window.navigator.userAgent) here</small> </div> </div> <div class="user-agent__buttons"> <button class="btn btn-primary btn-sm" (click)="applyDevice(userAgentInput.value)"> Apply test user agent </button> <button class="btn btn-warning btn-sm" (click)="resetDeviceInfo()">Reset device info</button> </div> </div> <div class="information-table"> <div class="device-icon"> <div class="fa" [ngClass]="{ \'fa-desktop\': isDesktop, \'fa-mobile\': isMobile, \'fa-tablet\': isTablet }"></div> <div class="device-text" *ngIf="isMobile">Mobile</div> <div class="device-text" *ngIf="isTablet">Tablet</div> <div class="device-text" *ngIf="isDesktop">Desktop</div> </div> <table class="table table-hover"> <tr> <th>Property</th> <th>Value</th> </tr> <tr *ngFor="let info of deviceInfo | keys : propsToShow" class="info-item w3-hover-blue"> <td>{{ info.key }}</td> <td>{{ info.value }}</td> </tr> <tr class="info-item w3-hover-blue"> <td>isDesktop()</td> <td>{{ isDesktop }}</td> </tr> <tr class="info-item w3-hover-blue"> <td>isMobile()</td> <td>{{ isMobile }}</td> </tr> <tr class="info-item w3-hover-blue"> <td>isTablet()</td> <td>{{ isTablet }}</td> </tr> </table> </div> </div></div></div>' var COMPONENTS = [{'name': 'AppComponent', 'selector': 'app-root'}]; var DIRECTIVES = []; var ACTUAL_COMPONENT = {'name': 'AppComponent'}; diff --git a/docs/dependencies.html b/docs/dependencies.html index 3e59afc..a15b10c 100644 --- a/docs/dependencies.html +++ b/docs/dependencies.html @@ -74,6 +74,8 @@ <b>conventional-changelog-cli</b> : ~2.2.2</li> <li> <b>express</b> : ~4.18.2</li> + <li> + <b>ngx-device-detector</b> : ^5.0.0</li> <li> <b>rxjs</b> : ~7.5.7</li> <li> diff --git a/docs/index.html b/docs/index.html index 7df7cb0..b954cad 100644 --- a/docs/index.html +++ b/docs/index.html @@ -32,9 +32,9 @@ <div class="content getting-started"> <div class="content-data"> -<div style="text-align: center; width: 100%"> +<p align="center"> <img src="https://raw.githubusercontent.com/KoderLabs/ngx-device-detector/master/assets/logo.svg" width="200"> -</div> +</p> <a href="https://koderlabs.github.io/ngx-device-detector"> diff --git a/docs/js/search/search_index.js b/docs/js/search/search_index.js index 58d138c..bef75bf 100644 --- a/docs/js/search/search_index.js +++ b/docs/js/search/search_index.js @@ -1,4 +1,4 @@ var COMPODOC_SEARCH_INDEX = { - "index": {"version":"2.3.9","fields":["title","body"],"fieldVectors":[["title/components/AppComponent.html",[0,1.438,1,1.105]],["body/components/AppComponent.html",[0,1.902,1,1.604,2,3.182,3,1.126,4,0.659,5,2.191,6,2.191,7,2.191,8,2.191,9,0.5,10,1.767,11,1.767,12,3.021,13,2.548,14,2.187,15,2.566,16,3.746,17,2.566,18,3.182,19,0.576,20,1.241,21,1.462,22,3.746,23,2.187,24,3.746,25,2.81,26,1.241,27,3.182,28,2.4,29,4.111,30,3.182,31,2.743,32,2.743,33,2.743,34,1.112,35,2.191,36,1.409,37,2.268,38,3.182,39,1.615,40,0.052,41,2.087,42,1.409,43,1.241,44,2.566,45,3.182,46,2.191,47,2.216,48,1.833,49,1.902,50,3.746,51,1.126,52,2.312,53,2.191,54,2.191,55,3.092,56,2.191,57,1.604,58,1.08,59,1.185,60,1.615,61,1.857,62,1.615,63,1.857,64,2.191,65,2.191,66,3.182,67,2.191,68,2.191,69,2.191,70,2.191,71,2.191,72,2.191,73,2.191,74,0.956,75,0.659,76,1.902,77,2.216,78,0.576,79,0.367,80,2.191,81,2.191,82,2.543,83,2.191,84,2.191,85,1.767,86,3.182,87,1.767,88,1.767,89,2.187,90,1.284,91,1.767,92,1.767,93,1.767,94,2.191,95,2.191,96,2.791,97,2.16,98,2.566,99,2.566,100,2.566,101,2.16,102,2.566,103,2.566,104,1.604,105,2.566,106,2.16,107,2.566,108,2.566,109,3.957,110,2.864,111,2.543,112,2.566,113,2.566,114,3.182,115,1.615,116,2.566,117,3.182,118,2.566,119,3.315,120,3.182,121,2.566,122,3.182,123,1.857,124,1.241,125,1.241,126,1.414,127,3.182,128,3.182,129,3.182,130,2.191,131,3.182,132,2.191,133,3.746,134,2.191,135,2.191,136,2.191,137,3.746,138,2.191,139,3.182,140,3.182,141,3.182,142,2.191,143,2.191,144,2.191,145,2.191,146,2.191,147,2.191,148,3.746,149,3.746,150,3.182,151,1.767,152,2.191,153,2.191,154,2.191,155,2.191,156,2.191,157,3.746,158,2.191,159,3.182,160,2.191,161,2.191,162,2.191,163,2.191,164,2.191,165,2.191,166,2.191,167,2.191,168,2.191,169,4.554,170,2.191,171,2.191,172,3.182,173,3.182,174,3.182,175,2.191,176,0.974,177,2.191,178,1.767,179,2.191,180,2.191,181,1.767,182,2.191,183,2.191,184,3.182,185,2.566,186,2.191,187,4.111,188,2.191,189,2.191,190,2.191,191,0.029,192,0.029]],["title/modules/AppModule.html",[193,2.284,194,1.259]],["body/modules/AppModule.html",[1,2.167,3,1.132,4,1.132,9,0.859,40,0.052,58,0.989,74,1.6,75,1.132,78,0.989,79,0.63,123,2.197,191,0.042,192,0.042,194,2.433,195,1.911,196,2.03,197,3.036,198,3.036,199,3.036,200,2.703,201,3.101,202,1.911,203,3.765,204,4.568,205,3.101,206,3.765,207,2.666,208,3.101,209,2.556,210,3.765,211,4.568,212,1.469,213,4.568,214,3.765,215,2.556,216,3.765,217,3.765,218,3.765,219,2.556]],["title/classes/AppPage.html",[79,0.474,220,1.923]],["body/classes/AppPage.html",[3,1.369,4,1.126,9,0.855,14,2.864,19,0.984,26,1.777,37,2.268,40,0.052,51,1.534,58,0.984,74,1.369,78,0.984,79,0.627,90,1.749,104,1.462,111,2.544,185,3.021,191,0.042,192,0.042,220,3.092,221,2.544,222,3.021,223,5.105,224,5.105,225,5.105,226,5.105,227,3.747,228,5.319,229,3.747,230,4.907,231,3.747,232,3.747,233,3.747,234,3.747,235,3.747,236,3.747,237,3.747,238,3.747,239,4.554,240,3.747,241,3.747,242,3.747,243,3.021,244,2.187,245,3.747]],["title/modules/AppServerModule.html",[193,2.284,246,1.438]],["body/modules/AppServerModule.html",[1,2.076,3,1.067,4,1.067,9,0.81,36,1.642,40,0.052,43,1.719,59,0.81,74,1.63,75,1.324,76,1.802,77,1.802,78,1.157,79,0.737,110,2.071,123,2.071,191,0.04,192,0.04,194,2.333,195,1.802,196,1.957,201,2.991,202,1.802,205,2.991,207,2.071,208,2.991,209,2.409,212,1.384,215,2.991,219,2.409,246,2.702,247,2.862,248,3.549,249,3.549,250,2.409,251,3.552,252,2.071,253,2.862,254,1.802,255,1.51,256,1.802,257,2.924,258,2.071,259,2.409,260,1.802,261,2.409,262,2.236,263,2.409,264,1.802,265,1.802,266,2.409,267,2.409,268,2.409,269,2.409,270,1.216,271,2.071,272,2.409]],["title/injectables/DeviceDetectorService.html",[36,0.971,255,0.971]],["body/injectables/DeviceDetectorService.html",[3,1.08,4,0.504,9,0.382,14,0.978,19,0.44,20,1.015,21,1.606,23,2.402,26,1.015,28,2.097,31,1.518,32,1.518,33,1.518,34,0.851,36,0.891,37,2.236,39,1.974,40,0.052,41,1.974,42,1.596,43,1.517,47,2.506,48,1.978,49,2.253,51,1.4,52,1.32,57,1.675,58,1.081,59,1.266,60,2.089,61,2.27,62,2.089,63,2.27,74,1.08,75,0.504,78,0.943,79,0.281,82,1.138,89,2.402,90,1.738,104,1.243,115,1.824,124,1.675,125,1.817,126,1.908,176,1.416,191,0.024,192,0.024,212,0.654,244,0.978,254,0.851,255,0.891,256,0.851,264,0.851,265,1.32,270,1.738,273,1.138,274,2.253,275,2.574,276,0.745,277,1.675,278,2.811,279,2.097,280,1.351,281,2.601,282,1.676,283,1.86,284,1.766,285,1.676,286,3.443,287,3.27,288,2.402,289,1.766,290,1.676,291,2.64,292,2.097,293,1.766,294,1.676,295,1.766,296,1.676,297,1.766,298,1.766,299,1.766,300,1.676,301,1.676,302,1.676,303,1.676,304,1.676,305,1.676,306,0.891,307,1.676,308,1.676,309,1.676,310,1.351,311,1.351,312,1.351,313,0.851,314,2.097,315,1.518,316,1.138,317,1.766,318,1.766,319,2.769,320,1.618,321,1.351,322,1.138,323,2.57,324,2.164,325,2.097,326,2.57,327,1.351,328,2.27,329,2.27,330,2.27,331,3.136,332,1.351,333,1.351,334,1.138,335,1.351,336,1.351,337,2.897,338,0.978,339,0.978,340,2.097,341,2.097,342,1.351,343,1.351,344,1.351,345,1.138,346,1.138,347,2.097,348,2.097,349,2.097,350,2.097,351,2.097,352,2.097,353,1.351,354,1.351,355,1.138,356,1.351,357,1.351,358,1.351,359,1.351,360,2.57,361,1.351,362,2.897,363,1.351,364,2.097,365,1.138,366,1.351,367,0.978,368,2.097,369,2.097,370,2.57,371,0.851,372,2.097,373,1.351,374,2.097,375,1.351,376,1.766,377,1.351,378,1.351,379,1.351,380,2.57,381,1.351,382,1.351,383,1.351,384,1.351,385,1.351,386,2.097,387,1.351,388,1.351,389,1.351,390,1.351,391,1.351,392,1.351,393,1.351,394,1.351,395,2.097,396,1.351,397,2.57,398,2.097,399,2.897,400,1.351,401,2.097,402,1.351,403,1.351,404,1.351,405,1.351,406,1.351,407,1.351,408,1.351,409,1.351]],["title/interfaces/DeviceInfo.html",[21,1.105,313,1.438]],["body/interfaces/DeviceInfo.html",[3,1.183,4,0.601,9,0.457,14,1.168,19,0.526,20,1.161,21,1.72,23,2.074,28,1.168,36,0.686,40,0.053,42,1.608,48,1.161,49,2.238,51,1.264,52,1.016,57,1.83,58,1.199,59,1.241,60,2.318,61,2.573,62,2.318,63,2.573,74,1.183,75,0.601,78,1.034,79,0.335,82,1.359,89,2.074,90,1.778,104,1.161,115,1.998,124,1.641,125,1.781,126,1.869,176,1.579,191,0.027,192,0.027,212,0.781,244,1.168,254,1.016,255,1.02,256,1.016,264,1.016,265,1.016,270,1.844,274,0.889,275,1.016,276,0.889,277,1.535,278,2.297,283,1.737,284,1.359,286,3.312,287,3.185,288,2.074,289,1.359,291,2.672,292,2.074,293,1.359,295,1.359,297,1.359,298,1.359,299,1.359,306,0.686,310,1.614,311,1.614,312,1.614,313,1.016,314,2.4,315,1.737,316,1.359,317,2.021,318,2.021,319,2.889,320,1.804,321,1.614,322,1.359,323,2.866,324,2.413,325,2.4,326,2.866,327,1.614,328,2.455,329,2.455,330,2.455,331,3.392,332,1.614,333,1.614,334,1.359,335,1.614,336,1.614,337,3.173,338,1.168,339,1.168,340,2.4,341,2.4,342,1.614,343,1.614,344,1.614,345,1.359,346,1.359,347,2.4,348,2.4,349,2.4,350,2.4,351,2.4,352,2.4,353,1.614,354,1.614,355,1.359,356,1.614,357,1.614,358,1.614,359,1.614,360,2.866,361,1.614,362,3.173,363,1.614,364,2.4,365,1.359,366,1.614,367,1.168,368,2.4,369,2.4,370,2.866,371,1.016,372,2.4,373,1.614,374,2.4,375,1.614,376,2.021,377,1.614,378,1.614,379,1.614,380,2.866,381,1.614,382,1.614,383,1.614,384,1.614,385,1.614,386,2.4,387,1.614,388,1.614,389,1.614,390,1.614,391,1.614,392,1.614,393,1.614,394,1.614,395,2.4,396,1.614,397,2.866,398,2.4,399,3.173,400,1.614,401,2.4,402,1.614,403,1.614,404,1.614,405,1.614,406,1.614,407,1.614,408,1.614,409,1.614,410,2.001]],["title/pipes/KeysPipe.html",[200,1.438,411,1.653]],["body/pipes/KeysPipe.html",[3,1.13,4,1.13,9,0.858,11,3.031,26,1.466,37,1.67,39,1.908,40,0.052,41,2.495,42,1.288,43,1.466,47,1.908,48,2.043,51,1.13,74,1.13,75,1.13,78,0.987,79,0.629,90,1.288,151,3.031,176,1.67,191,0.042,192,0.042,200,2.317,270,1.684,319,2.868,371,1.908,411,2.664,412,3.759,413,3.031,414,5.11,415,4.563,416,4.914,417,3.759,418,4.563,419,3.759,420,4.563,421,3.759,422,3.963,423,3.759,424,4.563,425,4.563,426,3.759]],["title/classes/ReTree.html",[79,0.474,277,1.105]],["body/classes/ReTree.html",[3,0.996,4,0.996,9,0.756,19,0.87,26,1.646,34,2.357,37,2.063,39,2.142,40,0.052,41,2.142,42,1.446,43,1.646,51,1.268,55,2.864,59,1.115,78,0.87,79,0.555,90,1.862,119,3.402,191,0.039,192,0.039,221,2.25,244,2.853,270,1.819,274,2.172,277,1.646,278,3.011,292,1.934,306,1.446,324,2.864,376,2.864,427,2.672,428,3.313,429,2.672,430,2.672,431,2.672,432,4.219,433,3.313,434,4.219,435,4.472,436,3.313,437,4.219,438,4.219,439,3.313,440,4.219,441,4.219,442,4.219,443,3.313,444,3.313,445,3.313,446,4.642,447,3.313,448,3.313,449,4.219,450,3.313,451,3.313,452,3.313,453,3.313]],["title/injectables/UniversalDeviceDetectorService.html",[255,0.971,262,1.438]],["body/injectables/UniversalDeviceDetectorService.html",[1,1.394,3,0.776,4,0.776,9,0.589,19,0.678,20,1.394,21,1.007,23,2.393,26,1.394,28,2.393,31,2.086,32,2.086,33,2.086,34,1.311,36,1.867,37,2.393,39,2.358,40,0.052,41,2.358,42,1.769,43,1.922,47,2.706,48,2.091,49,2.358,51,1.396,52,1.311,57,1.394,58,0.939,59,1.209,60,1.814,61,2.086,62,1.814,63,2.086,74,1.532,75,1.074,76,1.311,77,1.311,78,0.939,79,0.598,89,2.393,90,0.885,104,1.007,110,1.507,124,1.394,125,1.599,126,1.588,191,0.033,192,0.033,194,1.588,205,1.753,207,1.507,208,2.426,209,1.753,212,1.007,215,1.753,219,1.753,246,1.311,250,1.753,251,2.882,252,1.507,253,2.082,254,1.311,255,1.225,256,1.311,257,2.931,258,1.507,259,1.753,260,1.311,261,1.753,262,2.081,263,2.426,264,1.311,265,1.814,266,1.753,267,1.753,268,1.753,269,1.753,270,1.769,271,1.507,272,1.753,273,1.753,277,1.599,278,2.931,279,2.882,280,2.082,283,1.507,284,1.753,286,3.345,287,3.004,288,2.393,289,1.753,291,1.753,292,1.507,293,1.753,295,1.753,297,1.753,298,1.753,299,1.753,306,0.885,454,2.581,455,5.36,456,2.581,457,2.581,458,2.581,459,2.581,460,2.581,461,2.581,462,2.581,463,2.581,464,2.581,465,2.581,466,2.581,467,2.581,468,2.581,469,2.581,470,2.581]],["title/contributing.html",[471,1.626,472,1.398,473,2.394]],["body/contributing.html",[9,0.74,25,1.894,40,0.047,101,2.203,104,1.266,106,2.203,112,3.357,113,2.617,118,2.617,121,2.617,181,2.617,191,0.038,192,0.038,202,1.647,257,1.894,271,1.894,306,1.427,328,1.894,365,2.203,474,4.596,475,4.163,476,3.245,477,4.163,478,3.245,479,4.596,480,4.596,481,4.163,482,3.245,483,3.245,484,4.163,485,2.617,486,4.163,487,4.596,488,4.596,489,4.163,490,3.91,491,4.163,492,3.245,493,2.203,494,3.245,495,3.245,496,3.245,497,5.014,498,3.245,499,4.596,500,3.357,501,5.014,502,3.245,503,5.014,504,3.245,505,4.044,506,4.044,507,4.596,508,3.245,509,4.163,510,3.245,511,3.245,512,3.245,513,3.245,514,3.245,515,3.245,516,3.245,517,2.617,518,3.245,519,3.245,520,3.245,521,3.245,522,3.245,523,3.245,524,3.245,525,3.245,526,3.245,527,3.245,528,3.245,529,3.245,530,3.245,531,3.245,532,4.163,533,4.596,534,4.596,535,4.596,536,3.357,537,2.617,538,3.245,539,4.163,540,3.245,541,3.245,542,3.245,543,2.617,544,3.245,545,3.245,546,3.245,547,4.163,548,3.245,549,2.617,550,3.245,551,4.163,552,3.245,553,3.245,554,3.245,555,3.245,556,3.245,557,3.245,558,3.245,559,3.245,560,3.245,561,3.245,562,3.245,563,3.245,564,3.245,565,3.245,566,3.245,567,3.245,568,3.245,569,3.245,570,2.617,571,3.245,572,3.245,573,3.245,574,3.245,575,3.245,576,3.245,577,3.245,578,3.245,579,3.245,580,2.43,581,3.245,582,3.245,583,3.245,584,2.617,585,1.647]],["title/coverage.html",[586,3.07]],["body/coverage.html",[0,1.559,1,1.198,9,0.701,10,2.476,13,1.792,21,1.198,36,1.052,40,0.051,42,1.052,57,1.198,59,1.265,79,0.673,115,1.559,178,2.476,191,0.037,192,0.037,200,1.559,220,2.085,222,2.476,243,2.476,250,2.085,255,1.377,262,1.559,274,2.464,275,2.809,276,1.989,277,1.198,306,1.052,313,1.559,320,1.559,338,1.792,339,1.792,371,2.842,411,1.792,413,2.476,427,2.476,493,2.085,586,2.476,587,3.071,588,3.071,589,3.071,590,3.346,591,4.017,592,5.57,593,2.085,594,5.546,595,2.476,596,2.476,597,2.476,598,3.071,599,4.017,600,4.017,601,4.42,602,2.476,603,2.476,604,2.476,605,2.476,606,2.476,607,2.476,608,3.071,609,2.476,610,2.476,611,2.476,612,2.476,613,2.476,614,3.071,615,3.071,616,3.071,617,3.071]],["title/dependencies.html",[196,1.507,580,1.398]],["body/dependencies.html",[40,0.052,58,1.247,75,1.207,191,0.043,192,0.043,196,1.784,207,2.951,212,1.567,252,2.344,258,2.344,260,2.039,618,4.016,619,5.532,620,4.016,621,4.016,622,4.016,623,4.016,624,4.016,625,4.016,626,4.016,627,4.016,628,4.016,629,4.016,630,4.016,631,4.016,632,4.016,633,4.016,634,4.016,635,4.016,636,4.016]],["title/miscellaneous/enumerations.html",[637,1.064,638,2.734]],["body/miscellaneous/enumerations.html",[19,1.081,40,0.05,48,2.12,59,0.939,62,2.445,124,1.879,125,1.879,126,2.14,191,0.044,192,0.044,274,1.828,275,2.089,276,2.269,315,2.811,316,3.27,317,3.27,318,3.27,637,1.828,638,3.318,639,3.884]],["title/miscellaneous/functions.html",[637,1.064,640,2.734]],["body/miscellaneous/functions.html",[13,3.026,19,1.122,40,0.049,51,1.479,52,2.168,191,0.045,192,0.045,590,2.9,593,3.52,637,1.898,640,3.444,641,3.969,642,4.271]],["title/index.html",[19,0.629,471,1.626,472,1.398]],["body/index.html",[0,2.23,12,2.048,13,2.372,15,2.048,17,2.048,20,0.991,21,0.991,25,2.063,26,0.991,31,2.063,32,2.063,33,1.482,34,1.289,36,1.583,40,0.052,43,1.379,44,2.048,49,1.289,51,1.437,55,1.724,57,1.379,58,1.154,59,1.245,60,1.289,74,1.474,75,1.062,76,2.427,77,2.539,78,0.928,79,0.592,85,2.048,87,2.048,88,2.048,91,2.048,92,2.048,93,2.048,96,2.983,97,1.724,98,2.048,99,2.048,100,2.048,101,1.724,102,2.048,103,2.048,104,0.991,105,2.048,106,2.399,107,2.048,108,3.277,109,2.85,110,2.372,111,3.246,116,2.048,124,1.379,125,1.379,126,1.57,191,0.032,192,0.032,196,1.129,212,0.991,254,1.289,255,1.211,256,1.289,257,2.564,258,1.482,259,1.724,260,1.289,261,1.724,262,1.794,263,1.724,264,1.289,265,1.289,266,1.724,267,1.724,268,1.724,269,1.724,270,0.87,271,2.063,272,1.724,276,1.129,277,0.991,306,0.87,319,2.372,320,1.794,322,2.399,334,2.399,367,2.063,435,2.048,472,1.482,490,2.048,500,2.048,505,2.048,506,2.048,517,3.724,536,2.85,537,2.048,543,2.048,570,2.048,580,2.063,584,3.955,585,1.289,593,3.246,643,2.048,644,2.54,645,3.277,646,2.54,647,2.54,648,2.54,649,2.54,650,2.54,651,2.54,652,2.54,653,2.54,654,2.54,655,2.54,656,2.54,657,2.54,658,2.54,659,2.54,660,2.54,661,2.54,662,2.54,663,2.54,664,2.54,665,2.54,666,2.54,667,2.54,668,2.54,669,2.54,670,2.54,671,4.393,672,2.54,673,3.534,674,2.54,675,2.54,676,2.54,677,3.534,678,2.54,679,2.54,680,2.54,681,2.54,682,2.54,683,2.54,684,2.85,685,2.85,686,2.85,687,4.393,688,2.54,689,2.54,690,3.534,691,2.54,692,3.534,693,2.54,694,2.048,695,2.54,696,2.54,697,2.54,698,2.54,699,2.54,700,2.54,701,2.54,702,2.048,703,2.54,704,2.54,705,2.54,706,2.54,707,2.54,708,2.54,709,2.85,710,2.54,711,2.54,712,2.54,713,2.54,714,2.54,715,2.048,716,2.54,717,3.534,718,2.54,719,2.048,720,2.54,721,3.534,722,2.54,723,2.54,724,2.54,725,2.54,726,2.54,727,2.54,728,2.54,729,2.54,730,2.54,731,4.064,732,2.54,733,2.54,734,2.54,735,2.54,736,2.54,737,3.534,738,2.54,739,2.54,740,2.54,741,2.54,742,2.54,743,1.724]],["title/license.html",[471,1.626,472,1.398,585,1.215]],["body/license.html",[40,0.042,191,0.042,192,0.042,202,1.905,260,1.905,288,2.19,329,2.19,330,2.19,493,2.548,585,1.905,645,3.676,702,3.026,709,3.026,743,2.548,744,4.91,745,3.026,746,3.753,747,3.026,748,4.559,749,3.753,750,3.753,751,3.753,752,3.753,753,3.753,754,3.753,755,4.559,756,5.473,757,3.753,758,3.753,759,4.91,760,3.753,761,4.559,762,3.753,763,3.753,764,3.753,765,3.753,766,3.753,767,3.753,768,3.753,769,3.753,770,3.753,771,4.559,772,3.753,773,3.753,774,3.753,775,3.753,776,3.753,777,3.753,778,4.559,779,4.559,780,3.753,781,3.753,782,3.753,783,3.753,784,3.753,785,3.753,786,3.753,787,3.753,788,3.753,789,3.753,790,3.753,791,3.753,792,3.753,793,3.753,794,3.753,795,3.753,796,3.753,797,3.753,798,3.753,799,3.753,800,3.753,801,3.753,802,3.753,803,3.753,804,3.753,805,3.753,806,3.753,807,3.753]],["title/modules.html",[195,1.933]],["body/modules.html",[40,0.045,58,1.302,191,0.045,192,0.045,194,1.922,195,2.196,246,2.196,808,4.958,809,4.958,810,4.958]],["title/overview.html",[811,3.07]],["body/overview.html",[0,2.039,1,2.158,40,0.05,123,2.344,176,2.246,191,0.043,192,0.043,194,2.444,195,2.039,196,2.11,197,3.238,198,3.238,199,3.238,200,2.566,201,3.223,202,2.039,221,2.726,246,2.706,247,3.238,273,2.726,313,2.039,411,2.344,811,3.238,812,4.076]],["title/properties.html",[20,1.323,580,1.398]],["body/properties.html",[20,1.602,25,2.397,40,0.05,59,1.251,76,2.085,77,2.59,96,3.266,191,0.044,192,0.044,328,2.397,329,2.397,330,2.397,485,3.312,585,2.085,694,3.312,743,2.788,747,3.312,813,4.107,814,4.107,815,4.107,816,4.107,817,4.107,818,4.107,819,4.107,820,4.107,821,4.107,822,4.107,823,4.107]],["title/miscellaneous/variables.html",[637,1.064,824,2.734]],["body/miscellaneous/variables.html",[19,0.174,40,0.05,42,1.365,47,2.058,48,1.582,57,1.896,58,0.174,59,0.271,90,0.407,97,0.806,115,0.603,124,0.886,125,1.274,176,0.528,191,0.011,192,0.011,252,0.386,270,0.554,274,0.528,275,0.603,276,0.528,283,1.476,306,1.659,315,1.326,320,1.283,338,0.693,339,0.693,345,1.716,346,0.449,355,0.806,367,1.906,371,1.658,422,0.958,429,0.533,430,0.533,431,0.533,549,0.533,590,0.449,595,0.958,596,1.303,597,0.958,601,3.15,602,0.958,603,0.958,604,0.958,605,0.958,606,0.958,607,0.958,609,1.303,610,1.303,611,0.958,612,0.958,613,1.303,637,0.294,639,3.15,641,1.303,643,0.958,684,1.59,685,3.92,686,2.634,715,0.533,719,0.533,745,0.533,812,1.59,824,0.533,825,0.661,826,0.661,827,0.661,828,0.661,829,0.661,830,0.661,831,2.75,832,0.661,833,0.661,834,0.661,835,2.528,836,0.661,837,0.661,838,1.972,839,1.187,840,0.661,841,1.972,842,0.661,843,1.972,844,0.661,845,0.661,846,0.661,847,1.616,848,0.661,849,1.616,850,0.661,851,2.75,852,0.661,853,1.616,854,0.661,855,1.187,856,1.187,857,0.661,858,1.187,859,0.661,860,0.661,861,0.661,862,1.616,863,0.661,864,0.661,865,0.661,866,1.616,867,1.616,868,1.616,869,1.616,870,1.616,871,1.616,872,0.661,873,0.661,874,2.944,875,2.944,876,0.661,877,0.661,878,0.661,879,0.661,880,3.823,881,0.661,882,0.661,883,0.661,884,2.272,885,2.272,886,1.616,887,1.616,888,2.272,889,1.187,890,1.187,891,0.661,892,0.661,893,0.661,894,0.661,895,0.661,896,0.661,897,0.661,898,1.616,899,2.272,900,1.187,901,0.661,902,1.972,903,4.797,904,0.661,905,1.616,906,1.187,907,0.661,908,1.187,909,1.187,910,0.661,911,1.616,912,1.616,913,1.616,914,1.187,915,1.616,916,1.187,917,1.972,918,1.616,919,1.616,920,1.616,921,1.616,922,1.187,923,0.661,924,1.616,925,1.616,926,1.616,927,1.616,928,1.616,929,1.616,930,1.616,931,1.187,932,1.616,933,1.616,934,1.972,935,1.616,936,1.972,937,1.972,938,1.972,939,1.187,940,0.661,941,1.187,942,0.661,943,0.661,944,3.401,945,0.661,946,1.187,947,0.661,948,0.661,949,0.661,950,0.661,951,0.661,952,0.661,953,0.661,954,0.661,955,0.661,956,2.944,957,0.661,958,1.187,959,1.616,960,1.972,961,1.616,962,1.972,963,0.661,964,0.661,965,0.661,966,0.661,967,0.661,968,0.661,969,0.661,970,0.661,971,0.661,972,0.661,973,0.661,974,0.661,975,0.661,976,0.661,977,0.661,978,0.661,979,0.661,980,0.661,981,0.661,982,0.661,983,0.661,984,0.661,985,0.661,986,0.661,987,0.661,988,0.661,989,0.661,990,0.661,991,0.661,992,0.661,993,0.661,994,0.661,995,0.661,996,1.187,997,0.661,998,0.661,999,0.661,1000,4.428,1001,0.661,1002,0.661,1003,0.661,1004,0.661,1005,0.661,1006,0.661,1007,0.661,1008,0.661,1009,0.661,1010,0.661,1011,0.661,1012,0.661,1013,0.661,1014,0.661,1015,0.661,1016,0.661,1017,0.661,1018,0.661,1019,0.661,1020,0.661,1021,0.661,1022,0.661,1023,0.661,1024,0.661,1025,0.661,1026,0.661,1027,0.661,1028,0.661,1029,0.661,1030,0.661,1031,0.661,1032,0.661,1033,0.661,1034,0.661,1035,0.661,1036,0.661,1037,0.661,1038,0.661,1039,0.661,1040,0.661,1041,0.661,1042,0.661,1043,0.661,1044,0.661,1045,0.661,1046,0.661,1047,0.661,1048,0.661,1049,0.661,1050,0.661,1051,0.661,1052,0.661,1053,0.661,1054,0.661,1055,0.661,1056,0.661,1057,0.661,1058,0.661,1059,0.661,1060,0.661,1061,0.661,1062,0.661,1063,0.661,1064,0.661,1065,0.661,1066,0.661,1067,0.661,1068,0.661,1069,0.661,1070,0.661,1071,0.661,1072,0.661,1073,0.661,1074,0.661,1075,0.661,1076,0.661,1077,0.661,1078,0.661,1079,0.661,1080,0.661,1081,0.661,1082,0.661,1083,0.661,1084,0.661,1085,0.661,1086,0.661,1087,0.661,1088,0.661,1089,0.661,1090,0.661,1091,0.661,1092,0.661,1093,0.661,1094,0.661,1095,0.661,1096,0.661,1097,0.661,1098,0.661,1099,0.661,1100,0.661,1101,0.661,1102,0.661,1103,0.661,1104,0.661,1105,0.661,1106,0.661,1107,0.661,1108,0.661,1109,0.661,1110,0.661,1111,0.661,1112,0.661,1113,0.661,1114,0.661,1115,0.661,1116,0.661,1117,0.661,1118,0.661,1119,0.661,1120,0.661,1121,0.661,1122,0.661,1123,0.661,1124,0.661,1125,0.661,1126,0.661,1127,0.661,1128,0.661,1129,0.661,1130,0.661,1131,0.661,1132,0.661,1133,0.661,1134,0.661,1135,0.661,1136,0.661,1137,0.661,1138,0.661,1139,0.661,1140,0.661,1141,0.661,1142,0.661,1143,0.661,1144,0.661,1145,0.661,1146,0.661,1147,0.661,1148,0.661,1149,0.661,1150,0.661,1151,0.661,1152,0.661,1153,0.661,1154,0.661,1155,0.661,1156,0.661,1157,0.661,1158,0.661,1159,0.661,1160,0.661,1161,0.661,1162,0.661,1163,0.661,1164,0.661,1165,0.661,1166,0.661,1167,0.661,1168,0.661,1169,0.661,1170,0.661,1171,0.661,1172,0.661,1173,0.661,1174,0.661,1175,0.661,1176,0.661,1177,0.661,1178,0.661,1179,0.661,1180,0.661,1181,0.661,1182,0.661,1183,0.661,1184,0.661,1185,0.661,1186,0.661,1187,2.75,1188,0.661,1189,0.661,1190,0.661,1191,0.661,1192,0.661,1193,0.661,1194,0.661,1195,0.661,1196,0.661,1197,0.661,1198,0.661,1199,0.661,1200,0.661,1201,0.661,1202,0.661,1203,0.661,1204,0.661,1205,0.661,1206,0.661,1207,0.661,1208,0.661,1209,0.661,1210,0.661,1211,0.661,1212,0.661,1213,0.661,1214,0.661,1215,0.661,1216,0.661,1217,0.661,1218,0.661,1219,0.661,1220,0.661,1221,0.661,1222,0.661,1223,0.661,1224,0.661,1225,0.661,1226,0.661,1227,0.661,1228,0.661,1229,0.661,1230,0.661,1231,0.661,1232,0.661,1233,0.661,1234,0.661,1235,0.661,1236,0.661,1237,0.661,1238,0.661,1239,0.661,1240,0.661,1241,0.661,1242,0.661,1243,0.661,1244,0.661,1245,0.661,1246,0.661,1247,0.661,1248,0.661,1249,0.661,1250,0.661,1251,0.661,1252,0.661,1253,0.661,1254,4.18,1255,0.661,1256,0.661,1257,0.661,1258,0.661,1259,0.661,1260,0.661,1261,0.661,1262,0.661,1263,0.661,1264,0.661,1265,0.661,1266,0.661,1267,0.661,1268,0.661,1269,0.661,1270,0.661,1271,0.661,1272,0.661,1273,0.661,1274,0.661,1275,0.661,1276,0.661,1277,0.661,1278,0.661,1279,0.661,1280,0.661,1281,0.661,1282,0.661,1283,0.661,1284,0.661,1285,0.661,1286,0.661,1287,0.661,1288,0.661,1289,0.661,1290,0.661,1291,0.661,1292,0.661,1293,0.661,1294,0.661,1295,0.661,1296,0.661,1297,0.661,1298,0.661,1299,0.661,1300,0.661,1301,0.661,1302,0.661,1303,0.661,1304,0.661,1305,0.661,1306,0.661,1307,0.661,1308,0.661,1309,0.661,1310,0.661,1311,0.661,1312,0.661,1313,0.661,1314,0.661,1315,0.661,1316,0.661,1317,0.661,1318,0.661,1319,0.661,1320,0.661,1321,0.661,1322,0.661,1323,0.661,1324,0.661,1325,0.661,1326,0.661,1327,0.661,1328,0.661,1329,0.661,1330,0.661,1331,0.661,1332,0.661,1333,0.661,1334,0.661,1335,0.661,1336,0.661,1337,0.661,1338,0.661,1339,0.661,1340,0.661,1341,0.661,1342,0.661,1343,0.661,1344,0.661,1345,0.661,1346,0.661,1347,0.661,1348,0.661,1349,0.661,1350,0.661,1351,0.661,1352,0.661,1353,0.661,1354,0.661,1355,0.661,1356,0.661,1357,0.661,1358,0.661,1359,0.661,1360,0.661,1361,0.661,1362,0.661,1363,0.661,1364,0.661,1365,0.661,1366,0.661,1367,0.661,1368,0.661,1369,0.661,1370,0.661,1371,0.661,1372,0.661,1373,0.661,1374,0.661,1375,0.661,1376,0.661,1377,0.661,1378,0.661,1379,0.661,1380,0.661,1381,0.661,1382,0.661,1383,0.661,1384,0.661,1385,0.661,1386,0.661,1387,0.661,1388,0.661,1389,0.661,1390,0.661,1391,0.661,1392,0.661,1393,0.661,1394,0.661,1395,0.661,1396,0.661,1397,0.661,1398,0.661,1399,0.661,1400,0.661,1401,0.661,1402,0.661,1403,0.661,1404,0.661,1405,0.661,1406,0.661,1407,0.661,1408,0.661,1409,0.661,1410,0.661,1411,0.661,1412,0.661,1413,0.661,1414,0.661,1415,0.661,1416,0.661,1417,0.661,1418,0.661,1419,0.661,1420,0.661,1421,0.661,1422,0.661,1423,0.661,1424,0.661,1425,0.661,1426,0.661,1427,0.661,1428,0.661,1429,0.661,1430,0.661,1431,0.661,1432,0.661,1433,0.661,1434,0.661,1435,0.661,1436,0.661,1437,0.661,1438,0.661,1439,0.661,1440,0.661,1441,0.661,1442,0.661,1443,0.661,1444,0.661,1445,0.661,1446,0.661,1447,0.661,1448,0.661,1449,0.661,1450,0.661,1451,0.661,1452,0.661,1453,0.661,1454,0.661,1455,0.661,1456,0.661,1457,0.661,1458,0.661,1459,0.661,1460,0.661,1461,0.661,1462,0.661,1463,0.661,1464,2.528,1465,0.661,1466,0.661,1467,0.661,1468,0.661,1469,0.661,1470,0.661,1471,0.661,1472,0.661,1473,0.661,1474,0.661,1475,0.661,1476,0.661,1477,0.661,1478,0.661,1479,0.661,1480,0.661,1481,0.661,1482,0.661,1483,0.661,1484,0.661,1485,0.661,1486,0.661,1487,0.661,1488,0.661,1489,0.661,1490,0.661,1491,0.661,1492,0.661,1493,0.661,1494,0.661,1495,0.661,1496,0.661,1497,0.661,1498,0.661,1499,0.661,1500,0.661,1501,0.661,1502,0.661,1503,0.661,1504,0.661,1505,0.661,1506,0.661,1507,0.661,1508,0.661,1509,0.661,1510,0.661,1511,0.661,1512,0.661,1513,0.661,1514,0.661,1515,0.661,1516,0.661,1517,0.661,1518,0.661,1519,0.661,1520,0.661,1521,0.661,1522,0.661,1523,0.661,1524,0.661,1525,0.661,1526,0.661,1527,0.661,1528,0.661,1529,0.661,1530,0.661,1531,0.661,1532,0.661,1533,0.661,1534,0.661,1535,0.661,1536,0.661,1537,0.661,1538,0.661,1539,0.661,1540,0.661,1541,0.661,1542,0.661,1543,0.661,1544,0.661,1545,0.661,1546,0.661,1547,0.661,1548,0.661,1549,0.661,1550,0.661,1551,0.661,1552,0.661,1553,0.661,1554,0.661,1555,0.661,1556,0.661,1557,0.661,1558,0.661,1559,0.661,1560,0.661,1561,0.661,1562,0.661,1563,0.661,1564,0.661,1565,0.661,1566,3.523,1567,0.661,1568,0.661,1569,0.661,1570,0.661,1571,0.661,1572,0.661,1573,0.661,1574,0.661,1575,0.661,1576,0.661,1577,0.661,1578,0.661,1579,0.661,1580,0.661,1581,0.661,1582,0.661,1583,0.661,1584,0.661,1585,0.661,1586,0.661,1587,0.661,1588,0.661,1589,0.661,1590,0.661,1591,0.661,1592,0.661,1593,0.661,1594,0.661,1595,0.661,1596,0.661,1597,0.661,1598,0.661,1599,0.661,1600,0.661,1601,0.661,1602,0.661,1603,0.661,1604,0.661,1605,0.661,1606,0.661,1607,0.661,1608,0.661,1609,0.661,1610,0.661,1611,0.661,1612,0.661,1613,0.661,1614,0.661,1615,0.661,1616,0.661,1617,0.661,1618,0.661,1619,0.661,1620,1.187,1621,0.661,1622,0.661,1623,0.661,1624,0.661,1625,0.661,1626,0.661,1627,0.661,1628,0.661,1629,0.661,1630,0.661,1631,0.661,1632,0.661,1633,0.661,1634,0.661,1635,0.661,1636,0.661,1637,0.661,1638,0.661,1639,0.661,1640,0.661,1641,0.661,1642,0.661,1643,0.661,1644,0.661,1645,1.187,1646,0.661,1647,1.187,1648,0.661,1649,0.661,1650,0.661,1651,0.661,1652,0.661,1653,0.661,1654,0.661,1655,0.661,1656,0.661,1657,1.187,1658,0.661,1659,0.661,1660,0.661,1661,1.187,1662,0.661,1663,0.661,1664,0.661,1665,0.661,1666,0.661,1667,0.661,1668,0.661,1669,0.661,1670,0.661,1671,0.661,1672,0.661,1673,0.661,1674,0.661,1675,0.661,1676,0.661,1677,0.661,1678,0.661,1679,0.661,1680,0.661,1681,0.661,1682,0.661,1683,0.661,1684,1.187,1685,0.661,1686,0.661,1687,1.616,1688,1.616,1689,1.187,1690,0.661,1691,0.661,1692,0.661,1693,0.661,1694,0.661,1695,0.661,1696,0.661,1697,1.187,1698,1.187,1699,1.972,1700,1.187,1701,0.661,1702,1.187,1703,1.187,1704,0.661,1705,1.187,1706,1.187,1707,1.187,1708,1.187,1709,1.187,1710,1.187,1711,1.187,1712,0.661,1713,1.187,1714,0.661,1715,1.187,1716,1.187,1717,1.972,1718,1.187,1719,1.187,1720,2.528,1721,1.187,1722,1.187,1723,1.187,1724,1.187,1725,1.187,1726,1.187,1727,4.698,1728,1.187,1729,0.661,1730,1.187,1731,0.661,1732,1.187,1733,0.661,1734,1.187,1735,1.187,1736,0.661,1737,1.187,1738,1.187,1739,1.187,1740,1.187,1741,1.187,1742,1.187,1743,1.187,1744,1.187,1745,1.187,1746,0.661,1747,1.187,1748,1.187,1749,0.661,1750,0.661,1751,0.661,1752,0.661,1753,0.661,1754,0.661,1755,0.661,1756,0.661,1757,0.661,1758,0.661,1759,0.661,1760,0.661,1761,0.661,1762,0.661,1763,0.661,1764,0.661,1765,0.661,1766,0.661,1767,0.661,1768,0.661,1769,1.187,1770,0.661,1771,0.661,1772,0.661,1773,0.661,1774,1.187,1775,0.661,1776,0.661,1777,0.661,1778,0.661,1779,0.661,1780,0.661,1781,0.661,1782,0.661,1783,0.661,1784,0.661,1785,0.661,1786,0.661,1787,0.661,1788,0.661,1789,0.661,1790,0.661,1791,0.661,1792,0.661,1793,0.661,1794,0.661,1795,0.661,1796,0.661,1797,0.661,1798,0.661,1799,0.661,1800,0.661,1801,0.661,1802,0.661,1803,0.661,1804,0.661,1805,0.661,1806,0.661,1807,0.661,1808,0.661,1809,0.661,1810,0.661,1811,0.661,1812,0.661,1813,0.661,1814,0.661,1815,0.661,1816,0.661,1817,0.661,1818,0.661,1819,0.661,1820,0.661,1821,0.661,1822,0.661,1823,0.661,1824,0.661,1825,0.661,1826,0.661,1827,0.661,1828,0.661,1829,0.661,1830,0.661,1831,0.661,1832,0.661,1833,0.661,1834,0.661,1835,0.661,1836,0.661,1837,0.661,1838,0.661,1839,0.661,1840,0.661,1841,0.661,1842,0.661,1843,0.661,1844,0.661,1845,0.661,1846,0.661,1847,0.661,1848,0.661,1849,0.661,1850,0.661,1851,0.661,1852,0.661,1853,0.661,1854,0.661,1855,0.661,1856,0.661,1857,0.661,1858,0.661,1859,0.661,1860,0.661,1861,0.661,1862,0.661,1863,0.661,1864,0.661,1865,0.661,1866,0.661,1867,0.661,1868,0.661,1869,0.661,1870,0.661,1871,0.661,1872,0.661,1873,0.661,1874,0.661,1875,0.661,1876,0.661,1877,0.661,1878,0.661,1879,0.661,1880,0.661,1881,0.661,1882,0.661,1883,0.661,1884,0.661,1885,0.661,1886,0.661,1887,0.661,1888,0.661,1889,0.661,1890,0.661,1891,0.661,1892,0.661,1893,0.661,1894,0.661,1895,0.661,1896,0.661,1897,0.661,1898,0.661,1899,0.661,1900,0.661,1901,0.661,1902,0.661,1903,0.661,1904,0.661,1905,0.661,1906,0.661,1907,0.661,1908,0.661,1909,0.661,1910,0.661,1911,0.661,1912,0.661,1913,0.661,1914,0.661,1915,0.661,1916,0.661,1917,0.661,1918,0.661,1919,0.661,1920,0.661,1921,0.661,1922,0.661,1923,0.661,1924,0.661,1925,0.661,1926,0.661,1927,0.661,1928,0.661,1929,0.661,1930,0.661,1931,0.661,1932,0.661,1933,0.661,1934,0.661,1935,0.661,1936,0.661,1937,0.661,1938,0.661,1939,0.661,1940,0.661,1941,0.661,1942,0.661,1943,0.661,1944,0.661,1945,0.661,1946,0.661,1947,0.661,1948,0.661,1949,0.661,1950,0.661,1951,0.661,1952,0.661,1953,0.661,1954,0.661,1955,0.661,1956,0.661,1957,0.661,1958,0.661,1959,0.661,1960,0.661,1961,0.661,1962,0.661,1963,0.661,1964,0.661,1965,0.661,1966,0.661,1967,0.661,1968,0.661,1969,0.661,1970,0.661,1971,0.661,1972,0.661,1973,0.661,1974,0.661,1975,0.661,1976,0.661,1977,0.661,1978,0.661,1979,0.661,1980,0.661,1981,0.661,1982,0.661,1983,0.661,1984,0.661,1985,0.661,1986,0.661,1987,0.661,1988,0.661,1989,0.661,1990,0.661,1991,0.661,1992,0.661,1993,0.661,1994,0.661,1995,0.661,1996,0.661,1997,0.661,1998,0.661,1999,0.661,2000,0.661,2001,0.661,2002,0.661,2003,0.661,2004,0.661,2005,0.661,2006,0.661,2007,0.661,2008,0.661,2009,0.661,2010,0.661,2011,0.661,2012,0.661,2013,0.661,2014,0.661,2015,0.661,2016,0.661,2017,0.661,2018,0.661,2019,0.661,2020,0.661,2021,0.661,2022,0.661,2023,0.661,2024,0.661,2025,0.661,2026,0.661,2027,0.661,2028,0.661,2029,0.661,2030,0.661,2031,0.661,2032,0.661,2033,0.661,2034,0.661,2035,0.661,2036,0.661,2037,0.661,2038,0.661,2039,0.661,2040,0.661,2041,0.661,2042,0.661,2043,0.661,2044,0.661,2045,0.661,2046,0.661,2047,0.661,2048,0.661,2049,0.661,2050,0.661,2051,0.661,2052,0.661,2053,0.661,2054,0.661,2055,1.616,2056,0.661,2057,0.661,2058,0.661,2059,0.661,2060,0.661,2061,0.661,2062,0.661,2063,0.661,2064,0.661,2065,0.661,2066,0.661,2067,0.661,2068,0.661,2069,0.661,2070,0.661,2071,0.661,2072,0.661,2073,0.661,2074,0.661,2075,0.661,2076,0.661,2077,0.661,2078,0.661,2079,0.661,2080,0.661,2081,0.661,2082,0.661,2083,0.661,2084,0.661,2085,0.661,2086,0.661,2087,0.661,2088,0.661,2089,0.661,2090,0.661,2091,0.661,2092,0.661,2093,0.661,2094,0.661,2095,0.661,2096,0.661,2097,0.661,2098,0.661,2099,0.661,2100,0.661,2101,0.661,2102,0.661,2103,0.661,2104,0.661,2105,0.661,2106,0.661,2107,0.661,2108,0.661,2109,0.661,2110,0.661,2111,0.661,2112,0.661,2113,0.661,2114,0.661,2115,0.661,2116,0.661,2117,0.661,2118,0.661,2119,0.661,2120,0.661,2121,0.661,2122,1.187,2123,0.661,2124,0.661,2125,0.661,2126,0.661,2127,0.661,2128,0.661,2129,0.661,2130,0.661,2131,0.661,2132,0.661,2133,0.661,2134,1.616,2135,0.661,2136,0.661,2137,0.661,2138,0.661,2139,0.661,2140,0.661,2141,0.661,2142,0.661,2143,0.661,2144,0.661,2145,0.661,2146,0.661,2147,0.661,2148,0.661,2149,0.661,2150,0.661,2151,0.661,2152,0.661,2153,0.661,2154,0.661,2155,0.661,2156,0.661,2157,0.661,2158,0.661,2159,0.661,2160,0.661,2161,0.661,2162,0.661,2163,0.661,2164,0.661,2165,0.661,2166,0.661,2167,0.661,2168,0.661,2169,0.661,2170,0.661,2171,0.661,2172,0.661,2173,0.661,2174,0.661,2175,0.661,2176,0.661,2177,0.661,2178,0.661,2179,0.661,2180,0.661,2181,0.661,2182,0.661,2183,0.661,2184,0.661,2185,0.661,2186,0.661,2187,0.661,2188,0.661,2189,0.661,2190,0.661,2191,0.661,2192,0.661,2193,0.661,2194,0.661,2195,0.661,2196,0.661,2197,0.661,2198,0.661,2199,0.661,2200,0.661,2201,0.661,2202,0.661,2203,0.661,2204,0.661,2205,0.661,2206,0.661,2207,0.661,2208,0.661,2209,0.661,2210,0.661,2211,0.661,2212,0.661,2213,0.661,2214,0.661,2215,0.661,2216,0.661,2217,0.661,2218,0.661,2219,0.661,2220,0.661,2221,0.661,2222,0.661,2223,0.661,2224,0.661,2225,0.661,2226,0.661,2227,0.661,2228,0.661,2229,0.661,2230,0.661,2231,0.661,2232,0.661,2233,0.661,2234,0.661,2235,0.661,2236,0.661,2237,0.661,2238,0.661,2239,0.661,2240,0.661,2241,0.661,2242,0.661,2243,0.661,2244,0.661,2245,0.661,2246,0.661,2247,0.661,2248,0.661,2249,0.661,2250,0.661,2251,0.661,2252,0.661,2253,0.661,2254,0.661,2255,0.661,2256,0.661,2257,0.661,2258,0.661,2259,0.661,2260,0.661,2261,0.661,2262,0.661,2263,0.661,2264,0.661,2265,0.661,2266,0.661,2267,0.661,2268,0.661,2269,0.661,2270,0.661,2271,0.661,2272,0.661,2273,0.661,2274,0.661,2275,0.661,2276,0.661,2277,0.661,2278,0.661,2279,0.661,2280,0.661,2281,0.661,2282,0.661,2283,0.661,2284,0.661,2285,0.661,2286,0.661,2287,0.661,2288,0.661,2289,0.661,2290,0.661,2291,0.661,2292,0.661,2293,0.661,2294,0.661,2295,0.661,2296,0.661,2297,0.661,2298,0.661,2299,0.661,2300,0.661,2301,0.661,2302,0.661,2303,0.661,2304,1.187,2305,0.661,2306,0.661,2307,0.661,2308,0.661,2309,0.661,2310,0.661,2311,0.661,2312,0.661,2313,0.661,2314,0.661,2315,0.661,2316,0.661,2317,0.661,2318,0.661,2319,0.661,2320,0.661,2321,0.661,2322,0.661,2323,0.661,2324,0.661,2325,0.661,2326,0.661,2327,0.661,2328,0.661,2329,1.972,2330,0.661,2331,0.661,2332,0.661,2333,0.661,2334,0.661,2335,0.661,2336,0.661,2337,0.661,2338,0.661,2339,0.661,2340,0.661,2341,0.661,2342,0.661,2343,0.661,2344,0.661,2345,0.661,2346,0.661,2347,0.661,2348,0.661,2349,0.661,2350,0.661,2351,0.661,2352,0.661,2353,0.661,2354,0.661,2355,0.661,2356,0.661,2357,0.661,2358,0.661,2359,0.661,2360,0.661,2361,0.661,2362,0.661,2363,0.661,2364,0.661,2365,0.661,2366,0.661,2367,0.661,2368,0.661,2369,0.661,2370,0.661,2371,0.661,2372,0.661,2373,0.661,2374,0.661,2375,1.187,2376,0.661,2377,0.661,2378,0.661,2379,0.661,2380,0.661,2381,0.661,2382,0.661,2383,0.661,2384,0.661,2385,0.661,2386,0.661,2387,0.661,2388,0.661,2389,0.661,2390,0.661,2391,0.661,2392,0.661,2393,0.661,2394,1.187,2395,4.119,2396,0.661,2397,0.661,2398,0.661,2399,0.661,2400,0.661,2401,1.187,2402,0.661,2403,0.661,2404,0.661,2405,0.661,2406,0.661,2407,0.661,2408,0.661,2409,0.661,2410,0.661,2411,0.661,2412,0.661,2413,0.661,2414,0.661,2415,0.661,2416,0.661,2417,0.661,2418,0.661,2419,0.661,2420,0.661,2421,0.661,2422,0.661,2423,0.661,2424,0.661,2425,0.661,2426,0.661,2427,0.661,2428,0.661,2429,0.661,2430,0.661,2431,0.661,2432,0.661,2433,0.661,2434,0.661,2435,0.661,2436,0.661,2437,0.661,2438,0.661,2439,0.661,2440,0.661,2441,0.661,2442,1.187,2443,0.661,2444,0.661,2445,0.661,2446,0.661,2447,0.661,2448,0.661,2449,0.661,2450,0.661,2451,0.661,2452,0.661,2453,0.661,2454,0.661,2455,0.661,2456,0.661,2457,0.661,2458,0.661,2459,0.661,2460,0.661,2461,0.661,2462,0.661,2463,0.661,2464,0.661,2465,0.661,2466,1.187,2467,1.187,2468,0.661,2469,0.661,2470,0.661,2471,0.661,2472,0.661,2473,0.661,2474,0.661,2475,0.661,2476,0.661,2477,0.661,2478,0.661,2479,0.661,2480,0.661,2481,0.661,2482,0.661,2483,0.661,2484,0.661,2485,0.661,2486,0.661,2487,0.661,2488,0.661,2489,0.661,2490,0.661,2491,0.661,2492,0.661,2493,0.661,2494,1.616,2495,0.661,2496,0.661,2497,0.661,2498,0.661,2499,0.661,2500,1.187,2501,0.661,2502,0.661,2503,0.661,2504,0.661,2505,0.661,2506,0.661,2507,0.661,2508,0.661,2509,0.661,2510,0.661,2511,0.661,2512,0.661,2513,0.661,2514,0.661,2515,0.661,2516,0.661,2517,0.661,2518,0.661,2519,0.661,2520,0.661,2521,0.661,2522,0.661,2523,0.661,2524,0.661,2525,0.661,2526,0.661,2527,0.661,2528,0.661,2529,0.661,2530,0.661,2531,0.661,2532,0.661,2533,0.661,2534,0.661,2535,0.661,2536,0.661,2537,0.661,2538,0.661,2539,0.661,2540,0.661,2541,0.661,2542,0.661,2543,0.661,2544,0.661,2545,0.661,2546,0.661,2547,0.661,2548,0.661,2549,0.661,2550,0.661,2551,0.661,2552,0.661,2553,0.661,2554,0.661,2555,0.661,2556,0.661,2557,0.661,2558,0.661,2559,0.661,2560,0.661,2561,0.661,2562,0.661,2563,0.661,2564,0.661,2565,0.661,2566,0.661,2567,0.661,2568,0.661,2569,0.661,2570,0.661,2571,0.661,2572,0.661,2573,0.661,2574,0.661,2575,1.616,2576,0.661,2577,0.661,2578,0.661,2579,0.661,2580,0.661,2581,0.661,2582,0.661,2583,0.661,2584,0.661,2585,0.661,2586,0.661,2587,0.661,2588,0.661,2589,0.661,2590,0.661,2591,0.661,2592,0.661,2593,0.661,2594,0.661,2595,0.661,2596,0.661,2597,0.661,2598,0.661,2599,0.661,2600,0.661,2601,0.661,2602,0.661,2603,0.661,2604,0.661,2605,0.661,2606,0.661,2607,0.661,2608,0.661,2609,0.661,2610,0.661,2611,0.661,2612,0.661,2613,0.661,2614,0.661,2615,0.661,2616,0.661,2617,0.661,2618,0.661,2619,0.661,2620,0.661,2621,0.661,2622,0.661,2623,0.661,2624,0.661,2625,0.661,2626,0.661,2627,0.661,2628,0.661,2629,0.661,2630,0.661,2631,0.661,2632,0.661,2633,0.661,2634,0.661,2635,0.661,2636,0.661,2637,0.661,2638,0.661,2639,1.187,2640,0.661,2641,0.661,2642,0.661,2643,0.661,2644,0.661,2645,0.661,2646,0.661,2647,0.661,2648,0.661,2649,0.661,2650,0.661,2651,0.661,2652,0.661,2653,0.661,2654,0.661,2655,0.661,2656,0.661,2657,0.661,2658,0.661,2659,0.661,2660,0.661,2661,0.661,2662,0.661,2663,0.661,2664,0.661,2665,0.661,2666,0.661,2667,0.661,2668,0.661,2669,0.661,2670,0.661,2671,0.661,2672,0.661,2673,0.661,2674,0.661,2675,0.661,2676,0.661,2677,0.661,2678,0.661,2679,0.661,2680,0.661,2681,0.661,2682,0.661,2683,0.661,2684,0.661,2685,0.661,2686,0.661,2687,0.661,2688,0.661,2689,0.661,2690,0.661,2691,0.661,2692,0.661,2693,0.661,2694,0.661,2695,0.661,2696,0.661,2697,0.661,2698,0.661,2699,0.661,2700,0.661,2701,0.661,2702,0.661,2703,0.661,2704,0.661,2705,0.661,2706,0.661,2707,0.661,2708,0.661,2709,1.616,2710,0.661,2711,0.661,2712,0.661,2713,0.661,2714,0.661,2715,0.661,2716,0.661,2717,0.661,2718,0.661,2719,0.661,2720,0.661,2721,0.661,2722,0.661,2723,0.661,2724,0.661,2725,0.661,2726,0.661,2727,0.661,2728,0.661,2729,0.661,2730,0.661,2731,0.661,2732,0.661,2733,0.661,2734,0.661,2735,0.661,2736,0.661,2737,0.661,2738,0.661,2739,0.661,2740,0.661,2741,0.661,2742,1.187,2743,1.187,2744,1.187,2745,0.661,2746,0.661,2747,1.187,2748,1.187,2749,1.187,2750,0.661,2751,0.661,2752,0.661,2753,0.661,2754,0.661,2755,0.661,2756,1.187,2757,0.661,2758,0.661,2759,0.661,2760,0.661,2761,0.661,2762,0.661,2763,0.661,2764,0.661,2765,0.661,2766,0.661,2767,0.661,2768,0.661,2769,0.661,2770,0.661,2771,0.661,2772,0.661,2773,0.661,2774,0.661,2775,0.661,2776,0.661,2777,0.661,2778,0.661,2779,0.661,2780,0.661,2781,0.661,2782,0.661,2783,0.661,2784,0.661,2785,0.661,2786,0.661,2787,0.661,2788,0.661,2789,1.187,2790,0.661,2791,0.661,2792,0.661,2793,0.661,2794,0.661,2795,0.661,2796,0.661,2797,0.661,2798,0.661,2799,0.661,2800,0.661,2801,0.661,2802,0.661,2803,0.661,2804,0.661,2805,0.661,2806,0.661,2807,0.661,2808,0.661,2809,0.661,2810,0.661,2811,0.661,2812,0.661,2813,0.661,2814,0.661,2815,0.661,2816,0.661,2817,0.661,2818,0.661,2819,0.661,2820,0.661,2821,0.661,2822,0.661,2823,0.661,2824,0.661,2825,0.661,2826,0.661,2827,0.661,2828,0.661,2829,0.661,2830,0.661,2831,0.661,2832,0.661,2833,0.661,2834,0.661,2835,0.661,2836,0.661,2837,0.661,2838,0.661,2839,0.661,2840,0.661,2841,0.661,2842,0.661,2843,0.661,2844,0.661,2845,0.661,2846,0.661,2847,0.661,2848,0.661,2849,0.661,2850,0.661,2851,0.661,2852,0.661,2853,0.661,2854,0.661,2855,0.661,2856,0.661,2857,0.661,2858,0.661,2859,0.661,2860,0.661,2861,0.661,2862,0.661,2863,0.661,2864,0.661,2865,0.661,2866,0.661,2867,0.661,2868,0.661,2869,0.661,2870,0.661,2871,0.661,2872,0.661,2873,0.661,2874,0.661,2875,0.661,2876,0.661,2877,0.661,2878,0.661,2879,0.661,2880,1.187,2881,0.661,2882,0.661,2883,0.661,2884,0.661,2885,0.661,2886,0.661,2887,0.661,2888,0.661,2889,0.661,2890,0.661,2891,0.661,2892,0.661,2893,0.661,2894,0.661,2895,0.661]]],"invertedIndex":[["",{"_index":40,"title":{},"body":{"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"pipes/KeysPipe.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{},"contributing.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"properties.html":{},"miscellaneous/variables.html":{}}}],["0",{"_index":371,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"pipes/KeysPipe.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["0.12.0",{"_index":636,"title":{},"body":{"dependencies.html":{}}}],["0.6",{"_index":155,"title":{},"body":{"components/AppComponent.html":{}}}],["0/1",{"_index":592,"title":{},"body":{"coverage.html":{}}}],["0/10",{"_index":598,"title":{},"body":{"coverage.html":{}}}],["0/5",{"_index":589,"title":{},"body":{"coverage.html":{}}}],["0/9",{"_index":614,"title":{},"body":{"coverage.html":{}}}],["004|myst|tadeo",{"_index":2677,"title":{},"body":{"miscellaneous/variables.html":{}}}],["01c|gt",{"_index":1800,"title":{},"body":{"miscellaneous/variables.html":{}}}],["01d|f",{"_index":2085,"title":{},"body":{"miscellaneous/variables.html":{}}}],["02f|f",{"_index":2086,"title":{},"body":{"miscellaneous/variables.html":{}}}],["03e|sgpt12|sgpt13|sgpt114|sgpt121|sgpt122|sgpt123",{"_index":2199,"title":{},"body":{"miscellaneous/variables.html":{}}}],["05e|f",{"_index":2087,"title":{},"body":{"miscellaneous/variables.html":{}}}],["06c|lg",{"_index":2074,"title":{},"body":{"miscellaneous/variables.html":{}}}],["06d|\\bn",{"_index":2271,"title":{},"body":{"miscellaneous/variables.html":{}}}],["0704s|nt",{"_index":2744,"title":{},"body":{"miscellaneous/variables.html":{}}}],["08/11/2016",{"_index":431,"title":{},"body":{"classes/ReTree.html":{},"miscellaneous/variables.html":{}}}],["0806c|nt",{"_index":2747,"title":{},"body":{"miscellaneous/variables.html":{}}}],["08d",{"_index":2272,"title":{},"body":{"miscellaneous/variables.html":{}}}],["08|tb",{"_index":2476,"title":{},"body":{"miscellaneous/variables.html":{}}}],["09)|qualcore",{"_index":2477,"title":{},"body":{"miscellaneous/variables.html":{}}}],["0902s",{"_index":2751,"title":{},"body":{"miscellaneous/variables.html":{}}}],["0902s|nt",{"_index":2750,"title":{},"body":{"miscellaneous/variables.html":{}}}],["0907s|nt",{"_index":2749,"title":{},"body":{"miscellaneous/variables.html":{}}}],["0909t|nt",{"_index":2748,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1",{"_index":176,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"pipes/KeysPipe.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["1.3.3",{"_index":652,"title":{},"body":{"index.html":{}}}],["1.3.5",{"_index":654,"title":{},"body":{"index.html":{}}}],["1.4.1",{"_index":656,"title":{},"body":{"index.html":{}}}],["1.4.5",{"_index":658,"title":{},"body":{"index.html":{}}}],["1/1",{"_index":608,"title":{},"body":{"coverage.html":{}}}],["1/4",{"_index":616,"title":{},"body":{"coverage.html":{}}}],["10",{"_index":1720,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10)\\\\b",{"_index":2232,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10.0",{"_index":1769,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10.10",{"_index":1784,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10.11",{"_index":1785,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10.12",{"_index":1786,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10.13",{"_index":1787,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10.14",{"_index":1788,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10.15",{"_index":1789,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10.16",{"_index":1790,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10.3",{"_index":1776,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10.3|mac",{"_index":1775,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10.4",{"_index":1778,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10.4|mac",{"_index":1777,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10.5",{"_index":1779,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10.6",{"_index":1780,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10.7",{"_index":1781,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10.8",{"_index":1782,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10.9",{"_index":1783,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10.x",{"_index":659,"title":{},"body":{"index.html":{}}}],["100",{"_index":178,"title":{},"body":{"components/AppComponent.html":{},"coverage.html":{}}}],["1001",{"_index":2576,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1002|freetab",{"_index":2582,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1003",{"_index":2589,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1004|freetab",{"_index":2585,"title":{},"body":{"miscellaneous/variables.html":{}}}],["100px",{"_index":168,"title":{},"body":{"components/AppComponent.html":{}}}],["100|spx",{"_index":1666,"title":{},"body":{"miscellaneous/variables.html":{}}}],["100|tab07",{"_index":2127,"title":{},"body":{"miscellaneous/variables.html":{}}}],["100|tab09",{"_index":2148,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1010",{"_index":2789,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1014",{"_index":2574,"title":{},"body":{"miscellaneous/variables.html":{}}}],["101|masterchef)\\\\b",{"_index":2826,"title":{},"body":{"miscellaneous/variables.html":{}}}],["101|s7",{"_index":2257,"title":{},"body":{"miscellaneous/variables.html":{}}}],["101|tab07",{"_index":2128,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1020|tm",{"_index":2323,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1027",{"_index":2478,"title":{},"body":{"miscellaneous/variables.html":{}}}],["103|s7",{"_index":2258,"title":{},"body":{"miscellaneous/variables.html":{}}}],["104|s7",{"_index":2259,"title":{},"body":{"miscellaneous/variables.html":{}}}],["105|s7",{"_index":2260,"title":{},"body":{"miscellaneous/variables.html":{}}}],["106",{"_index":2261,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10\\.0",{"_index":881,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10d|m532|q572)\\b",{"_index":2088,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10e|viewpad",{"_index":2726,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10f|tb2",{"_index":2114,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10hd|\\\\btp750\\\\b|\\\\bqtaqz3\\\\b|wvt101|tm1088|kt107",{"_index":2895,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10pi|viewpad",{"_index":2725,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10px",{"_index":148,"title":{},"body":{"components/AppComponent.html":{}}}],["10s|viewpad",{"_index":2727,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10w32|tbl",{"_index":2868,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10wdkbo2013|tbl",{"_index":2860,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10wdkb|tbl",{"_index":2859,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10wkb|tbl",{"_index":2869,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10|dell",{"_index":2123,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10|hexen",{"_index":2691,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10|ideos",{"_index":2253,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10|memphis",{"_index":2692,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10|nexo",{"_index":2848,"title":{},"body":{"miscellaneous/variables.html":{}}}],["11",{"_index":1699,"title":{},"body":{"miscellaneous/variables.html":{}}}],["11.x",{"_index":661,"title":{},"body":{"index.html":{}}}],["11_0",{"_index":1791,"title":{},"body":{"miscellaneous/variables.html":{}}}],["11|venue",{"_index":2119,"title":{},"body":{"miscellaneous/variables.html":{}}}],["12",{"_index":1736,"title":{},"body":{"miscellaneous/variables.html":{}}}],["12)\\b",{"_index":1668,"title":{},"body":{"miscellaneous/variables.html":{}}}],["12.x",{"_index":663,"title":{},"body":{"index.html":{}}}],["1207)\\b",{"_index":2877,"title":{},"body":{"miscellaneous/variables.html":{}}}],["120|spt",{"_index":1662,"title":{},"body":{"miscellaneous/variables.html":{}}}],["126se",{"_index":2368,"title":{},"body":{"miscellaneous/variables.html":{}}}],["13",{"_index":346,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"miscellaneous/variables.html":{}}}],["13.x",{"_index":665,"title":{},"body":{"index.html":{}}}],["1331|freetab",{"_index":2584,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1331|megapad",{"_index":2720,"title":{},"body":{"miscellaneous/variables.html":{}}}],["14",{"_index":1733,"title":{},"body":{"miscellaneous/variables.html":{}}}],["14.x",{"_index":667,"title":{},"body":{"index.html":{}}}],["140|spx",{"_index":1663,"title":{},"body":{"miscellaneous/variables.html":{}}}],["146se|tb",{"_index":2367,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1497",{"_index":2622,"title":{},"body":{"miscellaneous/variables.html":{}}}],["15",{"_index":1731,"title":{},"body":{"miscellaneous/variables.html":{}}}],["15.0.0",{"_index":625,"title":{},"body":{"dependencies.html":{}}}],["15.0.2",{"_index":619,"title":{},"body":{"dependencies.html":{}}}],["15.x",{"_index":669,"title":{},"body":{"index.html":{}}}],["150|tab07",{"_index":2129,"title":{},"body":{"miscellaneous/variables.html":{}}}],["150|tab08",{"_index":2144,"title":{},"body":{"miscellaneous/variables.html":{}}}],["150|tab10",{"_index":2151,"title":{},"body":{"miscellaneous/variables.html":{}}}],["151",{"_index":2130,"title":{},"body":{"miscellaneous/variables.html":{}}}],["152|tab07",{"_index":2132,"title":{},"body":{"miscellaneous/variables.html":{}}}],["16",{"_index":1729,"title":{},"body":{"miscellaneous/variables.html":{}}}],["17b|t",{"_index":2648,"title":{},"body":{"miscellaneous/variables.html":{}}}],["17p\\b",{"_index":2649,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1851|megapad",{"_index":2721,"title":{},"body":{"miscellaneous/variables.html":{}}}],["19300|sgh",{"_index":994,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1\\b",{"_index":2818,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1w\\b",{"_index":2840,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1|st702xx",{"_index":2375,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1|st70408",{"_index":2374,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1|vt10416",{"_index":2373,"title":{},"body":{"miscellaneous/variables.html":{}}}],["2",{"_index":812,"title":{},"body":{"overview.html":{},"miscellaneous/variables.html":{}}}],["2.0.5",{"_index":660,"title":{},"body":{"index.html":{}}}],["2.0|connect",{"_index":2481,"title":{},"body":{"miscellaneous/variables.html":{}}}],["2.0|me",{"_index":2483,"title":{},"body":{"miscellaneous/variables.html":{}}}],["2.1.0",{"_index":662,"title":{},"body":{"index.html":{}}}],["2.2.2",{"_index":629,"title":{},"body":{"dependencies.html":{}}}],["2.4.1",{"_index":634,"title":{},"body":{"dependencies.html":{}}}],["200)\\\\b",{"_index":2158,"title":{},"body":{"miscellaneous/variables.html":{}}}],["2000",{"_index":1708,"title":{},"body":{"miscellaneous/variables.html":{}}}],["2003",{"_index":1712,"title":{},"body":{"miscellaneous/variables.html":{}}}],["200|tab07",{"_index":2133,"title":{},"body":{"miscellaneous/variables.html":{}}}],["200|tab08",{"_index":2145,"title":{},"body":{"miscellaneous/variables.html":{}}}],["201",{"_index":2134,"title":{},"body":{"miscellaneous/variables.html":{}}}],["201c|s7",{"_index":2255,"title":{},"body":{"miscellaneous/variables.html":{}}}],["201|s7",{"_index":2263,"title":{},"body":{"miscellaneous/variables.html":{}}}],["201|tab10",{"_index":2152,"title":{},"body":{"miscellaneous/variables.html":{}}}],["201|tab274euk|tab275euk|tab374euk|tab462euk|tab474euk|tab9",{"_index":2157,"title":{},"body":{"miscellaneous/variables.html":{}}}],["2021",{"_index":746,"title":{},"body":{"license.html":{}}}],["202u|s7",{"_index":2256,"title":{},"body":{"miscellaneous/variables.html":{}}}],["2096|freetab",{"_index":2572,"title":{},"body":{"miscellaneous/variables.html":{}}}],["20px",{"_index":164,"title":{},"body":{"components/AppComponent.html":{}}}],["210|tab07",{"_index":2136,"title":{},"body":{"miscellaneous/variables.html":{}}}],["211",{"_index":2153,"title":{},"body":{"miscellaneous/variables.html":{}}}],["211|tab07",{"_index":2137,"title":{},"body":{"miscellaneous/variables.html":{}}}],["211|tab09",{"_index":2149,"title":{},"body":{"miscellaneous/variables.html":{}}}],["212|tab07",{"_index":2138,"title":{},"body":{"miscellaneous/variables.html":{}}}],["214|tab07",{"_index":2139,"title":{},"body":{"miscellaneous/variables.html":{}}}],["2151",{"_index":2722,"title":{},"body":{"miscellaneous/variables.html":{}}}],["21|hp",{"_index":2024,"title":{},"body":{"miscellaneous/variables.html":{}}}],["220|tab07",{"_index":2140,"title":{},"body":{"miscellaneous/variables.html":{}}}],["22q|t7",{"_index":2646,"title":{},"body":{"miscellaneous/variables.html":{}}}],["23",{"_index":599,"title":{},"body":{"coverage.html":{}}}],["25",{"_index":615,"title":{},"body":{"coverage.html":{}}}],["2520",{"_index":2194,"title":{},"body":{"miscellaneous/variables.html":{}}}],["26uc|sgh",{"_index":1249,"title":{},"body":{"miscellaneous/variables.html":{}}}],["2a|surftab",{"_index":2379,"title":{},"body":{"miscellaneous/variables.html":{}}}],["2g",{"_index":2482,"title":{},"body":{"miscellaneous/variables.html":{}}}],["2g|z99|z930|z999|z990|z909|z919|z900",{"_index":2281,"title":{},"body":{"miscellaneous/variables.html":{}}}],["2|cink",{"_index":1647,"title":{},"body":{"miscellaneous/variables.html":{}}}],["2|st10216",{"_index":2378,"title":{},"body":{"miscellaneous/variables.html":{}}}],["2|st80208|st97216|st70104",{"_index":2376,"title":{},"body":{"miscellaneous/variables.html":{}}}],["2|vt10416",{"_index":2377,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3",{"_index":1698,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3.x.x",{"_index":664,"title":{},"body":{"index.html":{}}}],["30|tab09",{"_index":2147,"title":{},"body":{"miscellaneous/variables.html":{}}}],["310|sp",{"_index":1659,"title":{},"body":{"miscellaneous/variables.html":{}}}],["340|xt",{"_index":1658,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3603p|nt",{"_index":2743,"title":{},"body":{"miscellaneous/variables.html":{}}}],["360|sp60|spt",{"_index":1660,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3702s|nt",{"_index":2742,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3702|nt",{"_index":2741,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3805c",{"_index":2746,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3805c|nt",{"_index":2745,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3ds|switch",{"_index":1680,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3g",{"_index":2442,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3ge|t720",{"_index":2775,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3g|\\\\bp70h\\\\b|p79hd",{"_index":2762,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3g|\\\\bp78hd\\\\b|\\\\ba78\\\\b|\\\\bp75\\\\b|g17s",{"_index":2766,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3g|\\\\bp79hd\\\\b|\\\\bp89s\\\\b|\\\\ba88\\\\b",{"_index":2764,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3g|\\\\bp85t\\\\b|\\\\bp90\\\\b",{"_index":2768,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3g|\\\\bp90hd\\\\b|p89",{"_index":2760,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3g|\\\\bx80h\\\\b|p98",{"_index":2758,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3g|\\\\bx89\\\\b|p80",{"_index":2757,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3g|g17h",{"_index":2767,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3g|g18d",{"_index":2763,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3g|nexo",{"_index":2853,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3g|tab07",{"_index":2135,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3g|tab08",{"_index":2146,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3g|visture",{"_index":2498,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3g|x98",{"_index":2761,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3ix)|xcd28|xcd35|\\b001dl\\b|\\b101dl\\b|\\bgs01\\b",{"_index":979,"title":{},"body":{"miscellaneous/variables.html":{}}}],["4",{"_index":1725,"title":{},"body":{"miscellaneous/variables.html":{}}}],["4.0|winnt4.0|winnt|windows",{"_index":1772,"title":{},"body":{"miscellaneous/variables.html":{}}}],["4.18.2",{"_index":630,"title":{},"body":{"dependencies.html":{}}}],["4.90|windows",{"_index":1757,"title":{},"body":{"miscellaneous/variables.html":{}}}],["4.x.x",{"_index":666,"title":{},"body":{"index.html":{}}}],["4/17",{"_index":600,"title":{},"body":{"coverage.html":{}}}],["400|tab07",{"_index":2141,"title":{},"body":{"miscellaneous/variables.html":{}}}],["400|tab10",{"_index":2155,"title":{},"body":{"miscellaneous/variables.html":{}}}],["4052r",{"_index":1678,"title":{},"body":{"miscellaneous/variables.html":{}}}],["40px",{"_index":141,"title":{},"body":{"components/AppComponent.html":{}}}],["410|tab10",{"_index":2150,"title":{},"body":{"miscellaneous/variables.html":{}}}],["410|tab13",{"_index":2156,"title":{},"body":{"miscellaneous/variables.html":{}}}],["416|tb",{"_index":2366,"title":{},"body":{"miscellaneous/variables.html":{}}}],["430hd|tb",{"_index":2361,"title":{},"body":{"miscellaneous/variables.html":{}}}],["431hd|tb",{"_index":2360,"title":{},"body":{"miscellaneous/variables.html":{}}}],["434hd|tb",{"_index":2348,"title":{},"body":{"miscellaneous/variables.html":{}}}],["436|tb",{"_index":2365,"title":{},"body":{"miscellaneous/variables.html":{}}}],["446",{"_index":2364,"title":{},"body":{"miscellaneous/variables.html":{}}}],["470hd|tb",{"_index":2359,"title":{},"body":{"miscellaneous/variables.html":{}}}],["485",{"_index":2142,"title":{},"body":{"miscellaneous/variables.html":{}}}],["4\\b",{"_index":887,"title":{},"body":{"miscellaneous/variables.html":{}}}],["4gb",{"_index":2684,"title":{},"body":{"miscellaneous/variables.html":{}}}],["4gb|memphis",{"_index":2693,"title":{},"body":{"miscellaneous/variables.html":{}}}],["4gb|stone",{"_index":2686,"title":{},"body":{"miscellaneous/variables.html":{}}}],["4g|\\\\bp80\\\\b|\\\\bx90hd\\\\b|x98",{"_index":2754,"title":{},"body":{"miscellaneous/variables.html":{}}}],["4g|android.*\\bevo\\b|t",{"_index":970,"title":{},"body":{"miscellaneous/variables.html":{}}}],["4g|highway|getaway|stairway|darkside|darkfull|darknight|darkmoon|slide|wax",{"_index":1641,"title":{},"body":{"miscellaneous/variables.html":{}}}],["4g|pg41200|pg09410",{"_index":2047,"title":{},"body":{"miscellaneous/variables.html":{}}}],["4g|rainbow|bloom",{"_index":1642,"title":{},"body":{"miscellaneous/variables.html":{}}}],["4px",{"_index":159,"title":{},"body":{"components/AppComponent.html":{}}}],["4|nexus",{"_index":975,"title":{},"body":{"miscellaneous/variables.html":{}}}],["4|tagi",{"_index":2893,"title":{},"body":{"miscellaneous/variables.html":{}}}],["5",{"_index":97,"title":{},"body":{"components/AppComponent.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["5.0.0",{"_index":813,"title":{},"body":{"properties.html":{}}}],["5.0|windows",{"_index":1759,"title":{},"body":{"miscellaneous/variables.html":{}}}],["5.1|windows",{"_index":1760,"title":{},"body":{"miscellaneous/variables.html":{}}}],["5.2",{"_index":1761,"title":{},"body":{"miscellaneous/variables.html":{}}}],["5.x.x",{"_index":668,"title":{},"body":{"index.html":{}}}],["500hd|tb",{"_index":2358,"title":{},"body":{"miscellaneous/variables.html":{}}}],["501|rmt",{"_index":2636,"title":{},"body":{"miscellaneous/variables.html":{}}}],["504|tb",{"_index":2363,"title":{},"body":{"miscellaneous/variables.html":{}}}],["506|tb",{"_index":2362,"title":{},"body":{"miscellaneous/variables.html":{}}}],["527|tab",{"_index":2446,"title":{},"body":{"miscellaneous/variables.html":{}}}],["560|mtv",{"_index":2235,"title":{},"body":{"miscellaneous/variables.html":{}}}],["5|nexus",{"_index":976,"title":{},"body":{"miscellaneous/variables.html":{}}}],["5|spx",{"_index":1664,"title":{},"body":{"miscellaneous/variables.html":{}}}],["6",{"_index":643,"title":{},"body":{"index.html":{},"miscellaneous/variables.html":{}}}],["6.0",{"_index":1762,"title":{},"body":{"miscellaneous/variables.html":{}}}],["6.1",{"_index":1764,"title":{},"body":{"miscellaneous/variables.html":{}}}],["6.2",{"_index":1768,"title":{},"body":{"miscellaneous/variables.html":{}}}],["6.3",{"_index":1766,"title":{},"body":{"miscellaneous/variables.html":{}}}],["600px",{"_index":138,"title":{},"body":{"components/AppComponent.html":{}}}],["601|rmt",{"_index":2635,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7",{"_index":956,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7.4|freetab",{"_index":2569,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7.5",{"_index":1770,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7.5.7",{"_index":632,"title":{},"body":{"dependencies.html":{}}}],["7.5|freetab",{"_index":2573,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7.x",{"_index":653,"title":{},"body":{"index.html":{}}}],["7002|freetab",{"_index":2581,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7003|freetab",{"_index":2580,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7004|freetab",{"_index":2570,"title":{},"body":{"miscellaneous/variables.html":{}}}],["700hd|tb",{"_index":2357,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7010|tm",{"_index":2314,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7011|tm",{"_index":2313,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7016|tm",{"_index":2298,"title":{},"body":{"miscellaneous/variables.html":{}}}],["701|pad",{"_index":2701,"title":{},"body":{"miscellaneous/variables.html":{}}}],["701|rme",{"_index":2634,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7020|tm",{"_index":2312,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7021|tm",{"_index":2311,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7022|tm",{"_index":2310,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7023|tm",{"_index":2315,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7024|tm",{"_index":2299,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7025",{"_index":2316,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7026|tm",{"_index":2300,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7027w|tm",{"_index":2319,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7037w|tm",{"_index":2317,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7038w|tm",{"_index":2318,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7041|tm",{"_index":2301,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7043|tm",{"_index":2302,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7045|tm",{"_index":2295,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7047",{"_index":2303,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7055|tm",{"_index":2296,"title":{},"body":{"miscellaneous/variables.html":{}}}],["705a|rmt",{"_index":2633,"title":{},"body":{"miscellaneous/variables.html":{}}}],["705a|tb",{"_index":2338,"title":{},"body":{"miscellaneous/variables.html":{}}}],["707a|tb",{"_index":2337,"title":{},"body":{"miscellaneous/variables.html":{}}}],["709a|tb",{"_index":2339,"title":{},"body":{"miscellaneous/variables.html":{}}}],["70|79|80|90|97|101|familypad|)(b|c|)(g10",{"_index":2182,"title":{},"body":{"miscellaneous/variables.html":{}}}],["710hd|tb",{"_index":2347,"title":{},"body":{"miscellaneous/variables.html":{}}}],["710|b1",{"_index":2059,"title":{},"body":{"miscellaneous/variables.html":{}}}],["711",{"_index":2637,"title":{},"body":{"miscellaneous/variables.html":{}}}],["711a|tb",{"_index":2340,"title":{},"body":{"miscellaneous/variables.html":{}}}],["711|a1",{"_index":2060,"title":{},"body":{"miscellaneous/variables.html":{}}}],["712|pad",{"_index":2702,"title":{},"body":{"miscellaneous/variables.html":{}}}],["714|pad",{"_index":2703,"title":{},"body":{"miscellaneous/variables.html":{}}}],["715a|tb",{"_index":2336,"title":{},"body":{"miscellaneous/variables.html":{}}}],["716|pad",{"_index":2704,"title":{},"body":{"miscellaneous/variables.html":{}}}],["717|pad",{"_index":2705,"title":{},"body":{"miscellaneous/variables.html":{}}}],["718|pad",{"_index":2706,"title":{},"body":{"miscellaneous/variables.html":{}}}],["719a|tb",{"_index":2332,"title":{},"body":{"miscellaneous/variables.html":{}}}],["71|enjoy",{"_index":2230,"title":{},"body":{"miscellaneous/variables.html":{}}}],["720hd|tb",{"_index":2356,"title":{},"body":{"miscellaneous/variables.html":{}}}],["720|pad",{"_index":2707,"title":{},"body":{"miscellaneous/variables.html":{}}}],["721",{"_index":2708,"title":{},"body":{"miscellaneous/variables.html":{}}}],["721hd|tb",{"_index":2346,"title":{},"body":{"miscellaneous/variables.html":{}}}],["722hd|tb",{"_index":2355,"title":{},"body":{"miscellaneous/variables.html":{}}}],["722|pad",{"_index":2710,"title":{},"body":{"miscellaneous/variables.html":{}}}],["723a|tb",{"_index":2335,"title":{},"body":{"miscellaneous/variables.html":{}}}],["725a|tb",{"_index":2331,"title":{},"body":{"miscellaneous/variables.html":{}}}],["727a|tb",{"_index":2330,"title":{},"body":{"miscellaneous/variables.html":{}}}],["730hd|tb",{"_index":2354,"title":{},"body":{"miscellaneous/variables.html":{}}}],["73k|primo",{"_index":2218,"title":{},"body":{"miscellaneous/variables.html":{}}}],["73l|primo",{"_index":2219,"title":{},"body":{"miscellaneous/variables.html":{}}}],["73|primo",{"_index":2225,"title":{},"body":{"miscellaneous/variables.html":{}}}],["740hd|tb",{"_index":2353,"title":{},"body":{"miscellaneous/variables.html":{}}}],["750hd",{"_index":2352,"title":{},"body":{"miscellaneous/variables.html":{}}}],["75|primo",{"_index":2223,"title":{},"body":{"miscellaneous/variables.html":{}}}],["760hd|tb",{"_index":2351,"title":{},"body":{"miscellaneous/variables.html":{}}}],["76|primo",{"_index":2224,"title":{},"body":{"miscellaneous/variables.html":{}}}],["770hd|tb",{"_index":2345,"title":{},"body":{"miscellaneous/variables.html":{}}}],["771a",{"_index":2328,"title":{},"body":{"miscellaneous/variables.html":{}}}],["772a|tm",{"_index":2294,"title":{},"body":{"miscellaneous/variables.html":{}}}],["77|primo",{"_index":2221,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7800|freetab",{"_index":2571,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7801",{"_index":2583,"title":{},"body":{"miscellaneous/variables.html":{}}}],["780hd|tb",{"_index":2344,"title":{},"body":{"miscellaneous/variables.html":{}}}],["790hd|tb",{"_index":2343,"title":{},"body":{"miscellaneous/variables.html":{}}}],["790|pad",{"_index":2711,"title":{},"body":{"miscellaneous/variables.html":{}}}],["790|rm",{"_index":2629,"title":{},"body":{"miscellaneous/variables.html":{}}}],["792|pad",{"_index":2712,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7e|viewsonic",{"_index":2730,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7|8|10)|hp",{"_index":2019,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7|cream|cream",{"_index":2669,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7|dell",{"_index":2121,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7|enjoy",{"_index":2231,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7|essentia|galatea|fusion|onix",{"_index":2665,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7|kandy|scape|saphyr",{"_index":2672,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7|landa|titan|scooby|deox|stella|themis|argon",{"_index":2666,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7|myst|tab7",{"_index":2676,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7|neron",{"_index":2671,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7|rebel|biox|rebel",{"_index":2673,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7|sygnus|hexen|finity",{"_index":2668,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7|windows",{"_index":1763,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8",{"_index":1717,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8.1",{"_index":1771,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8.1|windows",{"_index":1765,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8.x",{"_index":655,"title":{},"body":{"index.html":{}}}],["8001|freetab",{"_index":2577,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8002|freetab",{"_index":2586,"title":{},"body":{"miscellaneous/variables.html":{}}}],["800ng|endeavour",{"_index":2788,"title":{},"body":{"miscellaneous/variables.html":{}}}],["800|sp",{"_index":1661,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8014|freetab",{"_index":2587,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8041|tm",{"_index":2305,"title":{},"body":{"miscellaneous/variables.html":{}}}],["805a|tb",{"_index":2334,"title":{},"body":{"miscellaneous/variables.html":{}}}],["807a|tb",{"_index":2327,"title":{},"body":{"miscellaneous/variables.html":{}}}],["80|xt",{"_index":1656,"title":{},"body":{"miscellaneous/variables.html":{}}}],["81",{"_index":2226,"title":{},"body":{"miscellaneous/variables.html":{}}}],["810|\\\\ba3",{"_index":2064,"title":{},"body":{"miscellaneous/variables.html":{}}}],["810|a1",{"_index":2061,"title":{},"body":{"miscellaneous/variables.html":{}}}],["810|ctp",{"_index":2505,"title":{},"body":{"miscellaneous/variables.html":{}}}],["811|a1",{"_index":2062,"title":{},"body":{"miscellaneous/variables.html":{}}}],["818|ctp",{"_index":2506,"title":{},"body":{"miscellaneous/variables.html":{}}}],["81l|primo",{"_index":2220,"title":{},"body":{"miscellaneous/variables.html":{}}}],["823a|tb",{"_index":2333,"title":{},"body":{"miscellaneous/variables.html":{}}}],["828|ctp",{"_index":2507,"title":{},"body":{"miscellaneous/variables.html":{}}}],["830)\\\\b|w3",{"_index":2063,"title":{},"body":{"miscellaneous/variables.html":{}}}],["838|ctp",{"_index":2508,"title":{},"body":{"miscellaneous/variables.html":{}}}],["840hd|tb",{"_index":2350,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8504f",{"_index":2116,"title":{},"body":{"miscellaneous/variables.html":{}}}],["850m|yt3",{"_index":2101,"title":{},"body":{"miscellaneous/variables.html":{}}}],["860hd|tb",{"_index":2349,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8703f|tab2a7",{"_index":2113,"title":{},"body":{"miscellaneous/variables.html":{}}}],["878g|rmd",{"_index":2631,"title":{},"body":{"miscellaneous/variables.html":{}}}],["880hd|tb",{"_index":2342,"title":{},"body":{"miscellaneous/variables.html":{}}}],["888|ctp",{"_index":2509,"title":{},"body":{"miscellaneous/variables.html":{}}}],["890hd",{"_index":2341,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8gb|andromeda|silken|x2|andromeda",{"_index":2687,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8gb|myst|draco",{"_index":2675,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8gb|onix",{"_index":2694,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8g|tblt79|tbl",{"_index":2866,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8w16|tbl",{"_index":2867,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8|planet|triton|unique",{"_index":2690,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8|slate",{"_index":2023,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8|sp",{"_index":1665,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8|spx",{"_index":1667,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8|venue",{"_index":2120,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8|windows",{"_index":1767,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9",{"_index":944,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9,7|touch",{"_index":2689,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9.]+|tolino",{"_index":2642,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9.x",{"_index":657,"title":{},"body":{"index.html":{}}}],["9000|freetab",{"_index":2568,"title":{},"body":{"miscellaneous/variables.html":{}}}],["900|f160|f180k|f180l|f180s|730|855|l160|ls740|ls840|ls970",{"_index":1597,"title":{},"body":{"miscellaneous/variables.html":{}}}],["900|hp",{"_index":2021,"title":{},"body":{"miscellaneous/variables.html":{}}}],["900|pad",{"_index":2713,"title":{},"body":{"miscellaneous/variables.html":{}}}],["90|enjoy",{"_index":2229,"title":{},"body":{"miscellaneous/variables.html":{}}}],["91|primo",{"_index":2228,"title":{},"body":{"miscellaneous/variables.html":{}}}],["930|sx",{"_index":1657,"title":{},"body":{"miscellaneous/variables.html":{}}}],["93|primo",{"_index":2222,"title":{},"body":{"miscellaneous/variables.html":{}}}],["95",{"_index":1701,"title":{},"body":{"miscellaneous/variables.html":{}}}],["95|win95|windows_95",{"_index":1754,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9702|freetab",{"_index":2579,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9704|freetab",{"_index":2588,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9706|freetab",{"_index":2578,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9715d|pad",{"_index":2714,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9716dr|pad",{"_index":2715,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9718dr|pad",{"_index":2716,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9719qr",{"_index":2717,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9720qr|telepad1030|telepad1032|telepad730|telepad731|telepad732|telepad735q|telepad830|telepad9730",{"_index":2718,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9720|tm",{"_index":2320,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9725|tm",{"_index":2321,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9737w|tm",{"_index":2322,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9738w|tm",{"_index":2324,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9740|tm",{"_index":2325,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9741|tm",{"_index":2306,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9743w|tb",{"_index":2326,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9747|tm",{"_index":2307,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9748|tm",{"_index":2308,"title":{},"body":{"miscellaneous/variables.html":{}}}],["974r|rmt",{"_index":2632,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9750|tm",{"_index":2297,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9751|tm",{"_index":2309,"title":{},"body":{"miscellaneous/variables.html":{}}}],["978|ctp",{"_index":2510,"title":{},"body":{"miscellaneous/variables.html":{}}}],["97g4|an10g2|an7bg3|an7fg3|an8g3|an8cg3|an7g3|an9g3|an7dg3|an7dg3st|an7dg3childpad|an10bg3|an10bg3dt|an9g2",{"_index":2162,"title":{},"body":{"miscellaneous/variables.html":{}}}],["97r|archos5|\\\\barchos",{"_index":2181,"title":{},"body":{"miscellaneous/variables.html":{}}}],["98",{"_index":1704,"title":{},"body":{"miscellaneous/variables.html":{}}}],["980|ctp",{"_index":2511,"title":{},"body":{"miscellaneous/variables.html":{}}}],["987|ctp",{"_index":2512,"title":{},"body":{"miscellaneous/variables.html":{}}}],["988|ctp",{"_index":2513,"title":{},"body":{"miscellaneous/variables.html":{}}}],["989",{"_index":2514,"title":{},"body":{"miscellaneous/variables.html":{}}}],["98|win98",{"_index":1758,"title":{},"body":{"miscellaneous/variables.html":{}}}],["997|rmd",{"_index":2630,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9]+|family",{"_index":2625,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9]+|smarttabii10|smarttabii7|vf",{"_index":2621,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9]+|tablc7|looney",{"_index":2617,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9]{0,2",{"_index":955,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9]{0,2}.?[0",{"_index":954,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9]{1,2}.?[0",{"_index":953,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9]{3,4",{"_index":1605,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9]{4}.[0",{"_index":952,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9_",{"_index":1793,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9x",{"_index":1756,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9x\\b",{"_index":1692,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9|dps",{"_index":2493,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9|neon",{"_index":2682,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9|t9w|amity",{"_index":2683,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]?3g|primus",{"_index":2605,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]?70c|onyx",{"_index":2595,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]?78e|luna",{"_index":2594,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]?79hd|emerald",{"_index":2593,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]?94",{"_index":2604,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]?94hd",{"_index":2606,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]?evo",{"_index":2609,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]?hd|orin",{"_index":2599,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]?m9|primus",{"_index":2603,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]?qs|android.*\\\\bq8\\\\b|sirius",{"_index":2608,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]?qs|sirius",{"_index":2610,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]?qs|spirit",{"_index":2611,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]?s)\\\\b",{"_index":2612,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]?s|diamond",{"_index":2592,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]?s|magnet",{"_index":2602,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]?s|onyx",{"_index":2596,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]?s|otis",{"_index":2600,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]?s|speedstar",{"_index":2601,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]?z",{"_index":2597,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]mini|evolio",{"_index":2794,"title":{},"body":{"miscellaneous/variables.html":{}}}],["__buttons",{"_index":179,"title":{},"body":{"components/AppComponent.html":{}}}],["__input",{"_index":175,"title":{},"body":{"components/AppComponent.html":{}}}],["__non_webpack_require__",{"_index":595,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["__non_webpack_require__.main",{"_index":826,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a01l|bah",{"_index":2265,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a101|tab",{"_index":2557,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a1021|tab",{"_index":2530,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a103|tab",{"_index":2558,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a104.2|r105bk|m713g|a972bk|tab",{"_index":2560,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a1042",{"_index":2565,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a104|tab",{"_index":2559,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a107|sgh",{"_index":1250,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a10\\\\b|\\\\ba3",{"_index":2065,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a117|sgh",{"_index":1251,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a11\\\\b",{"_index":2066,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a120|sph",{"_index":1462,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a1260|a1680|a555|a853",{"_index":982,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a127|sgh",{"_index":1252,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a1301|tx",{"_index":2436,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a137",{"_index":1253,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a157|sgh",{"_index":1255,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a167|sgh",{"_index":1256,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a177|sgh",{"_index":1257,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a187|sgh",{"_index":1258,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a197|sgh",{"_index":1259,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a1_07|ct704|ct1002|\\\\bm721\\\\b|rk30sdk|\\\\bevotab\\\\b|m758a|et904|alumium10|smartfren",{"_index":2890,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a1|a10",{"_index":2098,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a20\\\\b|\\\\ba3",{"_index":2068,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a227|sgh",{"_index":1260,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a237|sgh",{"_index":1261,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a257|sgh",{"_index":1262,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a30",{"_index":2069,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a310f|gt",{"_index":1590,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a310|sch",{"_index":1182,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a400",{"_index":1463,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a420|sph",{"_index":1465,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a437|sgh",{"_index":1263,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a460|sph",{"_index":1466,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a500|sph",{"_index":1467,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a517|sgh",{"_index":1264,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a530|sch",{"_index":1183,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a560|sph",{"_index":1468,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a570|sch",{"_index":1184,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a597",{"_index":1265,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a600s|vega",{"_index":1635,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a600|sph",{"_index":1469,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a610|sch",{"_index":1185,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a620|sph",{"_index":1470,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a630",{"_index":1186,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a630k|im",{"_index":1634,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a637|sgh",{"_index":1266,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a650s|im",{"_index":1633,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a650|sch",{"_index":1188,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a657|sgh",{"_index":1267,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a660|sph",{"_index":1471,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a667|sgh",{"_index":1268,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a687|sgh",{"_index":1269,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a690l",{"_index":1631,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a690s|im",{"_index":1632,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a697|sgh",{"_index":1270,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a700|sph",{"_index":1472,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a707|sgh",{"_index":1271,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a710k|im",{"_index":1630,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a717|sgh",{"_index":1272,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a71|b1",{"_index":2058,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a720l|im",{"_index":1629,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a725l|im",{"_index":1621,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a727|sgh",{"_index":1273,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a730s|im",{"_index":1628,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a737|sgh",{"_index":1274,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a73|tab",{"_index":2550,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a740s|im",{"_index":1627,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a740|sph",{"_index":1473,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a741l|tab",{"_index":2527,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a741|tab",{"_index":2526,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a747|sgh",{"_index":1275,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a750k|im",{"_index":1626,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a760s|im",{"_index":1625,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a760|sph",{"_index":1474,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a767",{"_index":1276,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a770k|im",{"_index":1624,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a775c|im",{"_index":1623,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a777|sgh",{"_index":1277,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a78",{"_index":2651,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a780l|im",{"_index":1622,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a7842|tab",{"_index":2525,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a790",{"_index":1475,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a790|sch",{"_index":1189,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a795|sch",{"_index":1190,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a797|sgh",{"_index":1278,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a800s|im",{"_index":1618,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a800|sph",{"_index":1476,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a810k|im",{"_index":1616,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a810s|im",{"_index":1617,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a817|sgh",{"_index":1279,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a820l|im",{"_index":1615,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a820|sph",{"_index":1477,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a827|sgh",{"_index":1280,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a830k|im",{"_index":1613,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a830l|im",{"_index":1612,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a830s|im",{"_index":1614,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a837|sgh",{"_index":1281,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a840s|im",{"_index":1611,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a840|sph",{"_index":1478,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a847|sgh",{"_index":1282,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a850s|im",{"_index":1610,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a850|sch",{"_index":1191,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a855|a953|a955|a956|motorola.*electrify|motorola.*i1|i867|i940|mb200|mb300|mb501|mb502|mb508|mb511",{"_index":983,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a867|sgh",{"_index":1283,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a870|sch",{"_index":1192,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a877|sgh",{"_index":1284,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a880|sph",{"_index":1479,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a887|sgh",{"_index":1285,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a890|sch",{"_index":1193,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a897|sgh",{"_index":1286,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a900|sph",{"_index":1480,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a927",{"_index":1287,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a93.2|tab",{"_index":2552,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a930|sch",{"_index":1194,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a93|tab",{"_index":2551,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a940|sph",{"_index":1481,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a950|sch",{"_index":1195,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a960|sph",{"_index":1482,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a970|sch",{"_index":1196,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a971|tab",{"_index":2561,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a975|tab",{"_index":2524,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a990|sch",{"_index":1197,"title":{},"body":{"miscellaneous/variables.html":{}}}],["above",{"_index":777,"title":{},"body":{"license.html":{}}}],["absolute",{"_index":147,"title":{},"body":{"components/AppComponent.html":{}}}],["ac7",{"_index":2865,"title":{},"body":{"miscellaneous/variables.html":{}}}],["accessible",{"_index":298,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["accessors",{"_index":30,"title":{},"body":{"components/AppComponent.html":{}}}],["acertablet",{"_index":2054,"title":{},"body":{"miscellaneous/variables.html":{}}}],["action",{"_index":801,"title":{},"body":{"license.html":{}}}],["active",{"_index":546,"title":{},"body":{"contributing.html":{}}}],["actual",{"_index":364,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["actual_component",{"_index":190,"title":{},"body":{"components/AppComponent.html":{}}}],["add",{"_index":571,"title":{},"body":{"contributing.html":{}}}],["advantablet",{"_index":2382,"title":{},"body":{"miscellaneous/variables.html":{}}}],["agains",{"_index":540,"title":{},"body":{"contributing.html":{}}}],["agent",{"_index":110,"title":{},"body":{"components/AppComponent.html":{},"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["age|line|advance|feel|follow|like|link|live|think",{"_index":2823,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ahsan",{"_index":329,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"license.html":{},"properties.html":{}}}],["ahsanayaz",{"_index":430,"title":{},"body":{"classes/ReTree.html":{},"miscellaneous/variables.html":{}}}],["ainoltablet",{"_index":2190,"title":{},"body":{"miscellaneous/variables.html":{}}}],["air",{"_index":2756,"title":{},"body":{"miscellaneous/variables.html":{}}}],["air|fine8",{"_index":2417,"title":{},"body":{"miscellaneous/variables.html":{}}}],["air|x98",{"_index":2755,"title":{},"body":{"miscellaneous/variables.html":{}}}],["alcatel",{"_index":934,"title":{},"body":{"miscellaneous/variables.html":{}}}],["alcatel|mobile",{"_index":1676,"title":{},"body":{"miscellaneous/variables.html":{}}}],["align",{"_index":162,"title":{},"body":{"components/AppComponent.html":{}}}],["allfinetablet",{"_index":2413,"title":{},"body":{"miscellaneous/variables.html":{}}}],["allview.*(viva|alldro|city|speed|all",{"_index":2177,"title":{},"body":{"miscellaneous/variables.html":{}}}],["allviewtablet",{"_index":2176,"title":{},"body":{"miscellaneous/variables.html":{}}}],["already",{"_index":523,"title":{},"body":{"contributing.html":{}}}],["amazing",{"_index":735,"title":{},"body":{"index.html":{}}}],["amoi",{"_index":937,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ampetablet",{"_index":2650,"title":{},"body":{"miscellaneous/variables.html":{}}}],["and/or",{"_index":769,"title":{},"body":{"license.html":{}}}],["android",{"_index":367,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["android.*(\\bmid\\b|mid",{"_index":2234,"title":{},"body":{"miscellaneous/variables.html":{}}}],["android.*(at100|at105|at200|at205|at270|at275|at300|at305|at1s5|at500|at570|at700|at830)|toshiba.*folio",{"_index":2071,"title":{},"body":{"miscellaneous/variables.html":{}}}],["android.*(k8gt|u9gt|u10gt|u16gt|u17gt|u18gt|u19gt|u20gt|u23gt|u30gt)|cube",{"_index":2206,"title":{},"body":{"miscellaneous/variables.html":{}}}],["android.*(rk2818|rk2808a|rk2918|rk3066)|rk2738|rk2808a",{"_index":2241,"title":{},"body":{"miscellaneous/variables.html":{}}}],["android.*\\b(a39|a37|a34|st8|st10|st7|smart",{"_index":2410,"title":{},"body":{"miscellaneous/variables.html":{}}}],["android.*\\b(f",{"_index":2084,"title":{},"body":{"miscellaneous/variables.html":{}}}],["android.*\\bg1\\b",{"_index":2406,"title":{},"body":{"miscellaneous/variables.html":{}}}],["android.*\\bnabi",{"_index":2285,"title":{},"body":{"miscellaneous/variables.html":{}}}],["android.*\\boyo\\b|life.*(p9212|p9514|p9516|s9512)|lifetab",{"_index":2160,"title":{},"body":{"miscellaneous/variables.html":{}}}],["android.*nexus[\\s]+(7|9|10",{"_index":1795,"title":{},"body":{"miscellaneous/variables.html":{}}}],["android.*nook|nookcolor|nook",{"_index":2051,"title":{},"body":{"miscellaneous/variables.html":{}}}],["android.*pixel",{"_index":1797,"title":{},"body":{"miscellaneous/variables.html":{}}}],["android_9",{"_index":1748,"title":{},"body":{"miscellaneous/variables.html":{}}}],["angular",{"_index":96,"title":{},"body":{"components/AppComponent.html":{},"index.html":{},"properties.html":{}}}],["angular/animations",{"_index":618,"title":{},"body":{"dependencies.html":{}}}],["angular/cli",{"_index":717,"title":{},"body":{"index.html":{}}}],["angular/common",{"_index":212,"title":{},"body":{"modules/AppModule.html":{},"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"dependencies.html":{},"index.html":{}}}],["angular/compiler",{"_index":620,"title":{},"body":{"dependencies.html":{}}}],["angular/core",{"_index":75,"title":{},"body":{"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"pipes/KeysPipe.html":{},"injectables/UniversalDeviceDetectorService.html":{},"dependencies.html":{},"index.html":{}}}],["angular/forms",{"_index":621,"title":{},"body":{"dependencies.html":{}}}],["angular/platform",{"_index":207,"title":{},"body":{"modules/AppModule.html":{},"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"dependencies.html":{}}}],["angular/router",{"_index":623,"title":{},"body":{"dependencies.html":{}}}],["angular2",{"_index":737,"title":{},"body":{"index.html":{}}}],["angular5",{"_index":815,"title":{},"body":{"properties.html":{}}}],["angular6",{"_index":816,"title":{},"body":{"properties.html":{}}}],["angular7",{"_index":817,"title":{},"body":{"properties.html":{}}}],["angular8",{"_index":818,"title":{},"body":{"properties.html":{}}}],["aoctablet",{"_index":2803,"title":{},"body":{"miscellaneous/variables.html":{}}}],["aot",{"_index":99,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["app",{"_index":13,"title":{},"body":{"components/AppComponent.html":{},"coverage.html":{},"miscellaneous/functions.html":{},"index.html":{}}}],["app.component",{"_index":209,"title":{},"body":{"modules/AppModule.html":{},"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["app.component.html",{"_index":18,"title":{},"body":{"components/AppComponent.html":{}}}],["app.component.scss",{"_index":16,"title":{},"body":{"components/AppComponent.html":{}}}],["app.module",{"_index":253,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["app.server.module.ts",{"_index":700,"title":{},"body":{"index.html":{}}}],["appcomponent",{"_index":1,"title":{"components/AppComponent.html":{}},"body":{"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"coverage.html":{},"overview.html":{}}}],["appid",{"_index":217,"title":{},"body":{"modules/AppModule.html":{}}}],["apple",{"_index":907,"title":{},"body":{"miscellaneous/variables.html":{}}}],["apple_tv",{"_index":906,"title":{},"body":{"miscellaneous/variables.html":{}}}],["appletv\\/4.1",{"_index":949,"title":{},"body":{"miscellaneous/variables.html":{}}}],["apply",{"_index":122,"title":{},"body":{"components/AppComponent.html":{}}}],["applydevice",{"_index":27,"title":{},"body":{"components/AppComponent.html":{}}}],["applydevice(useragent",{"_index":45,"title":{},"body":{"components/AppComponent.html":{}}}],["appmodule",{"_index":194,"title":{"modules/AppModule.html":{}},"body":{"modules/AppModule.html":{},"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"modules.html":{},"overview.html":{}}}],["apppage",{"_index":220,"title":{"classes/AppPage.html":{}},"body":{"classes/AppPage.html":{},"coverage.html":{}}}],["appropriate",{"_index":117,"title":{},"body":{"components/AppComponent.html":{}}}],["appservermodule",{"_index":246,"title":{"modules/AppServerModule.html":{}},"body":{"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"modules.html":{},"overview.html":{}}}],["archostablet",{"_index":2179,"title":{},"body":{"miscellaneous/variables.html":{}}}],["aria_mini_wifi|aria",{"_index":2793,"title":{},"body":{"miscellaneous/variables.html":{}}}],["arising",{"_index":805,"title":{},"body":{"license.html":{}}}],["arm;.*(tablet|armbjs",{"_index":2015,"title":{},"body":{"miscellaneous/variables.html":{}}}],["arnovatablet",{"_index":2161,"title":{},"body":{"miscellaneous/variables.html":{}}}],["array.isarray(regex",{"_index":451,"title":{},"body":{"classes/ReTree.html":{}}}],["array.isarray(regex.and",{"_index":444,"title":{},"body":{"classes/ReTree.html":{}}}],["array.isarray(regex.or",{"_index":447,"title":{},"body":{"classes/ReTree.html":{}}}],["as40w|at",{"_index":1671,"title":{},"body":{"miscellaneous/variables.html":{}}}],["as45q2|at",{"_index":1673,"title":{},"body":{"miscellaneous/variables.html":{}}}],["as50hd|at",{"_index":1670,"title":{},"body":{"miscellaneous/variables.html":{}}}],["as50q",{"_index":1675,"title":{},"body":{"miscellaneous/variables.html":{}}}],["as55hd|at",{"_index":1672,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ask",{"_index":529,"title":{},"body":{"contributing.html":{}}}],["assigned",{"_index":550,"title":{},"body":{"contributing.html":{}}}],["associated",{"_index":757,"title":{},"body":{"license.html":{}}}],["asus",{"_index":921,"title":{},"body":{"miscellaneous/variables.html":{}}}],["asus.*galaxy|padfone.*mobile",{"_index":1604,"title":{},"body":{"miscellaneous/variables.html":{}}}],["asustablet",{"_index":2026,"title":{},"body":{"miscellaneous/variables.html":{}}}],["audiosonictablet",{"_index":2644,"title":{},"body":{"miscellaneous/variables.html":{}}}],["author",{"_index":328,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"contributing.html":{},"properties.html":{}}}],["authors",{"_index":795,"title":{},"body":{"license.html":{}}}],["available",{"_index":85,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["avio|nexo",{"_index":2849,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ayaz",{"_index":330,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"license.html":{},"properties.html":{}}}],["a|e1",{"_index":2390,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a|t1",{"_index":2391,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a|t3a|t4i)\\\\b",{"_index":2392,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a|t4|e1",{"_index":2385,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b(a100|a101|a110|a200|a210|a211|a500|a501|a510|a511|a700|a701|w500|w500p|w501",{"_index":2056,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b(diamond|space|brooklyn|neo|fly|manhattan|funk|evolution|sky|gocar|iron|genius",{"_index":2821,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b(e3a|t3x|t5c|t5b|t3e|t3c|t3b|t1j|t1f|t2a|t1h|t1i|e1c|t1",{"_index":2383,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b(f3000|a3300|jxd5000|jxd3000|jxd2000|jxd300b|jxd300|s5800|s7800|s602b|s5110b|s7300",{"_index":2659,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b(f5281|e2371)\\b",{"_index":2879,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b(idx10|idx9|idx8|idx7|idxd7|idxd8|idsq8|idsq7|idsq8|idsd10|idnd7|3ts804h|idsq11|idj7|ids10)\\b",{"_index":2791,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b(pi2010|pi3000|pi3100|pi3105|pi3110|pi3205|pi3210|pi3900|pi4010|pi7000|pi7100)\\b",{"_index":2204,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b(primo",{"_index":2217,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b(ptbl10ceu|ptbl10c|ptbl72bc|ptbl72bceu|ptbl7ceu|ptbl7c|ptbl92bc|ptbl92bceu|ptbl9ceu|ptbl9cuk|ptbl9c)\\b",{"_index":2381,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b(sp",{"_index":1655,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b(tb",{"_index":2876,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b100|sgh",{"_index":1288,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b130|sgh",{"_index":1289,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b200|sgh",{"_index":1290,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b2100|gt",{"_index":997,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b220|sgh",{"_index":1291,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b24d|at",{"_index":1669,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b26d|at",{"_index":1674,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b2700|gt",{"_index":998,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b2710",{"_index":999,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b3210|gt",{"_index":1001,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b3310|gt",{"_index":1002,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b3410|gt",{"_index":1003,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b3730|gt",{"_index":1004,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b3740|gt",{"_index":1005,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b4g\\\\b",{"_index":2782,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b5510|gt",{"_index":1006,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b5512|gt",{"_index":1007,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b5722|gt",{"_index":1008,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b6520|gt",{"_index":1009,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b7300|gt",{"_index":1010,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b7320",{"_index":1011,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b7330|gt",{"_index":1012,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b7350|gt",{"_index":1013,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b7510|gt",{"_index":1014,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b7610|gt",{"_index":1555,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b7722|gt",{"_index":1015,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b7800|gt",{"_index":1016,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b8000|b8080",{"_index":2106,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ba10h\\\\b|\\\\bp89\\\\b|\\\\bp78s\\\\b|\\\\bg18\\\\b|\\\\bp85\\\\b|\\\\ba70h\\\\b|\\\\ba70\\\\b|\\\\bg17\\\\b|\\\\bp18\\\\b|\\\\ba80s\\\\b",{"_index":2770,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ba10t\\\\b|\\\\bp76a\\\\b|\\\\bp76t\\\\b|\\\\bp76e\\\\b|\\\\bp85hd\\\\b|\\\\bp85a\\\\b|\\\\bp86\\\\b|\\\\bp75hd\\\\b|\\\\bp76v\\\\b|\\\\ba12\\\\b",{"_index":2772,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ba11s\\\\b|\\\\bp88hd\\\\b|\\\\ba80h\\\\b|\\\\bp76s\\\\b|\\\\bp76h\\\\b|\\\\bp98\\\\b|\\\\ba10hd\\\\b|\\\\bp78\\\\b|\\\\bp88\\\\b|\\\\ba11\\\\b",{"_index":2771,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ba3",{"_index":2067,"title":{},"body":{"miscellaneous/variables.html":{}}}],["back",{"_index":581,"title":{},"body":{"contributing.html":{}}}],["badges",{"_index":156,"title":{},"body":{"components/AppComponent.html":{}}}],["bandroid\\b",{"_index":1684,"title":{},"body":{"miscellaneous/variables.html":{}}}],["based",{"_index":108,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["bblackberry\\b|\\bbb10\\b|rim[0",{"_index":1682,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bc",{"_index":2645,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bchrome\\/([\\d\\.]+)\\b",{"_index":832,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bchrome\\b",{"_index":863,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bcrios\\/([\\d\\.]+)\\b",{"_index":833,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bcrios\\b",{"_index":864,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bcrkey\\b",{"_index":947,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bcros\\b",{"_index":946,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bedg(?:e|a|ios)\\/([\\d\\.]+)\\b",{"_index":848,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bedg(e|a|ios)\\b",{"_index":867,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bedg\\/([\\d\\.]+)\\b",{"_index":850,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bedg\\/\\b",{"_index":868,"title":{},"body":{"miscellaneous/variables.html":{}}}],["before",{"_index":532,"title":{},"body":{"contributing.html":{}}}],["bfban\\/messengerforios\\b",{"_index":891,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bfirefox",{"_index":1683,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bfirefox\\/([\\d\\.]+)\\b",{"_index":836,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bfirefox\\b",{"_index":871,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bfxios\\/([\\d\\.]+)\\b",{"_index":837,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bfxios\\b",{"_index":872,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bgoogletv\\b",{"_index":950,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bheadlesschrome\\/([\\d\\.]+)\\b",{"_index":834,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bheadlesschrome\\b",{"_index":865,"title":{},"body":{"miscellaneous/variables.html":{}}}],["biemobile\\b",{"_index":1696,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bionic|\\\\bdroid\\\\b.*build|android.*xoom|hri39|mot",{"_index":981,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bipad\\b",{"_index":961,"title":{},"body":{"miscellaneous/variables.html":{}}}],["biphone\\b",{"_index":960,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bipod\\b",{"_index":962,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bl",{"_index":2073,"title":{},"body":{"miscellaneous/variables.html":{}}}],["blackberry",{"_index":898,"title":{},"body":{"miscellaneous/variables.html":{}}}],["blackberrytablet",{"_index":2038,"title":{},"body":{"miscellaneous/variables.html":{}}}],["blaupunkttablet",{"_index":2786,"title":{},"body":{"miscellaneous/variables.html":{}}}],["blinux\\b",{"_index":1693,"title":{},"body":{"miscellaneous/variables.html":{}}}],["block",{"_index":134,"title":{},"body":{"components/AppComponent.html":{}}}],["bmac",{"_index":958,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bmi",{"_index":2838,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bmobile\\b",{"_index":945,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bmozilla\\/5.0",{"_index":885,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bmpg7\\\\b|mpdcg75|mpdcg71|mpdc1006|mp101dc|mpdc9000|mpdc905|mpdc706hd|mpdc706|mpdc705|mpdc110",{"_index":2809,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bmsie",{"_index":844,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bmsie\\b",{"_index":877,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bmt8125|mt8389|mt8135|mt8377\\b",{"_index":2516,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bn",{"_index":2270,"title":{},"body":{"miscellaneous/variables.html":{}}}],["boda",{"_index":2174,"title":{},"body":{"miscellaneous/variables.html":{}}}],["boilerplate",{"_index":739,"title":{},"body":{"index.html":{}}}],["boing|arrow|draco",{"_index":2679,"title":{},"body":{"miscellaneous/variables.html":{}}}],["book",{"_index":901,"title":{},"body":{"miscellaneous/variables.html":{}}}],["boolean",{"_index":89,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["bootstrap",{"_index":205,"title":{},"body":{"modules/AppModule.html":{},"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["bopr\\/([\\d\\.]+)\\b",{"_index":842,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bopr\\b",{"_index":866,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bp10hd\\\\b|\\\\bp19hd\\\\b|g18",{"_index":2765,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bp11\\\\b|\\\\bp98t\\\\b|\\\\bp98hd\\\\b|\\\\bg18d\\\\b|\\\\bp85s\\\\b|\\\\bp11hd\\\\b|\\\\bp88s\\\\b|\\\\ba80hd\\\\b|\\\\ba80se\\\\b",{"_index":2769,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bp72\\\\b|\\\\bt720se\\\\b|\\\\bc520ti\\\\b|\\\\bt760\\\\b|\\\\bt720ve\\\\b|t720",{"_index":2774,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bp75a\\\\b|\\\\ba15\\\\b|\\\\bp76ti\\\\b|\\\\bp81hd\\\\b|\\\\ba10\\\\b|\\\\bt760ve\\\\b|\\\\bt720hd\\\\b|\\\\bp76\\\\b|\\\\bp73\\\\b|\\\\bp71\\\\b",{"_index":2773,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bq1078|bc1003|bc1077|rk9702|bc9730|bc9001|it9001|bc7008|bc7010|bc708|bc728|bc7012|bc7030|bc7027|bc7026",{"_index":2428,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bqtablet",{"_index":2245,"title":{},"body":{"miscellaneous/variables.html":{}}}],["branch",{"_index":542,"title":{},"body":{"contributing.html":{}}}],["broncho.*(n701|n708|n802|a710",{"_index":2276,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bronchotablet",{"_index":2275,"title":{},"body":{"miscellaneous/variables.html":{}}}],["browse",{"_index":810,"title":{},"body":{"modules.html":{}}}],["browser",{"_index":58,"title":{},"body":{"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"dependencies.html":{},"index.html":{},"modules.html":{},"miscellaneous/variables.html":{}}}],["browser.get",{"_index":238,"title":{},"body":{"classes/AppPage.html":{}}}],["browser/animations",{"_index":214,"title":{},"body":{"modules/AppModule.html":{}}}],["browser_version",{"_index":61,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["browser_versions_re",{"_index":602,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["browser_versions_re_map",{"_index":603,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["browser_versions_re_map[key",{"_index":830,"title":{},"body":{"miscellaneous/variables.html":{}}}],["browsermodule",{"_index":206,"title":{},"body":{"modules/AppModule.html":{}}}],["browsermodule.withservertransition",{"_index":216,"title":{},"body":{"modules/AppModule.html":{}}}],["browsers",{"_index":338,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["browsers_re",{"_index":604,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["browser|bnrv200|bnrv200a|bntv250|bntv250a|bntv400|bntv600|logicpd",{"_index":2052,"title":{},"body":{"miscellaneous/variables.html":{}}}],["brv:([\\d\\.]+\\w?)\\b",{"_index":846,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bsafari\\/([\\d\\.]+)\\b",{"_index":840,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bsamsungbrowser\\/([\\d\\.]+)\\b",{"_index":852,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bsamsungbrowser\\b",{"_index":869,"title":{},"body":{"miscellaneous/variables.html":{}}}],["btrident\\b",{"_index":878,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bucbrowser\\/([\\d\\.]+)\\b",{"_index":854,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bucbrowser\\b",{"_index":870,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bug",{"_index":497,"title":{},"body":{"contributing.html":{}}}],["bugs",{"_index":485,"title":{},"body":{"contributing.html":{},"properties.html":{}}}],["build",{"_index":715,"title":{},"body":{"index.html":{},"miscellaneous/variables.html":{}}}],["buildrun",{"_index":716,"title":{},"body":{"index.html":{}}}],["build|\\barc\\b",{"_index":2289,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bunix\\b",{"_index":1694,"title":{},"body":{"miscellaneous/variables.html":{}}}],["button",{"_index":180,"title":{},"body":{"components/AppComponent.html":{}}}],["bversion\\/([\\d\\.]+)\\b",{"_index":839,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bvita\\b",{"_index":1681,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bwin",{"_index":1691,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bwindows",{"_index":874,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bwindows|(win\\d\\d)\\b",{"_index":1690,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bx89hd\\\\b|p98",{"_index":2759,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bxiaomi\\b",{"_index":957,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b|t1",{"_index":2388,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b|t2ci",{"_index":2386,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c",{"_index":745,"title":{},"body":{"license.html":{},"miscellaneous/variables.html":{}}}],["c100|sgh",{"_index":1292,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c101|gt",{"_index":1552,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c110|sgh",{"_index":1293,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c120|sgh",{"_index":1294,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c130|sgh",{"_index":1295,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c140|sgh",{"_index":1296,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c160|sgh",{"_index":1297,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c170",{"_index":1298,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c180|sgh",{"_index":1299,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c200|sgh",{"_index":1300,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c207|sgh",{"_index":1301,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c210|sgh",{"_index":1302,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c225|sgh",{"_index":1303,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c230|sgh",{"_index":1304,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3010|gt",{"_index":1017,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3011|gt",{"_index":1018,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3060|gt",{"_index":1019,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3200|gt",{"_index":1020,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3212i",{"_index":1022,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3212|gt",{"_index":1021,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3222|gt",{"_index":1024,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3262|gt",{"_index":1023,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3300k|gt",{"_index":1026,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3300|gt",{"_index":1025,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3303k|gt",{"_index":1028,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3303|gt",{"_index":1027,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3310|gt",{"_index":1029,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3322|gt",{"_index":1030,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3330|gt",{"_index":1031,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3350|gt",{"_index":1032,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3500",{"_index":1033,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3510|gt",{"_index":1034,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3530|gt",{"_index":1035,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3630|gt",{"_index":1036,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3780|gt",{"_index":1037,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c395|e739bk|e960|l55c|l75c|ls696|ls860|p769bk|p350|p500|p509|p870|un272|us730|vs840|vs950|ln272|ln510",{"_index":1599,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c417|sgh",{"_index":1305,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c450|sgh",{"_index":1306,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c5010|gt",{"_index":1038,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c5212|gt",{"_index":1039,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c6620|gt",{"_index":1040,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c6625|gt",{"_index":1041,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c6712|gt",{"_index":1042,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c800|c900|e400|e610|e900|e",{"_index":1596,"title":{},"body":{"miscellaneous/variables.html":{}}}],["cam|aurix|mint|amity",{"_index":2680,"title":{},"body":{"miscellaneous/variables.html":{}}}],["cam|stone",{"_index":2685,"title":{},"body":{"miscellaneous/variables.html":{}}}],["captiva",{"_index":2738,"title":{},"body":{"miscellaneous/variables.html":{}}}],["captivatablet",{"_index":2737,"title":{},"body":{"miscellaneous/variables.html":{}}}],["carbon|gamepad)\\\\b",{"_index":2189,"title":{},"body":{"miscellaneous/variables.html":{}}}],["catch",{"_index":83,"title":{},"body":{"components/AppComponent.html":{}}}],["cd",{"_index":720,"title":{},"body":{"index.html":{}}}],["cdm8992|txt8045|adr8995|is11pt|p2030|p6010|p8000|pt002|is06|cdm8999|p9050|pt001|txt8040|p2020|p9020",{"_index":1637,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ce",{"_index":1706,"title":{},"body":{"miscellaneous/variables.html":{}}}],["celkontablet",{"_index":2811,"title":{},"body":{"miscellaneous/variables.html":{}}}],["center",{"_index":163,"title":{},"body":{"components/AppComponent.html":{}}}],["change",{"_index":725,"title":{},"body":{"index.html":{}}}],["change_log.md",{"_index":727,"title":{},"body":{"index.html":{}}}],["changelog",{"_index":627,"title":{},"body":{"dependencies.html":{}}}],["changelog.md",{"_index":566,"title":{},"body":{"contributing.html":{}}}],["changes",{"_index":569,"title":{},"body":{"contributing.html":{}}}],["changjiatablet",{"_index":2429,"title":{},"body":{"miscellaneous/variables.html":{}}}],["charge",{"_index":752,"title":{},"body":{"license.html":{}}}],["check",{"_index":291,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["child",{"_index":182,"title":{},"body":{"components/AppComponent.html":{}}}],["chrome",{"_index":831,"title":{},"body":{"miscellaneous/variables.html":{}}}],["chrome_book",{"_index":900,"title":{},"body":{"miscellaneous/variables.html":{}}}],["chrome_os",{"_index":1689,"title":{},"body":{"miscellaneous/variables.html":{}}}],["chromecast",{"_index":905,"title":{},"body":{"miscellaneous/variables.html":{}}}],["chromium",{"_index":857,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ci",{"_index":545,"title":{},"body":{"contributing.html":{}}}],["cink",{"_index":1650,"title":{},"body":{"miscellaneous/variables.html":{}}}],["claim",{"_index":798,"title":{},"body":{"license.html":{}}}],["class",{"_index":79,"title":{"classes/AppPage.html":{},"classes/ReTree.html":{}},"body":{"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"pipes/KeysPipe.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{},"coverage.html":{},"index.html":{}}}],["classes",{"_index":221,"title":{},"body":{"classes/AppPage.html":{},"classes/ReTree.html":{},"overview.html":{}}}],["cli",{"_index":628,"title":{},"body":{"dependencies.html":{}}}],["close",{"_index":481,"title":{},"body":{"contributing.html":{}}}],["cluster_appmodule",{"_index":197,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_bootstrap",{"_index":198,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_declarations",{"_index":199,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appservermodule",{"_index":247,"title":{},"body":{"modules/AppServerModule.html":{},"overview.html":{}}}],["cluster_appservermodule_bootstrap",{"_index":249,"title":{},"body":{"modules/AppServerModule.html":{}}}],["cluster_appservermodule_imports",{"_index":248,"title":{},"body":{"modules/AppServerModule.html":{}}}],["cobalt",{"_index":2183,"title":{},"body":{"miscellaneous/variables.html":{}}}],["cobytablet",{"_index":2208,"title":{},"body":{"miscellaneous/variables.html":{}}}],["column",{"_index":171,"title":{},"body":{"components/AppComponent.html":{}}}],["comment",{"_index":556,"title":{},"body":{"contributing.html":{}}}],["commonmodule",{"_index":211,"title":{},"body":{"modules/AppModule.html":{}}}],["community",{"_index":582,"title":{},"body":{"contributing.html":{}}}],["compares",{"_index":397,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["compatible",{"_index":100,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["component",{"_index":0,"title":{"components/AppComponent.html":{}},"body":{"components/AppComponent.html":{},"coverage.html":{},"index.html":{},"overview.html":{}}}],["component_template",{"_index":188,"title":{},"body":{"components/AppComponent.html":{}}}],["components",{"_index":2,"title":{},"body":{"components/AppComponent.html":{}}}],["concorde",{"_index":2518,"title":{},"body":{"miscellaneous/variables.html":{}}}],["concordetablet",{"_index":2517,"title":{},"body":{"miscellaneous/variables.html":{}}}],["conditions",{"_index":776,"title":{},"body":{"license.html":{}}}],["connection",{"_index":806,"title":{},"body":{"license.html":{}}}],["console.log('hello",{"_index":680,"title":{},"body":{"index.html":{}}}],["console.log('ua",{"_index":84,"title":{},"body":{"components/AppComponent.html":{}}}],["console.log(isdesktopdevice",{"_index":689,"title":{},"body":{"index.html":{}}}],["console.log(ismobile",{"_index":683,"title":{},"body":{"index.html":{}}}],["console.log(istablet",{"_index":688,"title":{},"body":{"index.html":{}}}],["console.log(this.deviceinfo",{"_index":682,"title":{},"body":{"index.html":{}}}],["const",{"_index":319,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"pipes/KeysPipe.html":{},"index.html":{}}}],["constants",{"_index":311,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["constants.browser_versions_re[this.browser",{"_index":375,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["constants.browsers.unknown",{"_index":373,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["constants.desktop_devices.indexof(this.device",{"_index":409,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["constants.devices.unknown",{"_index":407,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["constants.general.uknown",{"_index":385,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["constants.mobiles_re[mobile",{"_index":402,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["constants.tablets_re[ipad",{"_index":348,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["constants.tablets_re[mobile",{"_index":406,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["constants[`${mapping.const}_re`][item",{"_index":354,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["constants[mapping.const].android",{"_index":363,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["constants[mapping.const].unknown",{"_index":369,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["constants[mapping.const][item",{"_index":343,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["constants[mapping.const][key",{"_index":358,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["constructor",{"_index":34,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["constructor(@inject(platform_id",{"_index":264,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["constructor(deviceservice",{"_index":35,"title":{},"body":{"components/AppComponent.html":{}}}],["constructor(platformid",{"_index":280,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["constructor(private",{"_index":80,"title":{},"body":{"components/AppComponent.html":{}}}],["container",{"_index":142,"title":{},"body":{"components/AppComponent.html":{}}}],["content",{"_index":173,"title":{},"body":{"components/AppComponent.html":{}}}],["contract",{"_index":802,"title":{},"body":{"license.html":{}}}],["contribute",{"_index":474,"title":{},"body":{"contributing.html":{}}}],["contributing",{"_index":473,"title":{"contributing.html":{}},"body":{}}],["conventional",{"_index":626,"title":{},"body":{"dependencies.html":{}}}],["copies",{"_index":771,"title":{},"body":{"license.html":{}}}],["copy",{"_index":755,"title":{},"body":{"license.html":{}}}],["copyright",{"_index":744,"title":{},"body":{"license.html":{}}}],["correct",{"_index":693,"title":{},"body":{"index.html":{}}}],["coverage",{"_index":586,"title":{"coverage.html":{}},"body":{"coverage.html":{}}}],["create",{"_index":478,"title":{},"body":{"contributing.html":{}}}],["created",{"_index":429,"title":{},"body":{"classes/ReTree.html":{},"miscellaneous/variables.html":{}}}],["creator",{"_index":738,"title":{},"body":{"index.html":{}}}],["credits",{"_index":729,"title":{},"body":{"index.html":{}}}],["crestatablet",{"_index":2503,"title":{},"body":{"miscellaneous/variables.html":{}}}],["crios).)*\\safari\\b",{"_index":873,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ct695|ct888|ct[\\s]?910|ct7",{"_index":2812,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ctp",{"_index":2504,"title":{},"body":{"miscellaneous/variables.html":{}}}],["cubetablet",{"_index":2205,"title":{},"body":{"miscellaneous/variables.html":{}}}],["current",{"_index":286,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["currentvalue",{"_index":360,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["cursor",{"_index":145,"title":{},"body":{"components/AppComponent.html":{}}}],["d.ts",{"_index":708,"title":{},"body":{"index.html":{}}}],["d307|sgh",{"_index":1307,"title":{},"body":{"miscellaneous/variables.html":{}}}],["d347|sgh",{"_index":1308,"title":{},"body":{"miscellaneous/variables.html":{}}}],["d357",{"_index":1309,"title":{},"body":{"miscellaneous/variables.html":{}}}],["d407|sgh",{"_index":1310,"title":{},"body":{"miscellaneous/variables.html":{}}}],["d415|sgh",{"_index":1311,"title":{},"body":{"miscellaneous/variables.html":{}}}],["d600|sph",{"_index":1483,"title":{},"body":{"miscellaneous/variables.html":{}}}],["d700|sph",{"_index":1484,"title":{},"body":{"miscellaneous/variables.html":{}}}],["d710|sph",{"_index":1485,"title":{},"body":{"miscellaneous/variables.html":{}}}],["d720",{"_index":1486,"title":{},"body":{"miscellaneous/variables.html":{}}}],["d780|sgh",{"_index":1312,"title":{},"body":{"miscellaneous/variables.html":{}}}],["d807|sgh",{"_index":1313,"title":{},"body":{"miscellaneous/variables.html":{}}}],["d980|sgh",{"_index":1314,"title":{},"body":{"miscellaneous/variables.html":{}}}],["d\\.]+\\w?)\\b",{"_index":845,"title":{},"body":{"miscellaneous/variables.html":{}}}],["damages",{"_index":799,"title":{},"body":{"license.html":{}}}],["danewtablet",{"_index":2290,"title":{},"body":{"miscellaneous/variables.html":{}}}],["danytechtablet",{"_index":2393,"title":{},"body":{"miscellaneous/variables.html":{}}}],["darwin",{"_index":1774,"title":{},"body":{"miscellaneous/variables.html":{}}}],["deal",{"_index":758,"title":{},"body":{"license.html":{}}}],["dealings",{"_index":807,"title":{},"body":{"license.html":{}}}],["declarations",{"_index":204,"title":{},"body":{"modules/AppModule.html":{}}}],["default",{"_index":47,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"pipes/KeysPipe.html":{},"injectables/UniversalDeviceDetectorService.html":{},"miscellaneous/variables.html":{}}}],["defined",{"_index":37,"title":{},"body":{"components/AppComponent.html":{},"classes/AppPage.html":{},"injectables/DeviceDetectorService.html":{},"pipes/KeysPipe.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["dell",{"_index":917,"title":{},"body":{"miscellaneous/variables.html":{}}}],["delltablet",{"_index":2117,"title":{},"body":{"miscellaneous/variables.html":{}}}],["demo",{"_index":111,"title":{},"body":{"components/AppComponent.html":{},"classes/AppPage.html":{},"index.html":{}}}],["demoapp",{"_index":135,"title":{},"body":{"components/AppComponent.html":{}}}],["dependencies",{"_index":196,"title":{"dependencies.html":{}},"body":{"modules/AppModule.html":{},"modules/AppServerModule.html":{},"dependencies.html":{},"index.html":{},"overview.html":{}}}],["deprecated",{"_index":644,"title":{},"body":{"index.html":{}}}],["desc",{"_index":331,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["description",{"_index":428,"title":{},"body":{"classes/ReTree.html":{}}}],["desktop",{"_index":126,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"miscellaneous/enumerations.html":{},"index.html":{}}}],["desktop_devices",{"_index":605,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["details",{"_index":118,"title":{},"body":{"components/AppComponent.html":{},"contributing.html":{}}}],["detection",{"_index":694,"title":{},"body":{"index.html":{},"properties.html":{}}}],["detector",{"_index":77,"title":{},"body":{"components/AppComponent.html":{},"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{},"properties.html":{}}}],["detector.constants",{"_index":312,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["detector.constants.ts",{"_index":601,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["detector.git",{"_index":823,"title":{},"body":{"properties.html":{}}}],["detector.git/issues",{"_index":820,"title":{},"body":{"properties.html":{}}}],["detector.service.ts",{"_index":276,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"coverage.html":{},"miscellaneous/enumerations.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["detector.service.ts:135",{"_index":282,"title":{},"body":{"injectables/DeviceDetectorService.html":{}}}],["detector.service.ts:155",{"_index":290,"title":{},"body":{"injectables/DeviceDetectorService.html":{}}}],["detector.service.ts:171",{"_index":294,"title":{},"body":{"injectables/DeviceDetectorService.html":{}}}],["detector.service.ts:191",{"_index":285,"title":{},"body":{"injectables/DeviceDetectorService.html":{}}}],["detector.service.ts:37",{"_index":308,"title":{},"body":{"injectables/DeviceDetectorService.html":{}}}],["detector.service.ts:38",{"_index":309,"title":{},"body":{"injectables/DeviceDetectorService.html":{}}}],["detector.service.ts:39",{"_index":304,"title":{},"body":{"injectables/DeviceDetectorService.html":{}}}],["detector.service.ts:40",{"_index":300,"title":{},"body":{"injectables/DeviceDetectorService.html":{}}}],["detector.service.ts:41",{"_index":302,"title":{},"body":{"injectables/DeviceDetectorService.html":{}}}],["detector.service.ts:42",{"_index":305,"title":{},"body":{"injectables/DeviceDetectorService.html":{}}}],["detector.service.ts:43",{"_index":301,"title":{},"body":{"injectables/DeviceDetectorService.html":{}}}],["detector.service.ts:44",{"_index":307,"title":{},"body":{"injectables/DeviceDetectorService.html":{}}}],["detector.service.ts:45",{"_index":303,"title":{},"body":{"injectables/DeviceDetectorService.html":{}}}],["detector.service.ts:46",{"_index":281,"title":{},"body":{"injectables/DeviceDetectorService.html":{}}}],["detector.service.ts:59",{"_index":296,"title":{},"body":{"injectables/DeviceDetectorService.html":{}}}],["detector/src/lib/device",{"_index":275,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"coverage.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/variables.html":{}}}],["detector/src/lib/retree.ts",{"_index":427,"title":{},"body":{"classes/ReTree.html":{},"coverage.html":{}}}],["detector/src/lib/retree.ts:30",{"_index":436,"title":{},"body":{"classes/ReTree.html":{}}}],["detector/src/lib/retree.ts:5",{"_index":433,"title":{},"body":{"classes/ReTree.html":{}}}],["detector/src/lib/retree.ts:8",{"_index":439,"title":{},"body":{"classes/ReTree.html":{}}}],["developers",{"_index":518,"title":{},"body":{"contributing.html":{}}}],["development",{"_index":704,"title":{},"body":{"index.html":{}}}],["device",{"_index":59,"title":{},"body":{"components/AppComponent.html":{},"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{},"coverage.html":{},"miscellaneous/enumerations.html":{},"index.html":{},"properties.html":{},"miscellaneous/variables.html":{}}}],["devicedetectorservice",{"_index":36,"title":{"injectables/DeviceDetectorService.html":{}},"body":{"components/AppComponent.html":{},"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"coverage.html":{},"index.html":{}}}],["devicedetectorservice:135",{"_index":456,"title":{},"body":{"injectables/UniversalDeviceDetectorService.html":{}}}],["devicedetectorservice:155",{"_index":458,"title":{},"body":{"injectables/UniversalDeviceDetectorService.html":{}}}],["devicedetectorservice:171",{"_index":459,"title":{},"body":{"injectables/UniversalDeviceDetectorService.html":{}}}],["devicedetectorservice:191",{"_index":457,"title":{},"body":{"injectables/UniversalDeviceDetectorService.html":{}}}],["devicedetectorservice:37",{"_index":469,"title":{},"body":{"injectables/UniversalDeviceDetectorService.html":{}}}],["devicedetectorservice:38",{"_index":470,"title":{},"body":{"injectables/UniversalDeviceDetectorService.html":{}}}],["devicedetectorservice:39",{"_index":466,"title":{},"body":{"injectables/UniversalDeviceDetectorService.html":{}}}],["devicedetectorservice:40",{"_index":461,"title":{},"body":{"injectables/UniversalDeviceDetectorService.html":{}}}],["devicedetectorservice:41",{"_index":463,"title":{},"body":{"injectables/UniversalDeviceDetectorService.html":{}}}],["devicedetectorservice:42",{"_index":467,"title":{},"body":{"injectables/UniversalDeviceDetectorService.html":{}}}],["devicedetectorservice:43",{"_index":462,"title":{},"body":{"injectables/UniversalDeviceDetectorService.html":{}}}],["devicedetectorservice:44",{"_index":468,"title":{},"body":{"injectables/UniversalDeviceDetectorService.html":{}}}],["devicedetectorservice:45",{"_index":464,"title":{},"body":{"injectables/UniversalDeviceDetectorService.html":{}}}],["devicedetectorservice:46",{"_index":465,"title":{},"body":{"injectables/UniversalDeviceDetectorService.html":{}}}],["devicedetectorservice:59",{"_index":460,"title":{},"body":{"injectables/UniversalDeviceDetectorService.html":{}}}],["deviceinfo",{"_index":21,"title":{"interfaces/DeviceInfo.html":{}},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"coverage.html":{},"index.html":{}}}],["devices",{"_index":115,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["devices.asus",{"_index":896,"title":{},"body":{"miscellaneous/variables.html":{}}}],["devices.chrome_book",{"_index":893,"title":{},"body":{"miscellaneous/variables.html":{}}}],["devices.dell",{"_index":895,"title":{},"body":{"miscellaneous/variables.html":{}}}],["devices.mac",{"_index":894,"title":{},"body":{"miscellaneous/variables.html":{}}}],["devices.ps4",{"_index":892,"title":{},"body":{"miscellaneous/variables.html":{}}}],["devices.unknown",{"_index":897,"title":{},"body":{"miscellaneous/variables.html":{}}}],["devices_re",{"_index":606,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["deviceservice",{"_index":44,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["devicetype",{"_index":62,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"miscellaneous/enumerations.html":{}}}],["devicetype.desktop",{"_index":392,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["devicetype.mobile",{"_index":390,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["devicetype.tablet",{"_index":388,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["devicetype.unknown",{"_index":393,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["devs",{"_index":561,"title":{},"body":{"contributing.html":{}}}],["different",{"_index":114,"title":{},"body":{"components/AppComponent.html":{}}}],["digmatablet",{"_index":2790,"title":{},"body":{"miscellaneous/variables.html":{}}}],["direction",{"_index":170,"title":{},"body":{"components/AppComponent.html":{}}}],["directive",{"_index":186,"title":{},"body":{"components/AppComponent.html":{}}}],["directives",{"_index":189,"title":{},"body":{"components/AppComponent.html":{}}}],["display",{"_index":133,"title":{},"body":{"components/AppComponent.html":{}}}],["distribute",{"_index":767,"title":{},"body":{"license.html":{}}}],["docs",{"_index":536,"title":{},"body":{"contributing.html":{},"index.html":{}}}],["docs/readme",{"_index":510,"title":{},"body":{"contributing.html":{}}}],["documentation",{"_index":493,"title":{},"body":{"contributing.html":{},"coverage.html":{},"license.html":{}}}],["dom",{"_index":7,"title":{},"body":{"components/AppComponent.html":{}}}],["don't",{"_index":527,"title":{},"body":{"contributing.html":{}}}],["dp8d",{"_index":2657,"title":{},"body":{"miscellaneous/variables.html":{}}}],["dps",{"_index":2491,"title":{},"body":{"miscellaneous/variables.html":{}}}],["dpstablet",{"_index":2490,"title":{},"body":{"miscellaneous/variables.html":{}}}],["dream",{"_index":2492,"title":{},"body":{"miscellaneous/variables.html":{}}}],["dslide.*\\b(700|701r|702|703r|704|802|970|971|972|973|974|1010|1012)\\b",{"_index":2291,"title":{},"body":{"miscellaneous/variables.html":{}}}],["dual",{"_index":2494,"title":{},"body":{"miscellaneous/variables.html":{}}}],["dynamic",{"_index":622,"title":{},"body":{"dependencies.html":{}}}],["d|o1",{"_index":2389,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e",{"_index":2173,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e100|sch",{"_index":1528,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e100|viewpad",{"_index":2729,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1050|gt",{"_index":1043,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e105|sgh",{"_index":1315,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1070",{"_index":1044,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1075|gt",{"_index":1045,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1080|gt",{"_index":1046,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1081|gt",{"_index":1047,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1085|gt",{"_index":1048,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1087|gt",{"_index":1049,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1100|gt",{"_index":1050,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1107|gt",{"_index":1051,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1110|gt",{"_index":1052,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1120|gt",{"_index":1053,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1125|gt",{"_index":1054,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1130",{"_index":1055,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1160|gt",{"_index":1056,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1170|gt",{"_index":1057,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1175|gt",{"_index":1058,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1180|gt",{"_index":1059,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1182|gt",{"_index":1060,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1200|gt",{"_index":1061,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1210|gt",{"_index":1062,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1225|gt",{"_index":1063,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1230|gt",{"_index":1064,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1390|gt",{"_index":1065,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e140k|shv",{"_index":1850,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e140l|shv",{"_index":1851,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e140s|shv",{"_index":1852,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e150s|shv",{"_index":1853,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e160k|sch",{"_index":1579,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e200|sgh",{"_index":1316,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e2100",{"_index":1066,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e2120|gt",{"_index":1067,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e2121|gt",{"_index":1068,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e2152|gt",{"_index":1069,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e2220|gt",{"_index":1070,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e2222|gt",{"_index":1071,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e2230|gt",{"_index":1072,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e2232|gt",{"_index":1073,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e2250|gt",{"_index":1074,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e230k|shv",{"_index":1854,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e230l",{"_index":1855,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e230s|shw",{"_index":1857,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e2370|gt",{"_index":1075,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e2550|gt",{"_index":1076,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e2652",{"_index":1077,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e315|sgh",{"_index":1317,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e316|sgh",{"_index":1318,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e317|sgh",{"_index":1319,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e3210|gt",{"_index":1078,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e3213|gt",{"_index":1079,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e335",{"_index":1320,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e590|sgh",{"_index":1321,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e635|sgh",{"_index":1322,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e704|\\bivorys\\b|e",{"_index":2800,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e715|sgh",{"_index":1323,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e72|viewpad7|viewpad",{"_index":2728,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e890|sgh",{"_index":1324,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e\\\\b|xt1068|xt1092|xt1052",{"_index":989,"title":{},"body":{"miscellaneous/variables.html":{}}}],["each",{"_index":651,"title":{},"body":{"index.html":{}}}],["earlier",{"_index":647,"title":{},"body":{"index.html":{}}}],["ebodatablet",{"_index":2172,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ebrd1102|ebrd1201|sgp351|sgp341|sgp511|sgp512|sgp521|sgp541|sgp551|sgp621|sgp641|sgp612|sot31|sgp771|sgp611",{"_index":2201,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ecstablet",{"_index":2613,"title":{},"body":{"miscellaneous/variables.html":{}}}],["edge",{"_index":856,"title":{},"body":{"miscellaneous/variables.html":{}}}],["element",{"_index":185,"title":{},"body":{"components/AppComponent.html":{},"classes/AppPage.html":{}}}],["element(by.css('app",{"_index":239,"title":{},"body":{"classes/AppPage.html":{}}}],["element.all(by.css('app",{"_index":242,"title":{},"body":{"classes/AppPage.html":{}}}],["elementarrayfinder",{"_index":230,"title":{},"body":{"classes/AppPage.html":{}}}],["elitepad",{"_index":2020,"title":{},"body":{"miscellaneous/variables.html":{}}}],["end",{"_index":174,"title":{},"body":{"components/AppComponent.html":{}}}],["endeavour",{"_index":2787,"title":{},"body":{"miscellaneous/variables.html":{}}}],["engine",{"_index":624,"title":{},"body":{"dependencies.html":{}}}],["engine/tokens",{"_index":259,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["enhance",{"_index":483,"title":{},"body":{"contributing.html":{}}}],["ensure",{"_index":691,"title":{},"body":{"index.html":{}}}],["enum",{"_index":314,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["enumerations",{"_index":638,"title":{"miscellaneous/enumerations.html":{}},"body":{"miscellaneous/enumerations.html":{}}}],["epicfunction",{"_index":679,"title":{},"body":{"index.html":{}}}],["essentielbtablet",{"_index":2623,"title":{},"body":{"miscellaneous/variables.html":{}}}],["etc",{"_index":687,"title":{},"body":{"index.html":{}}}],["event",{"_index":794,"title":{},"body":{"license.html":{}}}],["evo",{"_index":2045,"title":{},"body":{"miscellaneous/variables.html":{}}}],["evoliotablet",{"_index":2792,"title":{},"body":{"miscellaneous/variables.html":{}}}],["evo|nexo",{"_index":2852,"title":{},"body":{"miscellaneous/variables.html":{}}}],["example",{"_index":699,"title":{},"body":{"index.html":{}}}],["examples",{"_index":492,"title":{},"body":{"contributing.html":{}}}],["exec",{"_index":432,"title":{},"body":{"classes/ReTree.html":{}}}],["exec(str",{"_index":434,"title":{},"body":{"classes/ReTree.html":{}}}],["existing",{"_index":521,"title":{},"body":{"contributing.html":{}}}],["explain",{"_index":514,"title":{},"body":{"contributing.html":{}}}],["export",{"_index":78,"title":{},"body":{"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"pipes/KeysPipe.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["express",{"_index":260,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"dependencies.html":{},"index.html":{},"license.html":{}}}],["express.express",{"_index":642,"title":{},"body":{"miscellaneous/functions.html":{}}}],["expressjs",{"_index":698,"title":{},"body":{"index.html":{}}}],["extends",{"_index":263,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["ezee[_']?(tab|go)[0",{"_index":2616,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e|m]10|m8))|maxwell.*lite|maxwell.*plus",{"_index":2248,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e|t5",{"_index":2384,"title":{},"body":{"miscellaneous/variables.html":{}}}],["f300|sgh",{"_index":1325,"title":{},"body":{"miscellaneous/variables.html":{}}}],["f480|sgh",{"_index":1326,"title":{},"body":{"miscellaneous/variables.html":{}}}],["fa",{"_index":165,"title":{},"body":{"components/AppComponent.html":{}}}],["false",{"_index":292,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["far",{"_index":513,"title":{},"body":{"contributing.html":{}}}],["fast",{"_index":740,"title":{},"body":{"index.html":{}}}],["fb",{"_index":859,"title":{},"body":{"miscellaneous/variables.html":{}}}],["fb_messanger",{"_index":858,"title":{},"body":{"miscellaneous/variables.html":{}}}],["feature",{"_index":501,"title":{},"body":{"contributing.html":{}}}],["feedback",{"_index":498,"title":{},"body":{"contributing.html":{}}}],["file",{"_index":9,"title":{},"body":{"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"pipes/KeysPipe.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{},"contributing.html":{},"coverage.html":{}}}],["files",{"_index":709,"title":{},"body":{"index.html":{},"license.html":{}}}],["finally",{"_index":574,"title":{},"body":{"contributing.html":{}}}],["fine7",{"_index":2414,"title":{},"body":{"miscellaneous/variables.html":{}}}],["firefox",{"_index":835,"title":{},"body":{"miscellaneous/variables.html":{}}}],["firefox_os",{"_index":899,"title":{},"body":{"miscellaneous/variables.html":{}}}],["first",{"_index":181,"title":{},"body":{"components/AppComponent.html":{},"contributing.html":{}}}],["fitness",{"_index":790,"title":{},"body":{"license.html":{}}}],["five|cink",{"_index":1644,"title":{},"body":{"miscellaneous/variables.html":{}}}],["fix",{"_index":484,"title":{},"body":{"contributing.html":{}}}],["flex",{"_index":169,"title":{},"body":{"components/AppComponent.html":{}}}],["fly",{"_index":929,"title":{},"body":{"miscellaneous/variables.html":{}}}],["flyer|htc",{"_index":2042,"title":{},"body":{"miscellaneous/variables.html":{}}}],["flytablet",{"_index":2242,"title":{},"body":{"miscellaneous/variables.html":{}}}],["fl|f|hv|h|)|tb",{"_index":2107,"title":{},"body":{"miscellaneous/variables.html":{}}}],["following",{"_index":702,"title":{},"body":{"index.html":{},"license.html":{}}}],["font",{"_index":166,"title":{},"body":{"components/AppComponent.html":{}}}],["fork",{"_index":482,"title":{},"body":{"contributing.html":{}}}],["found",{"_index":365,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"contributing.html":{}}}],["free",{"_index":751,"title":{},"body":{"license.html":{}}}],["freedom|chicago|cleveland|baltimore",{"_index":2824,"title":{},"body":{"miscellaneous/variables.html":{}}}],["freetab",{"_index":2575,"title":{},"body":{"miscellaneous/variables.html":{}}}],["free|nexo",{"_index":2850,"title":{},"body":{"miscellaneous/variables.html":{}}}],["fujitsutablet",{"_index":2083,"title":{},"body":{"miscellaneous/variables.html":{}}}],["funbook|micromax.*\\b(p250|p560|p360|p362|p600|p300|p350|p500|p275)\\b",{"_index":2408,"title":{},"body":{"miscellaneous/variables.html":{}}}],["function",{"_index":591,"title":{},"body":{"coverage.html":{}}}],["functions",{"_index":640,"title":{"miscellaneous/functions.html":{}},"body":{"miscellaneous/functions.html":{}}}],["furnished",{"_index":774,"title":{},"body":{"license.html":{}}}],["fx2",{"_index":2696,"title":{},"body":{"miscellaneous/variables.html":{}}}],["fx2tablet",{"_index":2695,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g",{"_index":719,"title":{},"body":{"index.html":{},"miscellaneous/variables.html":{}}}],["g1|me",{"_index":2486,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g1|z520m|android",{"_index":971,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g3|genius",{"_index":2396,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g4|genius",{"_index":2399,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g7105|sm",{"_index":1547,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g9006v|sm",{"_index":1560,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g9008v|sm",{"_index":1561,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g9009d|sm",{"_index":1562,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g900a|sm",{"_index":1563,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g900d|sm",{"_index":1564,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g900f",{"_index":1565,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g900h|sm",{"_index":1567,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g900i|sm",{"_index":1568,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g900j|sm",{"_index":1569,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g900k|sm",{"_index":1570,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g900l|sm",{"_index":1571,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g900m|sm",{"_index":1572,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g900p|sm",{"_index":1573,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g900r4|sm",{"_index":1574,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g900s|sm",{"_index":1575,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g900t|sm",{"_index":1576,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g900v",{"_index":1577,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g900w8|shv",{"_index":1578,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g903f|sm",{"_index":1593,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g920f|sm",{"_index":1586,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g920v|sm",{"_index":1587,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g9250|gt",{"_index":993,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g930f",{"_index":1588,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g9350|sm",{"_index":1584,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g950f|sm",{"_index":991,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g955f|sm",{"_index":992,"title":{},"body":{"miscellaneous/variables.html":{}}}],["galapadtablet",{"_index":2405,"title":{},"body":{"miscellaneous/variables.html":{}}}],["gcta722|tab",{"_index":2541,"title":{},"body":{"miscellaneous/variables.html":{}}}],["general",{"_index":607,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["general.uknown",{"_index":862,"title":{},"body":{"miscellaneous/variables.html":{}}}],["general.uknown.tolowercase",{"_index":1749,"title":{},"body":{"miscellaneous/variables.html":{}}}],["generate",{"_index":705,"title":{},"body":{"index.html":{}}}],["generator",{"_index":742,"title":{},"body":{"index.html":{}}}],["generic",{"_index":940,"title":{},"body":{"miscellaneous/variables.html":{}}}],["generic_phone",{"_index":939,"title":{},"body":{"miscellaneous/variables.html":{}}}],["generictablet",{"_index":2886,"title":{},"body":{"miscellaneous/variables.html":{}}}],["genius",{"_index":2394,"title":{},"body":{"miscellaneous/variables.html":{}}}],["genius|fine7",{"_index":2415,"title":{},"body":{"miscellaneous/variables.html":{}}}],["getdemoheadingtext",{"_index":223,"title":{},"body":{"classes/AppPage.html":{}}}],["getdeviceinfo",{"_index":28,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["getdeviceinfoelements",{"_index":224,"title":{},"body":{"classes/AppPage.html":{}}}],["getisdesktop",{"_index":72,"title":{},"body":{"components/AppComponent.html":{}}}],["getismobile",{"_index":68,"title":{},"body":{"components/AppComponent.html":{}}}],["getistablet",{"_index":70,"title":{},"body":{"components/AppComponent.html":{}}}],["getparagraphtext",{"_index":225,"title":{},"body":{"classes/AppPage.html":{}}}],["getting",{"_index":471,"title":{"contributing.html":{},"index.html":{},"license.html":{}},"body":{}}],["gh|iowa|boston|seattle|phoenix|dallas|in",{"_index":2825,"title":{},"body":{"miscellaneous/variables.html":{}}}],["giii|genius",{"_index":2403,"title":{},"body":{"miscellaneous/variables.html":{}}}],["gii|genius",{"_index":2402,"title":{},"body":{"miscellaneous/variables.html":{}}}],["github",{"_index":143,"title":{},"body":{"components/AppComponent.html":{}}}],["go",{"_index":519,"title":{},"body":{"contributing.html":{}}}],["goclevertablet",{"_index":2521,"title":{},"body":{"miscellaneous/variables.html":{}}}],["going",{"_index":558,"title":{},"body":{"contributing.html":{}}}],["good",{"_index":553,"title":{},"body":{"contributing.html":{}}}],["google",{"_index":910,"title":{},"body":{"miscellaneous/variables.html":{}}}],["google_tv",{"_index":909,"title":{},"body":{"miscellaneous/variables.html":{}}}],["googletablet",{"_index":1796,"title":{},"body":{"miscellaneous/variables.html":{}}}],["go|nexo",{"_index":2851,"title":{},"body":{"miscellaneous/variables.html":{}}}],["granted",{"_index":750,"title":{},"body":{"license.html":{}}}],["gt",{"_index":1000,"title":{},"body":{"miscellaneous/variables.html":{}}}],["gutablet",{"_index":2434,"title":{},"body":{"miscellaneous/variables.html":{}}}],["h1')).gettext",{"_index":245,"title":{},"body":{"classes/AppPage.html":{}}}],["hack",{"_index":344,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["halley|flame|saphyr",{"_index":2688,"title":{},"body":{"miscellaneous/variables.html":{}}}],["hasn't",{"_index":522,"title":{},"body":{"contributing.html":{}}}],["hcl.*tablet|connect",{"_index":2480,"title":{},"body":{"miscellaneous/variables.html":{}}}],["hcltablet",{"_index":2479,"title":{},"body":{"miscellaneous/variables.html":{}}}],["hd)?|visture",{"_index":2500,"title":{},"body":{"miscellaneous/variables.html":{}}}],["hd|i75",{"_index":2497,"title":{},"body":{"miscellaneous/variables.html":{}}}],["heading",{"_index":240,"title":{},"body":{"classes/AppPage.html":{}}}],["help",{"_index":480,"title":{},"body":{"contributing.html":{}}}],["helper",{"_index":703,"title":{},"body":{"index.html":{}}}],["helping",{"_index":526,"title":{},"body":{"contributing.html":{}}}],["helps",{"_index":101,"title":{},"body":{"components/AppComponent.html":{},"contributing.html":{},"index.html":{}}}],["here",{"_index":121,"title":{},"body":{"components/AppComponent.html":{},"contributing.html":{}}}],["hereby",{"_index":749,"title":{},"body":{"license.html":{}}}],["hisensetablet",{"_index":2878,"title":{},"body":{"miscellaneous/variables.html":{}}}],["holders",{"_index":796,"title":{},"body":{"license.html":{}}}],["holds",{"_index":701,"title":{},"body":{"index.html":{}}}],["home",{"_index":673,"title":{},"body":{"index.html":{}}}],["home.component.html",{"_index":675,"title":{},"body":{"index.html":{}}}],["home.component.scss",{"_index":674,"title":{},"body":{"index.html":{}}}],["homecomponent",{"_index":676,"title":{},"body":{"index.html":{}}}],["honeywell",{"_index":935,"title":{},"body":{"miscellaneous/variables.html":{}}}],["host",{"_index":130,"title":{},"body":{"components/AppComponent.html":{}}}],["hover",{"_index":153,"title":{},"body":{"components/AppComponent.html":{}}}],["hp",{"_index":2017,"title":{},"body":{"miscellaneous/variables.html":{}}}],["hptablet",{"_index":2016,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ht7s3|hudl",{"_index":2881,"title":{},"body":{"miscellaneous/variables.html":{}}}],["htc",{"_index":913,"title":{},"body":{"miscellaneous/variables.html":{}}}],["htc_flyer_p512|htc",{"_index":2041,"title":{},"body":{"miscellaneous/variables.html":{}}}],["htctablet",{"_index":2040,"title":{},"body":{"miscellaneous/variables.html":{}}}],["htc|htc.*(sensation|evo|vision|explorer|6800|8100|8900|a7272|s510e|c110e|legend|desire|t8282)|apx515ckt|qtek9090|apa9292kt|hd_mini|sensation.*z710e|pg86100|z715e|desire.*(a8181|hd)|adr6200|adr6400l|adr6425|001ht|inspire",{"_index":969,"title":{},"body":{"miscellaneous/variables.html":{}}}],["html",{"_index":184,"title":{},"body":{"components/AppComponent.html":{}}}],["http",{"_index":677,"title":{},"body":{"index.html":{}}}],["https://github.com/ahsanayaz/ngx",{"_index":819,"title":{},"body":{"properties.html":{}}}],["https://github.com/koderlabs/ngx",{"_index":822,"title":{},"body":{"properties.html":{}}}],["huaweitablet",{"_index":2249,"title":{},"body":{"miscellaneous/variables.html":{}}}],["hub2",{"_index":2884,"title":{},"body":{"miscellaneous/variables.html":{}}}],["hudl",{"_index":2880,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i.e",{"_index":741,"title":{},"body":{"index.html":{}}}],["i100",{"_index":1198,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i110|sch",{"_index":1199,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i200|sgh",{"_index":1327,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i300|sgh",{"_index":1328,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i300|sph",{"_index":1487,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i317|sgh",{"_index":1535,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i320|sgh",{"_index":1329,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i325|sph",{"_index":1488,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i330|sph",{"_index":1489,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i337|bgt",{"_index":995,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i350|sph",{"_index":1490,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i400|sch",{"_index":1200,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i405|sch",{"_index":1201,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i467|xe500|sm",{"_index":1903,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i497|sph",{"_index":1832,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i500|sch",{"_index":1202,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i500|sph",{"_index":1491,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i510|sch",{"_index":1203,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i515|sch",{"_index":1204,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i535|sm",{"_index":1532,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i5500|gt",{"_index":1080,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i5503|gt",{"_index":1081,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i550|sgh",{"_index":1330,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i5510|gt",{"_index":1556,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i5700|gt",{"_index":1082,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i577",{"_index":1331,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i5800|gt",{"_index":1083,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i5801|gt",{"_index":1084,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i600|sch",{"_index":1205,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i600|sgh",{"_index":1332,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i600|sph",{"_index":1492,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i607|sgh",{"_index":1333,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i617|sgh",{"_index":1334,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i627|sgh",{"_index":1335,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i637|sgh",{"_index":1336,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i6410|gt",{"_index":1085,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i6420|gt",{"_index":1086,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i677|sgh",{"_index":1337,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i700|sgh",{"_index":1338,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i700|sph",{"_index":1493,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i705",{"_index":1835,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i70|tab",{"_index":2542,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i7110|gt",{"_index":1087,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i717|sgh",{"_index":1339,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i71|tab",{"_index":2543,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i720|tab",{"_index":2533,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i721",{"_index":2540,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i727|sgh",{"_index":1340,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i730|sch",{"_index":1206,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i7410",{"_index":1088,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i747m|sgh",{"_index":1341,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i7500|gt",{"_index":1089,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i760|sch",{"_index":1207,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i770|sch",{"_index":1208,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i777",{"_index":1342,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i780|sgh",{"_index":1343,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i8000|gt",{"_index":1090,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i800|sch",{"_index":1813,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i8150|gt",{"_index":1091,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i815|sch",{"_index":1814,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i8160|gt",{"_index":1092,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i8190|gt",{"_index":1093,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i8262|gt",{"_index":1538,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i827|sgh",{"_index":1344,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i830",{"_index":1209,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i8320|gt",{"_index":1094,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i8330|gt",{"_index":1095,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i8350|gt",{"_index":1096,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i847|sgh",{"_index":1345,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i8510|gt",{"_index":1545,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i8530|gt",{"_index":1097,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i857|sgh",{"_index":1346,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i8700|gt",{"_index":1098,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i8703",{"_index":1099,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i8750|sm",{"_index":1559,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i8910|gt",{"_index":1100,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i896|sgh",{"_index":1347,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i897|sgh",{"_index":1348,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9000|gt",{"_index":1101,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9001|gt",{"_index":1102,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9003|gt",{"_index":1103,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i900|sgh",{"_index":1349,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9010|gt",{"_index":1104,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9020|gt",{"_index":1105,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9023|gt",{"_index":1106,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i905",{"_index":1815,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9070|gt",{"_index":1107,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i907|sgh",{"_index":1350,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9082|gt",{"_index":1108,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i909|gt",{"_index":1529,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9100|gt",{"_index":1109,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9103",{"_index":1110,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9105|gt",{"_index":1544,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i910|sch",{"_index":1210,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i915|gt",{"_index":1836,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i917|sgh",{"_index":1351,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9190|sm",{"_index":1591,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9195|sm",{"_index":1551,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9200x|gt",{"_index":1906,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9200|gt",{"_index":1880,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9205|sm",{"_index":1583,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i920|sch",{"_index":1211,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i921|tab",{"_index":2531,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9220|gt",{"_index":1111,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9228|sch",{"_index":1877,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i925",{"_index":1879,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9250|gt",{"_index":1112,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i927|sgh",{"_index":1352,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9295|gt",{"_index":1550,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9300|gt",{"_index":1113,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9305|gt",{"_index":1114,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i937",{"_index":1353,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9500|gt",{"_index":1115,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9505|gt",{"_index":1116,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i957|sgh",{"_index":1816,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i959|sch",{"_index":1212,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i987|sgh",{"_index":1817,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i997|sgh",{"_index":1354,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i_mobile",{"_index":931,"title":{},"body":{"miscellaneous/variables.html":{}}}],["icon",{"_index":160,"title":{},"body":{"components/AppComponent.html":{}}}],["iconbittablet",{"_index":2739,"title":{},"body":{"miscellaneous/variables.html":{}}}],["idea",{"_index":554,"title":{},"body":{"contributing.html":{}}}],["identifier",{"_index":587,"title":{},"body":{"coverage.html":{}}}],["identify",{"_index":102,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["ie",{"_index":843,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ii",{"_index":2401,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ijoytablet",{"_index":2662,"title":{},"body":{"miscellaneous/variables.html":{}}}],["im",{"_index":1620,"title":{},"body":{"miscellaneous/variables.html":{}}}],["img",{"_index":150,"title":{},"body":{"components/AppComponent.html":{}}}],["imobiletablet",{"_index":2638,"title":{},"body":{"miscellaneous/variables.html":{}}}],["implement",{"_index":535,"title":{},"body":{"contributing.html":{}}}],["implements",{"_index":419,"title":{},"body":{"pipes/KeysPipe.html":{}}}],["implied",{"_index":786,"title":{},"body":{"license.html":{}}}],["import",{"_index":74,"title":{},"body":{"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"pipes/KeysPipe.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["important",{"_index":515,"title":{},"body":{"contributing.html":{}}}],["imports",{"_index":215,"title":{},"body":{"modules/AppModule.html":{},"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["improve",{"_index":491,"title":{},"body":{"contributing.html":{}}}],["improves",{"_index":516,"title":{},"body":{"contributing.html":{}}}],["included",{"_index":780,"title":{},"body":{"license.html":{}}}],["including",{"_index":761,"title":{},"body":{"license.html":{}}}],["index",{"_index":19,"title":{"index.html":{}},"body":{"components/AppComponent.html":{},"classes/AppPage.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["info",{"_index":3,"title":{},"body":{"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"pipes/KeysPipe.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["info.key",{"_index":128,"title":{},"body":{"components/AppComponent.html":{}}}],["info.value",{"_index":129,"title":{},"body":{"components/AppComponent.html":{}}}],["information",{"_index":104,"title":{},"body":{"components/AppComponent.html":{},"classes/AppPage.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"contributing.html":{},"index.html":{}}}],["inherited",{"_index":455,"title":{},"body":{"injectables/UniversalDeviceDetectorService.html":{}}}],["initial",{"_index":333,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["initiated",{"_index":335,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["inject",{"_index":254,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["inject(request",{"_index":266,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["injectable",{"_index":255,"title":{"injectables/DeviceDetectorService.html":{},"injectables/UniversalDeviceDetectorService.html":{}},"body":{"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"coverage.html":{},"index.html":{}}}],["injectables",{"_index":273,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"injectables/UniversalDeviceDetectorService.html":{},"overview.html":{}}}],["inm8002kp|inm1010fp|inm805nd|intenso",{"_index":2164,"title":{},"body":{"miscellaneous/variables.html":{}}}],["input",{"_index":177,"title":{},"body":{"components/AppComponent.html":{}}}],["inq",{"_index":938,"title":{},"body":{"miscellaneous/variables.html":{}}}],["inspired",{"_index":730,"title":{},"body":{"index.html":{}}}],["install",{"_index":671,"title":{},"body":{"index.html":{}}}],["installation",{"_index":670,"title":{},"body":{"index.html":{}}}],["installed",{"_index":718,"title":{},"body":{"index.html":{}}}],["instanceof",{"_index":441,"title":{},"body":{"classes/ReTree.html":{}}}],["instead",{"_index":366,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["intensotablet",{"_index":2163,"title":{},"body":{"miscellaneous/variables.html":{}}}],["interface",{"_index":313,"title":{"interfaces/DeviceInfo.html":{}},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"coverage.html":{},"overview.html":{}}}],["interfaces",{"_index":410,"title":{},"body":{"interfaces/DeviceInfo.html":{}}}],["ios",{"_index":345,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"miscellaneous/variables.html":{}}}],["ipad",{"_index":320,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"coverage.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["ipad|ipad.*mobile",{"_index":1794,"title":{},"body":{"miscellaneous/variables.html":{}}}],["iphone",{"_index":684,"title":{},"body":{"index.html":{},"miscellaneous/variables.html":{}}}],["ipod",{"_index":912,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ips10",{"_index":2471,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ips10|tab",{"_index":2470,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ips9|tab",{"_index":2466,"title":{},"body":{"miscellaneous/variables.html":{}}}],["iq230|iq444|iq450|iq440|iq442|iq441|iq245|iq256|iq236|iq255|iq235|iq245|iq275|iq240|iq285|iq280|iq270|iq260|iq250",{"_index":1639,"title":{},"body":{"miscellaneous/variables.html":{}}}],["iq310|fly",{"_index":2243,"title":{},"body":{"miscellaneous/variables.html":{}}}],["iq|i",{"_index":1653,"title":{},"body":{"miscellaneous/variables.html":{}}}],["irutablet",{"_index":2166,"title":{},"body":{"miscellaneous/variables.html":{}}}],["isdesktop",{"_index":33,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["isdesktop(useragent",{"_index":284,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["isdesktopdevice",{"_index":681,"title":{},"body":{"index.html":{}}}],["ismobile",{"_index":31,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["ismobile(useragent",{"_index":289,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["isplatformbrowser",{"_index":310,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["isplatformbrowser(this.platformid",{"_index":323,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["isplatformserver",{"_index":261,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["isplatformserver(platformid",{"_index":268,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["issue",{"_index":503,"title":{},"body":{"contributing.html":{}}}],["issues",{"_index":479,"title":{},"body":{"contributing.html":{}}}],["istablet",{"_index":32,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["istablet(useragent",{"_index":293,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["it's",{"_index":552,"title":{},"body":{"contributing.html":{}}}],["item",{"_index":244,"title":{},"body":{"classes/AppPage.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"classes/ReTree.html":{}}}],["itunes",{"_index":948,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ivory|\\be",{"_index":2801,"title":{},"body":{"miscellaneous/variables.html":{}}}],["j120f|sm",{"_index":1585,"title":{},"body":{"miscellaneous/variables.html":{}}}],["j150|sgh",{"_index":1355,"title":{},"body":{"miscellaneous/variables.html":{}}}],["j200|sgh",{"_index":1356,"title":{},"body":{"miscellaneous/variables.html":{}}}],["j330f",{"_index":1594,"title":{},"body":{"miscellaneous/variables.html":{}}}],["j500fn|sm",{"_index":1592,"title":{},"body":{"miscellaneous/variables.html":{}}}],["jaytechtablet",{"_index":2783,"title":{},"body":{"miscellaneous/variables.html":{}}}],["jetstream|htc",{"_index":2043,"title":{},"body":{"miscellaneous/variables.html":{}}}],["jones|tablet",{"_index":2678,"title":{},"body":{"miscellaneous/variables.html":{}}}],["joy|fine11",{"_index":2420,"title":{},"body":{"miscellaneous/variables.html":{}}}],["js",{"_index":706,"title":{},"body":{"index.html":{}}}],["js.map",{"_index":707,"title":{},"body":{"index.html":{}}}],["jupiter",{"_index":2844,"title":{},"body":{"miscellaneous/variables.html":{}}}],["justify",{"_index":172,"title":{},"body":{"components/AppComponent.html":{}}}],["jxdtablet",{"_index":2658,"title":{},"body":{"miscellaneous/variables.html":{}}}],["k010",{"_index":2032,"title":{},"body":{"miscellaneous/variables.html":{}}}],["k011",{"_index":2033,"title":{},"body":{"miscellaneous/variables.html":{}}}],["k017",{"_index":2034,"title":{},"body":{"miscellaneous/variables.html":{}}}],["k01e",{"_index":2035,"title":{},"body":{"miscellaneous/variables.html":{}}}],["k1|)|thinkpad",{"_index":2099,"title":{},"body":{"miscellaneous/variables.html":{}}}],["karbonntablet",{"_index":2409,"title":{},"body":{"miscellaneous/variables.html":{}}}],["key",{"_index":422,"title":{},"body":{"pipes/KeysPipe.html":{},"miscellaneous/variables.html":{}}}],["keys",{"_index":414,"title":{},"body":{"pipes/KeysPipe.html":{}}}],["keys.push",{"_index":424,"title":{},"body":{"pipes/KeysPipe.html":{}}}],["keyspipe",{"_index":200,"title":{"pipes/KeysPipe.html":{}},"body":{"modules/AppModule.html":{},"pipes/KeysPipe.html":{},"coverage.html":{},"overview.html":{}}}],["keywords",{"_index":814,"title":{},"body":{"properties.html":{}}}],["kfapwa|wfjwae|kfsawa|kfsawi|kfaswi|kfarwi|kffowi|kfgiwi|kfmewi)\\\\b|android.*silk\\/[0",{"_index":2013,"title":{},"body":{"miscellaneous/variables.html":{}}}],["kiddo|nexo",{"_index":2855,"title":{},"body":{"miscellaneous/variables.html":{}}}],["kind",{"_index":785,"title":{},"body":{"license.html":{}}}],["kindle",{"_index":2011,"title":{},"body":{"miscellaneous/variables.html":{}}}],["king|cink",{"_index":1651,"title":{},"body":{"miscellaneous/variables.html":{}}}],["kobo",{"_index":2287,"title":{},"body":{"miscellaneous/variables.html":{}}}],["kobotablet",{"_index":2286,"title":{},"body":{"miscellaneous/variables.html":{}}}],["kocasotablet",{"_index":2875,"title":{},"body":{"miscellaneous/variables.html":{}}}],["l09|bah",{"_index":2266,"title":{},"body":{"miscellaneous/variables.html":{}}}],["l170|sgh",{"_index":1357,"title":{},"body":{"miscellaneous/variables.html":{}}}],["l700|sgh",{"_index":1358,"title":{},"body":{"miscellaneous/variables.html":{}}}],["l700|sph",{"_index":1494,"title":{},"body":{"miscellaneous/variables.html":{}}}],["landscape",{"_index":318,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"miscellaneous/enumerations.html":{}}}],["landscape)').matches",{"_index":382,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["later",{"_index":297,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["latest",{"_index":570,"title":{},"body":{"contributing.html":{},"index.html":{}}}],["lavatablet",{"_index":2798,"title":{},"body":{"miscellaneous/variables.html":{}}}],["lc11|sch",{"_index":1213,"title":{},"body":{"miscellaneous/variables.html":{}}}],["leadertablet",{"_index":2857,"title":{},"body":{"miscellaneous/variables.html":{}}}],["leave",{"_index":555,"title":{},"body":{"contributing.html":{}}}],["left",{"_index":158,"title":{},"body":{"components/AppComponent.html":{}}}],["legend",{"_index":183,"title":{},"body":{"components/AppComponent.html":{}}}],["length",{"_index":968,"title":{},"body":{"miscellaneous/variables.html":{}}}],["lenovotablet",{"_index":2095,"title":{},"body":{"miscellaneous/variables.html":{}}}],["lg",{"_index":919,"title":{},"body":{"miscellaneous/variables.html":{}}}],["lgtablet",{"_index":2072,"title":{},"body":{"miscellaneous/variables.html":{}}}],["liability",{"_index":800,"title":{},"body":{"license.html":{}}}],["liable",{"_index":797,"title":{},"body":{"license.html":{}}}],["library",{"_index":517,"title":{},"body":{"contributing.html":{},"index.html":{}}}],["license",{"_index":585,"title":{"license.html":{}},"body":{"contributing.html":{},"index.html":{},"license.html":{},"properties.html":{}}}],["limitation",{"_index":762,"title":{},"body":{"license.html":{}}}],["limited",{"_index":787,"title":{},"body":{"license.html":{}}}],["line",{"_index":967,"title":{},"body":{"miscellaneous/variables.html":{}}}],["line:max",{"_index":966,"title":{},"body":{"miscellaneous/variables.html":{}}}],["links",{"_index":583,"title":{},"body":{"contributing.html":{}}}],["lint",{"_index":711,"title":{},"body":{"index.html":{}}}],["lintto",{"_index":713,"title":{},"body":{"index.html":{}}}],["linux",{"_index":1687,"title":{},"body":{"miscellaneous/variables.html":{}}}],["live",{"_index":648,"title":{},"body":{"index.html":{}}}],["livingstone|cervantes|avant|aquaris",{"_index":2247,"title":{},"body":{"miscellaneous/variables.html":{}}}],["localhost:4200",{"_index":724,"title":{},"body":{"index.html":{}}}],["lock",{"_index":502,"title":{},"body":{"contributing.html":{}}}],["log",{"_index":726,"title":{},"body":{"index.html":{}}}],["logo",{"_index":144,"title":{},"body":{"components/AppComponent.html":{}}}],["loox|xeno10|odys",{"_index":2735,"title":{},"body":{"miscellaneous/variables.html":{}}}],["lot",{"_index":577,"title":{},"body":{"contributing.html":{}}}],["ls670|ls855|lw690|mn270|mn510|p509|p769|p930|un200|un270|un510|un610|us670|us740|us760|ux265|ux840|vn271",{"_index":1600,"title":{},"body":{"miscellaneous/variables.html":{}}}],["lu6200|ms690|ms695|ms770|ms840|ms870|ms910|p500|p700|p705|vm696|as680|as695|ax840|c729|e970|gs505|272",{"_index":1598,"title":{},"body":{"miscellaneous/variables.html":{}}}],["lumia",{"_index":924,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m",{"_index":2828,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m100|sph",{"_index":1495,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m110|sgh",{"_index":1359,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m110|sph",{"_index":1461,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m150|sgh",{"_index":1360,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m180k|shw",{"_index":1858,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m180l|sm",{"_index":1859,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m180s|shw",{"_index":1862,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m180w|shw",{"_index":1863,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m1|nibiru",{"_index":2843,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m200|sgh",{"_index":1361,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m220|sph",{"_index":1496,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m240",{"_index":1497,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m300w|shw",{"_index":1864,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m300|sph",{"_index":1498,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m305w|shw",{"_index":1865,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m305|sph",{"_index":1499,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m320|sph",{"_index":1500,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m330|sph",{"_index":1501,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m350|sph",{"_index":1502,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m3510|gt",{"_index":1117,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m360|sph",{"_index":1503,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m370|sph",{"_index":1504,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m380k|shw",{"_index":1866,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m380s|shw",{"_index":1867,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m380w",{"_index":1868,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m380|sph",{"_index":1505,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m430w|shw",{"_index":1870,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m480k|shw",{"_index":1871,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m480s|shw",{"_index":1872,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m480w|shw",{"_index":1873,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m485w|shw",{"_index":1874,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m486w|shw",{"_index":1875,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m500w|gt",{"_index":1876,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m510|sph",{"_index":1506,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m540|sph",{"_index":1507,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m550",{"_index":1508,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m560|sph",{"_index":1509,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m5650|gt",{"_index":1118,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m570|sph",{"_index":1510,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m580|sph",{"_index":1511,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m610|sph",{"_index":1512,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m620|sph",{"_index":1513,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m630|sph",{"_index":1514,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m702pro",{"_index":2167,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m721|tab",{"_index":2529,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m723g",{"_index":2528,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m7500|gt",{"_index":1119,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m7600|gt",{"_index":1120,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m7603",{"_index":1121,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m800|sph",{"_index":1515,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m810|sph",{"_index":1516,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m813g|tab",{"_index":2539,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m850|sph",{"_index":1517,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m8800|gt",{"_index":1122,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m8910|gt",{"_index":1123,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m9002|q702|kf026",{"_index":2437,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m900|sph",{"_index":1518,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m910",{"_index":1519,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m920|sph",{"_index":1520,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m930|sph",{"_index":1521,"title":{},"body":{"miscellaneous/variables.html":{}}}],["mac",{"_index":903,"title":{},"body":{"miscellaneous/variables.html":{}}}],["macintel",{"_index":350,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["macintosh",{"_index":904,"title":{},"body":{"miscellaneous/variables.html":{}}}],["macosx",{"_index":1747,"title":{},"body":{"miscellaneous/variables.html":{}}}],["macosx_10",{"_index":1738,"title":{},"body":{"miscellaneous/variables.html":{}}}],["macosx_11",{"_index":1737,"title":{},"body":{"miscellaneous/variables.html":{}}}],["macosx_11_0",{"_index":1726,"title":{},"body":{"miscellaneous/variables.html":{}}}],["macosx_12",{"_index":1735,"title":{},"body":{"miscellaneous/variables.html":{}}}],["macosx_13",{"_index":1734,"title":{},"body":{"miscellaneous/variables.html":{}}}],["macosx_14",{"_index":1732,"title":{},"body":{"miscellaneous/variables.html":{}}}],["macosx_15",{"_index":1730,"title":{},"body":{"miscellaneous/variables.html":{}}}],["macosx_16",{"_index":1728,"title":{},"body":{"miscellaneous/variables.html":{}}}],["macosx_2",{"_index":1746,"title":{},"body":{"miscellaneous/variables.html":{}}}],["macosx_3",{"_index":1745,"title":{},"body":{"miscellaneous/variables.html":{}}}],["macosx_4",{"_index":1744,"title":{},"body":{"miscellaneous/variables.html":{}}}],["macosx_5",{"_index":1743,"title":{},"body":{"miscellaneous/variables.html":{}}}],["macosx_6",{"_index":1742,"title":{},"body":{"miscellaneous/variables.html":{}}}],["macosx_7",{"_index":1741,"title":{},"body":{"miscellaneous/variables.html":{}}}],["macosx_8",{"_index":1740,"title":{},"body":{"miscellaneous/variables.html":{}}}],["macosx_9",{"_index":1739,"title":{},"body":{"miscellaneous/variables.html":{}}}],["magictab|stream|tb",{"_index":2475,"title":{},"body":{"miscellaneous/variables.html":{}}}],["mainmodule",{"_index":596,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["mainmodule.filename",{"_index":827,"title":{},"body":{"miscellaneous/variables.html":{}}}],["make",{"_index":505,"title":{},"body":{"contributing.html":{},"index.html":{}}}],["manually",{"_index":697,"title":{},"body":{"index.html":{}}}],["many",{"_index":475,"title":{},"body":{"contributing.html":{}}}],["map(key",{"_index":357,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["mapping.prop",{"_index":361,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["mappings",{"_index":336,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["mappings.foreach(mapping",{"_index":340,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["margin",{"_index":157,"title":{},"body":{"components/AppComponent.html":{}}}],["master",{"_index":541,"title":{},"body":{"contributing.html":{}}}],["match",{"_index":399,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["matching",{"_index":192,"title":{},"body":{"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"pipes/KeysPipe.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{},"contributing.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"properties.html":{},"miscellaneous/variables.html":{}}}],["max",{"_index":136,"title":{},"body":{"components/AppComponent.html":{}}}],["mb520|mb525|mb526|mb611|mb612|mb632|mb810|mb855|mb860|mb861|mb865|mb870|me501|me502|me511|me525|me600",{"_index":984,"title":{},"body":{"miscellaneous/variables.html":{}}}],["me560cg|me372cg|me302kl",{"_index":2031,"title":{},"body":{"miscellaneous/variables.html":{}}}],["me572c|me103k|me170c|me171c|\\\\bme70c\\\\b|me581c",{"_index":2036,"title":{},"body":{"miscellaneous/variables.html":{}}}],["me581cl|me8510c|me181c|p01y|po1ma|p01z|\\\\bp027\\\\b|\\\\bp024\\\\b|\\\\bp00c\\\\b",{"_index":2037,"title":{},"body":{"miscellaneous/variables.html":{}}}],["me632|me722|me811|me860|me863|me865|mt620|mt710|mt716|mt720|mt810|mt870|mt917|motorola.*titanium|wx435",{"_index":985,"title":{},"body":{"miscellaneous/variables.html":{}}}],["means",{"_index":576,"title":{},"body":{"contributing.html":{}}}],["mediacomtablet",{"_index":2827,"title":{},"body":{"miscellaneous/variables.html":{}}}],["mediatektablet",{"_index":2515,"title":{},"body":{"miscellaneous/variables.html":{}}}],["mediontablet",{"_index":2159,"title":{},"body":{"miscellaneous/variables.html":{}}}],["megafon",{"_index":2169,"title":{},"body":{"miscellaneous/variables.html":{}}}],["megafontablet",{"_index":2168,"title":{},"body":{"miscellaneous/variables.html":{}}}],["merchantability",{"_index":789,"title":{},"body":{"license.html":{}}}],["merge",{"_index":765,"title":{},"body":{"license.html":{}}}],["messanger",{"_index":860,"title":{},"body":{"miscellaneous/variables.html":{}}}],["metadata",{"_index":11,"title":{},"body":{"components/AppComponent.html":{},"pipes/KeysPipe.html":{}}}],["methods",{"_index":26,"title":{},"body":{"components/AppComponent.html":{},"classes/AppPage.html":{},"injectables/DeviceDetectorService.html":{},"pipes/KeysPipe.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["mi",{"_index":942,"title":{},"body":{"miscellaneous/variables.html":{}}}],["mi_se_9",{"_index":941,"title":{},"body":{"miscellaneous/variables.html":{}}}],["micromax",{"_index":925,"title":{},"body":{"miscellaneous/variables.html":{}}}],["micromax.*\\b(a210|a92|a88|a72|a111|a110q|a115|a116|a110|a90s|a26|a51|a35|a54|a25|a27|a89|a68|a65|a57|a90)\\b",{"_index":1606,"title":{},"body":{"miscellaneous/variables.html":{}}}],["micromaxtablet",{"_index":2407,"title":{},"body":{"miscellaneous/variables.html":{}}}],["mid125|mid810|mid732|mid120|mid930|mid800|mid731|mid900|mid100|mid820|mid735|mid980|mid130|mid833|mid737",{"_index":2213,"title":{},"body":{"miscellaneous/variables.html":{}}}],["mid7127|mid8042|mid8048|mid8127|mid9042|mid9740|mid9742|mid7022|mid7010",{"_index":2210,"title":{},"body":{"miscellaneous/variables.html":{}}}],["mid960|mid135|mid860|mid736|mid140|mid930|mid835|mid733|mid4x10",{"_index":2214,"title":{},"body":{"miscellaneous/variables.html":{}}}],["midtablet",{"_index":2211,"title":{},"body":{"miscellaneous/variables.html":{}}}],["miscellaneous",{"_index":637,"title":{"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}},"body":{"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["mit",{"_index":743,"title":{},"body":{"index.html":{},"license.html":{},"properties.html":{}}}],["mitablet",{"_index":2837,"title":{},"body":{"miscellaneous/variables.html":{}}}],["mobi",{"_index":2856,"title":{},"body":{"miscellaneous/variables.html":{}}}],["mobile",{"_index":124,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"miscellaneous/enumerations.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["mobile\\b",{"_index":1695,"title":{},"body":{"miscellaneous/variables.html":{}}}],["mobiles_re",{"_index":609,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["modecomtablet",{"_index":2566,"title":{},"body":{"miscellaneous/variables.html":{}}}],["modify",{"_index":764,"title":{},"body":{"license.html":{}}}],["module",{"_index":193,"title":{"modules/AppModule.html":{},"modules/AppServerModule.html":{}},"body":{}}],["modulefilename",{"_index":597,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["modules",{"_index":195,"title":{"modules.html":{}},"body":{"modules/AppModule.html":{},"modules/AppServerModule.html":{},"modules.html":{},"overview.html":{}}}],["more",{"_index":531,"title":{},"body":{"contributing.html":{}}}],["more|fine10",{"_index":2419,"title":{},"body":{"miscellaneous/variables.html":{}}}],["motorola",{"_index":918,"title":{},"body":{"miscellaneous/variables.html":{}}}],["motorolatablet",{"_index":2048,"title":{},"body":{"miscellaneous/variables.html":{}}}],["mozilla\\/5\\.0",{"_index":879,"title":{},"body":{"miscellaneous/variables.html":{}}}],["mpdc100|mpdc99|mpdc97|mpdc88|mpdc8|mpdc77|mp709|mid701|mid711|mid170|mpdc703|mpqc1010",{"_index":2810,"title":{},"body":{"miscellaneous/variables.html":{}}}],["mpi10c3g|m",{"_index":2829,"title":{},"body":{"miscellaneous/variables.html":{}}}],["mpmantablet",{"_index":2805,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ms",{"_index":855,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ms323|m257",{"_index":1602,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ms_edge",{"_index":847,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ms_edge_chromium",{"_index":849,"title":{},"body":{"miscellaneous/variables.html":{}}}],["msitablet",{"_index":2215,"title":{},"body":{"miscellaneous/variables.html":{}}}],["muhammad",{"_index":747,"title":{},"body":{"license.html":{},"properties.html":{}}}],["mw0811|mw0812|mw0922|mtk8382|mw1031|mw0831|mw0821|mw0931|mw0712",{"_index":2804,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m|tab",{"_index":2443,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n100|sph",{"_index":1522,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n105|sgh",{"_index":1362,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n150|sch",{"_index":1214,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n200|sph",{"_index":1523,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n240|sph",{"_index":1524,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n300|sch",{"_index":1215,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n300|sph",{"_index":1525,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n400|sph",{"_index":1526,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n500|sgh",{"_index":1363,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n5100|gt",{"_index":1847,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n5105|gt",{"_index":1848,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n5110x|gt",{"_index":1907,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n5110|shv",{"_index":1849,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n5120|sm",{"_index":1908,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n600",{"_index":1364,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n620|sgh",{"_index":1365,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n625|sgh",{"_index":1366,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n7000|gt",{"_index":1124,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n700|sgh",{"_index":1367,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n7100",{"_index":1530,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n7105|sch",{"_index":1531,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n710|sgh",{"_index":1368,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n8000|gt",{"_index":1830,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n8005|gt",{"_index":1842,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n8010|gt",{"_index":1841,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n8013|gt",{"_index":1837,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n8020|gt",{"_index":1843,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n9005|gt",{"_index":1548,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n900a|sm",{"_index":1533,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n900t|sgh",{"_index":1534,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n910c|sm",{"_index":1589,"title":{},"body":{"miscellaneous/variables.html":{}}}],["nabitablet",{"_index":2284,"title":{},"body":{"miscellaneous/variables.html":{}}}],["name",{"_index":41,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"pipes/KeysPipe.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["navi",{"_index":2441,"title":{},"body":{"miscellaneous/variables.html":{}}}],["navigateto",{"_index":226,"title":{},"body":{"classes/AppPage.html":{}}}],["navigator",{"_index":403,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["navigator.maxtouchpoints",{"_index":351,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["navigator.platform",{"_index":349,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["nectablet",{"_index":2269,"title":{},"body":{"miscellaneous/variables.html":{}}}],["need",{"_index":696,"title":{},"body":{"index.html":{}}}],["needed",{"_index":573,"title":{},"body":{"contributing.html":{}}}],["needs",{"_index":736,"title":{},"body":{"index.html":{}}}],["neon|xsk",{"_index":2186,"title":{},"body":{"miscellaneous/variables.html":{}}}],["new",{"_index":306,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{},"contributing.html":{},"coverage.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["nexo",{"_index":2846,"title":{},"body":{"miscellaneous/variables.html":{}}}],["nexotablet",{"_index":2845,"title":{},"body":{"miscellaneous/variables.html":{}}}],["next",{"_index":965,"title":{},"body":{"miscellaneous/variables.html":{}}}],["nexus",{"_index":915,"title":{},"body":{"miscellaneous/variables.html":{}}}],["nexus_phone",{"_index":914,"title":{},"body":{"miscellaneous/variables.html":{}}}],["nexustablet",{"_index":916,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ng",{"_index":721,"title":{},"body":{"index.html":{}}}],["ngmodule",{"_index":208,"title":{},"body":{"modules/AppModule.html":{},"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["nguniversal/express",{"_index":258,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"dependencies.html":{},"index.html":{}}}],["ngx",{"_index":76,"title":{},"body":{"components/AppComponent.html":{},"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{},"properties.html":{}}}],["nibiru",{"_index":2842,"title":{},"body":{"miscellaneous/variables.html":{}}}],["nibirutablet",{"_index":2841,"title":{},"body":{"miscellaneous/variables.html":{}}}],["nintendo",{"_index":936,"title":{},"body":{"miscellaneous/variables.html":{}}}],["noderequire",{"_index":825,"title":{},"body":{"miscellaneous/variables.html":{}}}],["nofilter",{"_index":420,"title":{},"body":{"pipes/KeysPipe.html":{}}}],["nokia",{"_index":923,"title":{},"body":{"miscellaneous/variables.html":{}}}],["nokia_lumia",{"_index":922,"title":{},"body":{"miscellaneous/variables.html":{}}}],["nokialumiatablet",{"_index":2193,"title":{},"body":{"miscellaneous/variables.html":{}}}],["noninfringement",{"_index":793,"title":{},"body":{"license.html":{}}}],["nooktablet",{"_index":2050,"title":{},"body":{"miscellaneous/variables.html":{}}}],["noopanimationsmodule",{"_index":213,"title":{},"body":{"modules/AppModule.html":{}}}],["note",{"_index":2639,"title":{},"body":{"miscellaneous/variables.html":{}}}],["notice",{"_index":778,"title":{},"body":{"license.html":{}}}],["nova|nexo",{"_index":2847,"title":{},"body":{"miscellaneous/variables.html":{}}}],["novo7|novo8|novo10|novo7aurora|novo7basic|novo7paladin|novo9",{"_index":2191,"title":{},"body":{"miscellaneous/variables.html":{}}}],["npm",{"_index":584,"title":{},"body":{"contributing.html":{},"index.html":{}}}],["nt",{"_index":880,"title":{},"body":{"miscellaneous/variables.html":{}}}],["null",{"_index":55,"title":{},"body":{"components/AppComponent.html":{},"classes/ReTree.html":{},"index.html":{}}}],["obj",{"_index":355,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"miscellaneous/variables.html":{}}}],["obj[browsers[key",{"_index":829,"title":{},"body":{"miscellaneous/variables.html":{}}}],["obj[constants[mapping.const][item",{"_index":352,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["obj[key",{"_index":1751,"title":{},"body":{"miscellaneous/variables.html":{}}}],["object",{"_index":283,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"miscellaneous/variables.html":{}}}],["object.keys(browser_versions_re_map).reduce((obj",{"_index":828,"title":{},"body":{"miscellaneous/variables.html":{}}}],["object.keys(constants.mobiles_re).find(mobile",{"_index":400,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["object.keys(constants.tablets_re).find(mobile",{"_index":405,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["object.keys(constants[mapping.const",{"_index":356,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["object.keys(constants[mapping.const]).reduce((obj",{"_index":342,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["object.keys(os_versions_re_map).reduce((obj",{"_index":1750,"title":{},"body":{"miscellaneous/variables.html":{}}}],["obtaining",{"_index":754,"title":{},"body":{"license.html":{}}}],["octa|mp10",{"_index":2807,"title":{},"body":{"miscellaneous/variables.html":{}}}],["octa|mpqc1114|mpqc1004|mpqc994|mpqc974|mpqc973|mpqc804|mpqc784|mpqc780",{"_index":2808,"title":{},"body":{"miscellaneous/variables.html":{}}}],["odystablet",{"_index":2734,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ondatablet",{"_index":2777,"title":{},"body":{"miscellaneous/variables.html":{}}}],["one",{"_index":549,"title":{},"body":{"contributing.html":{},"miscellaneous/variables.html":{}}}],["one|nexus",{"_index":973,"title":{},"body":{"miscellaneous/variables.html":{}}}],["opacity",{"_index":154,"title":{},"body":{"components/AppComponent.html":{}}}],["open",{"_index":112,"title":{},"body":{"components/AppComponent.html":{},"contributing.html":{}}}],["opened",{"_index":524,"title":{},"body":{"contributing.html":{}}}],["opera",{"_index":841,"title":{},"body":{"miscellaneous/variables.html":{}}}],["opera\\b",{"_index":876,"title":{},"body":{"miscellaneous/variables.html":{}}}],["optional",{"_index":43,"title":{},"body":{"components/AppComponent.html":{},"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"pipes/KeysPipe.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["orientation",{"_index":63,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["orientationtype",{"_index":316,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"miscellaneous/enumerations.html":{}}}],["orientationtype.landscape",{"_index":383,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["orientationtype.portrait",{"_index":384,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["orin",{"_index":2598,"title":{},"body":{"miscellaneous/variables.html":{}}}],["os",{"_index":57,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"coverage.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["os\\b",{"_index":959,"title":{},"body":{"miscellaneous/variables.html":{}}}],["os\\s*[0",{"_index":1792,"title":{},"body":{"miscellaneous/variables.html":{}}}],["os_re",{"_index":610,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["os_version",{"_index":60,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["os_versions",{"_index":339,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["os_versions_re",{"_index":611,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["os_versions_re_map",{"_index":612,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["os_versions_re_map[key",{"_index":1752,"title":{},"body":{"miscellaneous/variables.html":{}}}],["others",{"_index":496,"title":{},"body":{"contributing.html":{}}}],["otherwise",{"_index":804,"title":{},"body":{"license.html":{}}}],["out",{"_index":202,"title":{},"body":{"modules/AppModule.html":{},"modules/AppServerModule.html":{},"contributing.html":{},"license.html":{},"overview.html":{}}}],["overmaxtablet",{"_index":2472,"title":{},"body":{"miscellaneous/variables.html":{}}}],["overview",{"_index":811,"title":{"overview.html":{}},"body":{"overview.html":{}}}],["p",{"_index":2445,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p1000|gt",{"_index":1801,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p1000|p300|s18|s6600|s9100)\\\\b",{"_index":2661,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p1003|gt",{"_index":1802,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p100|gt",{"_index":1821,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p1010|gt",{"_index":1803,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p1013|gt",{"_index":1844,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p1025|tab",{"_index":2457,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p107|sgh",{"_index":1369,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p1101|mtv",{"_index":2238,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p1325|tab",{"_index":2459,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p2000|p7040|p7000|c790",{"_index":1638,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p207|sgh",{"_index":1370,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p300|sgh",{"_index":1371,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p3100|gt",{"_index":1822,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p3105|gt",{"_index":1804,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p3108|gt",{"_index":1823,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p310|sgh",{"_index":1372,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p3110|gt",{"_index":1824,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p3113|gt",{"_index":1838,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p3113|sm",{"_index":1968,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p350",{"_index":1999,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p355m|sm",{"_index":2001,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p500|sgh",{"_index":1833,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p506|tab",{"_index":2440,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p5100",{"_index":1825,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p5110|gt",{"_index":1826,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p5113|gt",{"_index":1839,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p517|tab",{"_index":2444,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p5200|gt",{"_index":1881,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p520|sgh",{"_index":1373,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p5210x|sm",{"_index":1883,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p5210|gt",{"_index":1882,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p5220|gt",{"_index":1905,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p550",{"_index":1961,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p555m|sm",{"_index":2000,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p580|sm",{"_index":1997,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p585m|sm",{"_index":1885,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p585y|sm",{"_index":2009,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p600",{"_index":1892,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p6000|sm",{"_index":1901,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p600x|sm",{"_index":1929,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p601|sm",{"_index":1893,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p605v|sm",{"_index":1923,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p605|sm",{"_index":1894,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p607t|sm",{"_index":1955,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p615|sm",{"_index":1895,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p6200|gt",{"_index":1827,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p6201",{"_index":1845,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p6210",{"_index":1805,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p6800|gt",{"_index":1806,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p6810|gt",{"_index":1807,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p701|tab",{"_index":2447,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p703|tab",{"_index":2448,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p709|sch",{"_index":1580,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p7100|gt",{"_index":1808,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p715a|htc",{"_index":2044,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p721|tab",{"_index":2449,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p729|sm",{"_index":1581,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p7300|gt",{"_index":1809,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p7310|gt",{"_index":1810,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p731n",{"_index":2450,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p7320|gt",{"_index":1828,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p735|sgh",{"_index":1374,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p739|sch",{"_index":1878,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p741|tab",{"_index":2451,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p7500|gt",{"_index":1811,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p7501|gt",{"_index":1846,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p7503|sm",{"_index":1935,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p7510|sch",{"_index":1812,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p7511|gt",{"_index":1829,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p777",{"_index":1375,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p8110|gt",{"_index":1840,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p825|tab",{"_index":2452,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p8510|sgh",{"_index":1831,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p9000|sm",{"_index":1965,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p900x|sm",{"_index":1930,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p900|sm",{"_index":1896,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p901|sm",{"_index":1897,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p905v|sm",{"_index":1924,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p905|sm",{"_index":1909,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p905|tab",{"_index":2453,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p907a|sm",{"_index":1948,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p925|tab",{"_index":2454,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p9|tecno",{"_index":2656,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pa762",{"_index":2785,"title":{},"body":{"miscellaneous/variables.html":{}}}],["package",{"_index":580,"title":{"dependencies.html":{},"properties.html":{}},"body":{"contributing.html":{},"index.html":{}}}],["pad",{"_index":2709,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pad10",{"_index":2698,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pad7|fx2",{"_index":2697,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pad\\b|\\bhm",{"_index":2839,"title":{},"body":{"miscellaneous/variables.html":{}}}],["padding",{"_index":139,"title":{},"body":{"components/AppComponent.html":{}}}],["page",{"_index":113,"title":{},"body":{"components/AppComponent.html":{},"contributing.html":{}}}],["palm",{"_index":926,"title":{},"body":{"miscellaneous/variables.html":{}}}],["palmsource|palm",{"_index":1607,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pantech",{"_index":928,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pantech.*p4100",{"_index":2274,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pantechtablet",{"_index":2273,"title":{},"body":{"miscellaneous/variables.html":{}}}],["parameters",{"_index":39,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"pipes/KeysPipe.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["particular",{"_index":791,"title":{},"body":{"license.html":{}}}],["pass",{"_index":544,"title":{},"body":{"contributing.html":{}}}],["paste",{"_index":120,"title":{},"body":{"components/AppComponent.html":{}}}],["pc",{"_index":2892,"title":{},"body":{"miscellaneous/variables.html":{}}}],["peax",{"_index":1646,"title":{},"body":{"miscellaneous/variables.html":{}}}],["peax|cink",{"_index":1645,"title":{},"body":{"miscellaneous/variables.html":{}}}],["permission",{"_index":748,"title":{},"body":{"license.html":{}}}],["permit",{"_index":772,"title":{},"body":{"license.html":{}}}],["person",{"_index":753,"title":{},"body":{"license.html":{}}}],["persons",{"_index":773,"title":{},"body":{"license.html":{}}}],["philipstablet",{"_index":2203,"title":{},"body":{"miscellaneous/variables.html":{}}}],["phone",{"_index":686,"title":{},"body":{"index.html":{},"miscellaneous/variables.html":{}}}],["phone\\b",{"_index":875,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pi1045|tab",{"_index":2458,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pipe",{"_index":411,"title":{"pipes/KeysPipe.html":{}},"body":{"pipes/KeysPipe.html":{},"coverage.html":{},"overview.html":{}}}],["pipes",{"_index":412,"title":{},"body":{"pipes/KeysPipe.html":{}}}],["pipes/keys.pipe",{"_index":210,"title":{},"body":{"modules/AppModule.html":{}}}],["pipetransform",{"_index":418,"title":{},"body":{"pipes/KeysPipe.html":{}}}],["pixel",{"_index":972,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pl1015|tab",{"_index":2456,"title":{},"body":{"miscellaneous/variables.html":{}}}],["planning",{"_index":525,"title":{},"body":{"contributing.html":{}}}],["platform_id",{"_index":256,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["platformid",{"_index":265,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["platinum",{"_index":2188,"title":{},"body":{"miscellaneous/variables.html":{}}}],["play(s|s)tation",{"_index":889,"title":{},"body":{"miscellaneous/variables.html":{}}}],["playbook|rim",{"_index":2039,"title":{},"body":{"miscellaneous/variables.html":{}}}],["playstation",{"_index":886,"title":{},"body":{"miscellaneous/variables.html":{}}}],["playstation.*(portable|vita",{"_index":2370,"title":{},"body":{"miscellaneous/variables.html":{}}}],["playstationtablet",{"_index":2369,"title":{},"body":{"miscellaneous/variables.html":{}}}],["please",{"_index":537,"title":{},"body":{"contributing.html":{},"index.html":{}}}],["plt7033|plt7033d|plt7035|plt7035d|plt7044k|plt7045k|plt7045kb|plt7071kg|plt7072|plt7223g|plt7225g",{"_index":2424,"title":{},"body":{"miscellaneous/variables.html":{}}}],["plt7777g|plt7810k|plt7849g|plt7851g|plt7852g|plt8015|plt8031|plt8034|plt8036|plt8080k|plt8082|plt8088",{"_index":2425,"title":{},"body":{"miscellaneous/variables.html":{}}}],["plt8223g|plt8234g|plt8235g|plt8816k|plt9011|plt9045k|plt9233g|plt9735|plt9760g|plt9770g)\\\\b",{"_index":2426,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pmp5297c|pmp5297c_quad|pmp812e|pmp812e3g|pmp812f|pmp810e|pmp880td|pmt3017|pmt3037|pmt3047|pmt3057|pmt7008",{"_index":2093,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pmp5597d|pmp5597|pmp7100d|per3464|per3274|per3574|per3884|per5274|per5474|pmp5097cpro|pmp5097|pmp7380d",{"_index":2092,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pmp5770d|pmp3970b|pmp3870c|pmp5580c|pmp5880d|pmp5780d|pmp5588c|pmp7280c|pmp7280c3g|pmp7280|pmp7880d",{"_index":2091,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pmt5887|pmt5001|pmt5002",{"_index":2094,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pnd530",{"_index":2239,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pnd531|mtv",{"_index":2237,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pocketbook",{"_index":2874,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pocketbooktablet",{"_index":2873,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pointer",{"_index":146,"title":{},"body":{"components/AppComponent.html":{}}}],["pointofviewtablet",{"_index":2438,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pop|mint|epsilon|broadway|jump|hop|legend|new",{"_index":2822,"title":{},"body":{"miscellaneous/variables.html":{}}}],["portions",{"_index":782,"title":{},"body":{"license.html":{}}}],["portrait",{"_index":317,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"miscellaneous/enumerations.html":{}}}],["position",{"_index":131,"title":{},"body":{"components/AppComponent.html":{}}}],["positivotablet",{"_index":2282,"title":{},"body":{"miscellaneous/variables.html":{}}}],["powered",{"_index":98,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["pr",{"_index":534,"title":{},"body":{"contributing.html":{}}}],["pr945|tab",{"_index":2455,"title":{},"body":{"miscellaneous/variables.html":{}}}],["prestigiotablet",{"_index":2089,"title":{},"body":{"miscellaneous/variables.html":{}}}],["previousvalue",{"_index":362,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["primo",{"_index":2227,"title":{},"body":{"miscellaneous/variables.html":{}}}],["primus",{"_index":2607,"title":{},"body":{"miscellaneous/variables.html":{}}}],["private",{"_index":322,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"index.html":{}}}],["processing",{"_index":107,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["project",{"_index":477,"title":{},"body":{"contributing.html":{}}}],["projects/.../device",{"_index":639,"title":{},"body":{"miscellaneous/enumerations.html":{},"miscellaneous/variables.html":{}}}],["projects/.../server.ts",{"_index":641,"title":{},"body":{"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["projects/demo/e2e/src/app.po.ts",{"_index":222,"title":{},"body":{"classes/AppPage.html":{},"coverage.html":{}}}],["projects/demo/e2e/src/app.po.ts:13",{"_index":229,"title":{},"body":{"classes/AppPage.html":{}}}],["projects/demo/e2e/src/app.po.ts:17",{"_index":231,"title":{},"body":{"classes/AppPage.html":{}}}],["projects/demo/e2e/src/app.po.ts:5",{"_index":232,"title":{},"body":{"classes/AppPage.html":{}}}],["projects/demo/e2e/src/app.po.ts:9",{"_index":227,"title":{},"body":{"classes/AppPage.html":{}}}],["projects/demo/server.ts",{"_index":590,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["projects/demo/src/app/app.component.ts",{"_index":10,"title":{},"body":{"components/AppComponent.html":{},"coverage.html":{}}}],["projects/demo/src/app/app.component.ts:10",{"_index":64,"title":{},"body":{"components/AppComponent.html":{}}}],["projects/demo/src/app/app.component.ts:11",{"_index":56,"title":{},"body":{"components/AppComponent.html":{}}}],["projects/demo/src/app/app.component.ts:12",{"_index":67,"title":{},"body":{"components/AppComponent.html":{}}}],["projects/demo/src/app/app.component.ts:13",{"_index":65,"title":{},"body":{"components/AppComponent.html":{}}}],["projects/demo/src/app/app.component.ts:14",{"_index":38,"title":{},"body":{"components/AppComponent.html":{}}}],["projects/demo/src/app/app.component.ts:24",{"_index":53,"title":{},"body":{"components/AppComponent.html":{}}}],["projects/demo/src/app/app.component.ts:28",{"_index":69,"title":{},"body":{"components/AppComponent.html":{}}}],["projects/demo/src/app/app.component.ts:32",{"_index":71,"title":{},"body":{"components/AppComponent.html":{}}}],["projects/demo/src/app/app.component.ts:36",{"_index":73,"title":{},"body":{"components/AppComponent.html":{}}}],["projects/demo/src/app/app.component.ts:40",{"_index":46,"title":{},"body":{"components/AppComponent.html":{}}}],["projects/demo/src/app/app.component.ts:45",{"_index":54,"title":{},"body":{"components/AppComponent.html":{}}}],["projects/demo/src/app/app.module.ts",{"_index":203,"title":{},"body":{"modules/AppModule.html":{}}}],["projects/demo/src/app/pipes/keys.pipe.ts",{"_index":413,"title":{},"body":{"pipes/KeysPipe.html":{},"coverage.html":{}}}],["projects/demo/src/app/pipes/keys.pipe.ts:7",{"_index":417,"title":{},"body":{"pipes/KeysPipe.html":{}}}],["projects/demo/src/app/server.ts",{"_index":250,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"coverage.html":{}}}],["projects/demo/src/app/server.ts:13",{"_index":454,"title":{},"body":{"injectables/UniversalDeviceDetectorService.html":{}}}],["projects/ngx",{"_index":274,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"classes/ReTree.html":{},"coverage.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/variables.html":{}}}],["promise",{"_index":234,"title":{},"body":{"classes/AppPage.html":{}}}],["prop",{"_index":337,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["properties",{"_index":20,"title":{"properties.html":{}},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{},"properties.html":{}}}],["property",{"_index":127,"title":{},"body":{"components/AppComponent.html":{}}}],["props",{"_index":416,"title":{},"body":{"pipes/KeysPipe.html":{}}}],["props.indexof(key",{"_index":426,"title":{},"body":{"pipes/KeysPipe.html":{}}}],["props.length",{"_index":421,"title":{},"body":{"pipes/KeysPipe.html":{}}}],["propstoshow",{"_index":22,"title":{},"body":{"components/AppComponent.html":{}}}],["proscantablet",{"_index":2422,"title":{},"body":{"miscellaneous/variables.html":{}}}],["protab2",{"_index":2465,"title":{},"body":{"miscellaneous/variables.html":{}}}],["protab25xxl",{"_index":2468,"title":{},"body":{"miscellaneous/variables.html":{}}}],["protab25|tab",{"_index":2461,"title":{},"body":{"miscellaneous/variables.html":{}}}],["protab26",{"_index":2469,"title":{},"body":{"miscellaneous/variables.html":{}}}],["protab26xl|tab",{"_index":2464,"title":{},"body":{"miscellaneous/variables.html":{}}}],["protab26|tab",{"_index":2462,"title":{},"body":{"miscellaneous/variables.html":{}}}],["protab27|tab",{"_index":2463,"title":{},"body":{"miscellaneous/variables.html":{}}}],["protab30",{"_index":2467,"title":{},"body":{"miscellaneous/variables.html":{}}}],["protab[0",{"_index":2460,"title":{},"body":{"miscellaneous/variables.html":{}}}],["protractor",{"_index":233,"title":{},"body":{"classes/AppPage.html":{}}}],["provide",{"_index":271,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"contributing.html":{},"index.html":{}}}],["provided",{"_index":783,"title":{},"body":{"license.html":{}}}],["providedin",{"_index":321,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["providers",{"_index":219,"title":{},"body":{"modules/AppModule.html":{},"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["pro|flash|smoke|mini",{"_index":978,"title":{},"body":{"miscellaneous/variables.html":{}}}],["prs",{"_index":539,"title":{},"body":{"contributing.html":{}}}],["ps4",{"_index":884,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ptl21|pt003|p8010|adr910l|p6030|p6020|p9070|p4100|p9060|p5000",{"_index":1636,"title":{},"body":{"miscellaneous/variables.html":{}}}],["public",{"_index":278,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["publish",{"_index":766,"title":{},"body":{"license.html":{}}}],["pull",{"_index":487,"title":{},"body":{"contributing.html":{}}}],["purpose",{"_index":792,"title":{},"body":{"license.html":{}}}],["pyleaudiotablet",{"_index":2380,"title":{},"body":{"miscellaneous/variables.html":{}}}],["q105|sgh",{"_index":1376,"title":{},"body":{"miscellaneous/variables.html":{}}}],["q3|genius",{"_index":2398,"title":{},"body":{"miscellaneous/variables.html":{}}}],["q4|genius",{"_index":2400,"title":{},"body":{"miscellaneous/variables.html":{}}}],["qc|t",{"_index":2647,"title":{},"body":{"miscellaneous/variables.html":{}}}],["qpad",{"_index":2799,"title":{},"body":{"miscellaneous/variables.html":{}}}],["qtaqz3|qtair7|qtaqtz3|qtasun1|qtasun2|qtaxia1",{"_index":2733,"title":{},"body":{"miscellaneous/variables.html":{}}}],["questions",{"_index":530,"title":{},"body":{"contributing.html":{}}}],["r100|sch",{"_index":1216,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r104|tab",{"_index":2563,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r106|tab",{"_index":2537,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r210|sgh",{"_index":1377,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r220|sgh",{"_index":1378,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r225|sgh",{"_index":1379,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r300|sch",{"_index":1217,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r351|sch",{"_index":1218,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r400|sch",{"_index":1219,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r410",{"_index":1220,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r70|tab",{"_index":2535,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r721|tab",{"_index":2532,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r73|tab",{"_index":2545,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r74|tab",{"_index":2546,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r75|tab",{"_index":2548,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r76.1|tab",{"_index":2549,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r76.2|tab",{"_index":2536,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r83.2|tab",{"_index":2538,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r83.3|tab",{"_index":2564,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r83|tab",{"_index":2554,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r93|tab",{"_index":2547,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r973|tab",{"_index":2556,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r974.2",{"_index":2562,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r974|tab",{"_index":2555,"title":{},"body":{"miscellaneous/variables.html":{}}}],["re",{"_index":374,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["read",{"_index":509,"title":{},"body":{"contributing.html":{}}}],["readman",{"_index":2520,"title":{},"body":{"miscellaneous/variables.html":{}}}],["really",{"_index":499,"title":{},"body":{"contributing.html":{}}}],["rebel",{"_index":2674,"title":{},"body":{"miscellaneous/variables.html":{}}}],["reduce((previousvalue",{"_index":359,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["regarding",{"_index":105,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["regex",{"_index":435,"title":{},"body":{"classes/ReTree.html":{},"index.html":{}}}],["regex.and.every((item",{"_index":445,"title":{},"body":{"classes/ReTree.html":{}}}],["regex.exec(str",{"_index":450,"title":{},"body":{"classes/ReTree.html":{}}}],["regex.not",{"_index":449,"title":{},"body":{"classes/ReTree.html":{}}}],["regex.or.some((item",{"_index":448,"title":{},"body":{"classes/ReTree.html":{}}}],["regex.reduce((res",{"_index":452,"title":{},"body":{"classes/ReTree.html":{}}}],["regex.test(str",{"_index":443,"title":{},"body":{"classes/ReTree.html":{}}}],["regexp",{"_index":442,"title":{},"body":{"classes/ReTree.html":{}}}],["regexp(`\\\\b(101g9|80g9|a101it)\\\\b|qilive",{"_index":2180,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`\\\\b(argus",{"_index":2591,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`\\\\b(pem63|plt1023g|plt1041|plt1044|plt1044g|plt1091|plt4311|plt4311pl|plt4315|plt7030",{"_index":2423,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`\\\\b(v975i|vi30|vx530|v701|vi60|v701s|vi50|v801s|v719|vx610w|vx610w|v819i|vi10|vx580w|vi10",{"_index":2778,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`\\\\blg\\\\b;|lg",{"_index":1595,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`\\\\bsamsung\\\\b|sm",{"_index":990,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`^.*padfone((?!mobile).)*$|transformer|tf101|tf101g|tf300t|tf300tg|tf300tl|tf700t|tf700kl",{"_index":2027,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`android",{"_index":2055,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`android.*(bq)?.*(elcano|curie|edison|maxwell|kepler|pascal|tesla|hypatia|platon|newton",{"_index":2246,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`android.*\\\\b(tab210|tab211|tab224|tab250|tab260|tab264|tab310|tab360|tab364|tab410|tab411",{"_index":2125,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`android.*\\\\b97d\\\\b|tablet(?!.*pc)|bntv250a|mid",{"_index":2887,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`freetab",{"_index":2567,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`goclever",{"_index":2522,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`kidspad",{"_index":2700,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`kindle|silk.*accelerated|android.*\\\\b(kfot|kftt|kfjwi|kfjwa|kfote|kfsowi|kfthwi|kfthwa|kfapwi",{"_index":2012,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`kite",{"_index":1640,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`lenovo",{"_index":2096,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`m9701|m9000|m9100|m806|m1052|m806|t703|mid701|mid713|mid710|mid727|mid760|mid830|mid728|mid933",{"_index":2212,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`mediapad|mediapad",{"_index":2250,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`mid1042|mid1045|mid1125|mid1126|mid7012|mid7014|mid7015|mid7034|mid7035|mid7036|mid7042|mid7048",{"_index":2209,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`mitab",{"_index":2820,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`motorola|droidx|droid",{"_index":980,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`mp11",{"_index":2806,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`msi",{"_index":2216,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`navipad|tb",{"_index":2293,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`nettab|nt",{"_index":2740,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`ov",{"_index":2473,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`pantech|im",{"_index":1609,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`pmp3170b|pmp3270b|pmp3470b|pmp7170b|pmp3370b|pmp3570c|pmp5870c|pmp3670b|pmp5570c",{"_index":2090,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`samsung.*tablet|galaxy.*tab|sc",{"_index":1799,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`sony.*tablet|xperia",{"_index":2196,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`t98",{"_index":2753,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`tab",{"_index":2439,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`tablet",{"_index":2663,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`tapatalk|pda;|sagem|\\\\bmmp\\\\b|pocket|\\\\bpsp\\\\b|symbian|smartphone|smartfon|treo|up.browser",{"_index":1685,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`tblt10q|tblt10i|tbl",{"_index":2858,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`tpc7102|tpc7103|tpc7105|tpc7106|tpc7107|tpc7201|tpc7203|tpc7205|tpc7210|tpc7708|tpc7709",{"_index":2430,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(regex",{"_index":440,"title":{},"body":{"classes/ReTree.html":{}}}],["regular",{"_index":649,"title":{},"body":{"index.html":{}}}],["relative",{"_index":132,"title":{},"body":{"components/AppComponent.html":{}}}],["relevant",{"_index":547,"title":{},"body":{"contributing.html":{}}}],["repo",{"_index":495,"title":{},"body":{"contributing.html":{}}}],["reporting",{"_index":508,"title":{},"body":{"contributing.html":{}}}],["repository",{"_index":821,"title":{},"body":{"properties.html":{}}}],["reproduced",{"_index":511,"title":{},"body":{"contributing.html":{}}}],["request",{"_index":257,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"contributing.html":{},"index.html":{}}}],["requests",{"_index":488,"title":{},"body":{"contributing.html":{}}}],["required",{"_index":564,"title":{},"body":{"contributing.html":{}}}],["res",{"_index":376,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"classes/ReTree.html":{}}}],["res[1",{"_index":378,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["reset",{"_index":123,"title":{},"body":{"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppServerModule.html":{},"overview.html":{}}}],["resetdeviceinfo",{"_index":29,"title":{},"body":{"components/AppComponent.html":{}}}],["restriction",{"_index":760,"title":{},"body":{"license.html":{}}}],["results",{"_index":191,"title":{},"body":{"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"pipes/KeysPipe.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{},"contributing.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"properties.html":{},"miscellaneous/variables.html":{}}}],["retree",{"_index":277,"title":{"classes/ReTree.html":{}},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{},"coverage.html":{},"index.html":{}}}],["return",{"_index":90,"title":{},"body":{"components/AppComponent.html":{},"classes/AppPage.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"pipes/KeysPipe.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{},"miscellaneous/variables.html":{}}}],["returns",{"_index":51,"title":{},"body":{"components/AppComponent.html":{},"classes/AppPage.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"pipes/KeysPipe.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{},"miscellaneous/functions.html":{},"index.html":{}}}],["revolution|finity",{"_index":2681,"title":{},"body":{"miscellaneous/variables.html":{}}}],["right",{"_index":149,"title":{},"body":{"components/AppComponent.html":{}}}],["rights",{"_index":763,"title":{},"body":{"license.html":{}}}],["rm",{"_index":2628,"title":{},"body":{"miscellaneous/variables.html":{}}}],["rockchiptablet",{"_index":2240,"title":{},"body":{"miscellaneous/variables.html":{}}}],["root",{"_index":14,"title":{},"body":{"components/AppComponent.html":{},"classes/AppPage.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["rossmoortablet",{"_index":2627,"title":{},"body":{"miscellaneous/variables.html":{}}}],["rotate(45deg",{"_index":152,"title":{},"body":{"components/AppComponent.html":{}}}],["rt10a",{"_index":2885,"title":{},"body":{"miscellaneous/variables.html":{}}}],["run",{"_index":593,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{},"index.html":{}}}],["running",{"_index":690,"title":{},"body":{"index.html":{}}}],["rv:48.0",{"_index":1679,"title":{},"body":{"miscellaneous/variables.html":{}}}],["rv:49.0|mobile",{"_index":1677,"title":{},"body":{"miscellaneous/variables.html":{}}}],["rxjs",{"_index":631,"title":{},"body":{"dependencies.html":{}}}],["s1",{"_index":2404,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s105|sgh",{"_index":1380,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s2|genius",{"_index":2397,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s307|sgh",{"_index":1381,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s3110|gt",{"_index":1125,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s3310|gt",{"_index":1126,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s3350|gt",{"_index":1127,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s3353|gt",{"_index":1128,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s3370|gt",{"_index":1129,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s3650|gt",{"_index":1130,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s3653|gt",{"_index":1131,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s3770",{"_index":1132,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s3850|gt",{"_index":1133,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5210|gt",{"_index":1134,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5220|gt",{"_index":1135,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5229|gt",{"_index":1136,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5230|gt",{"_index":996,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5233|gt",{"_index":1137,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5250|gt",{"_index":1138,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5253|gt",{"_index":1139,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5260|gt",{"_index":1140,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5263|gt",{"_index":1141,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5270",{"_index":1142,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5300|gt",{"_index":1143,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5300|s602|s603|s5100|s5110|s601|s7100a|p3000f|p3000s|p101|p200s|p1000m|p200m|p9100|p1000s|s6600b|s908",{"_index":2660,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5301|gt",{"_index":1549,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5310|gt",{"_index":1543,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5312",{"_index":1542,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5330|gt",{"_index":1144,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5350|gt",{"_index":1145,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5360b|gt",{"_index":1537,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5360|gt",{"_index":1146,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5363|gt",{"_index":1147,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5369|gt",{"_index":1148,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5380d|gt",{"_index":1150,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5380|gt",{"_index":1149,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5560|gt",{"_index":1151,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5570|gt",{"_index":1152,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5600",{"_index":1153,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5603|gt",{"_index":1154,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5610|gt",{"_index":1155,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5620|gt",{"_index":1156,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5660|gt",{"_index":1157,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5670|gt",{"_index":1158,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5690|gt",{"_index":1159,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5750|gt",{"_index":1160,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5780|gt",{"_index":1161,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5830|gt",{"_index":1162,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5839|gt",{"_index":1163,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s6102",{"_index":1164,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s6310|gt",{"_index":1541,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s6312|gt",{"_index":1540,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s6500|gt",{"_index":1165,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s6790n|sm",{"_index":1546,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s6802|gt",{"_index":1539,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s7",{"_index":2262,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s7070|gt",{"_index":1166,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s7200|gt",{"_index":1167,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s7220|gt",{"_index":1168,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s7230|gt",{"_index":1169,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s7233|gt",{"_index":1170,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s7250|gt",{"_index":1171,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s7392|gt",{"_index":1553,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s73|tab",{"_index":2544,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s7500|gt",{"_index":1172,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s7530e|gt",{"_index":1558,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s7530|gt",{"_index":1173,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s7550|gt",{"_index":1174,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s7560",{"_index":1554,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s7562",{"_index":1175,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s7582|gt",{"_index":1557,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s7710|gt",{"_index":1176,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s7|s7",{"_index":2254,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s8000|gt",{"_index":1177,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s8003|gt",{"_index":1178,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s8500|gt",{"_index":1179,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s8530|gt",{"_index":1180,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s8600|sch",{"_index":1181,"title":{},"body":{"miscellaneous/variables.html":{}}}],["safari",{"_index":838,"title":{},"body":{"miscellaneous/variables.html":{}}}],["same",{"_index":562,"title":{},"body":{"contributing.html":{}}}],["samsung",{"_index":851,"title":{},"body":{"miscellaneous/variables.html":{}}}],["samsungtablet",{"_index":1798,"title":{},"body":{"miscellaneous/variables.html":{}}}],["savein",{"_index":672,"title":{},"body":{"index.html":{}}}],["sch",{"_index":1187,"title":{},"body":{"miscellaneous/variables.html":{}}}],["se",{"_index":943,"title":{},"body":{"miscellaneous/variables.html":{}}}],["section",{"_index":572,"title":{},"body":{"contributing.html":{}}}],["see",{"_index":116,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["selector",{"_index":12,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["selenium",{"_index":236,"title":{},"body":{"classes/AppPage.html":{}}}],["sell",{"_index":770,"title":{},"body":{"license.html":{}}}],["send",{"_index":486,"title":{},"body":{"contributing.html":{}}}],["sending",{"_index":533,"title":{},"body":{"contributing.html":{}}}],["server",{"_index":252,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"dependencies.html":{},"miscellaneous/variables.html":{}}}],["serverapp",{"_index":218,"title":{},"body":{"modules/AppModule.html":{}}}],["servermodule",{"_index":251,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["servethe",{"_index":722,"title":{},"body":{"index.html":{}}}],["service",{"_index":334,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"index.html":{}}}],["setdeviceinfo",{"_index":279,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["setdeviceinfo(ua",{"_index":295,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["sets",{"_index":332,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["sgh",{"_index":1254,"title":{},"body":{"miscellaneous/variables.html":{}}}],["sgp612|sgp712",{"_index":2202,"title":{},"body":{"miscellaneous/variables.html":{}}}],["sgpt111|sgpt112|sgpt113|sgpt131|sgpt132|sgpt133|sgpt211|sgpt212|sgpt213|sgp311|sgp312|sgp321|ebrd1101",{"_index":2200,"title":{},"body":{"miscellaneous/variables.html":{}}}],["shall",{"_index":779,"title":{},"body":{"license.html":{}}}],["share",{"_index":494,"title":{},"body":{"contributing.html":{}}}],["shine",{"_index":2643,"title":{},"body":{"miscellaneous/variables.html":{}}}],["shine|fine7",{"_index":2416,"title":{},"body":{"miscellaneous/variables.html":{}}}],["shv",{"_index":1856,"title":{},"body":{"miscellaneous/variables.html":{}}}],["shw",{"_index":1869,"title":{},"body":{"miscellaneous/variables.html":{}}}],["shy",{"_index":528,"title":{},"body":{"contributing.html":{}}}],["simvalley",{"_index":932,"title":{},"body":{"miscellaneous/variables.html":{}}}],["size",{"_index":167,"title":{},"body":{"components/AppComponent.html":{}}}],["skktablet",{"_index":2652,"title":{},"body":{"miscellaneous/variables.html":{}}}],["skypad|phoenix|cyclops",{"_index":2653,"title":{},"body":{"miscellaneous/variables.html":{}}}],["sl101|\\\\bk00f\\\\b|\\\\bk00c\\\\b|\\\\bk00e\\\\b|\\\\bk00l\\\\b|tx201la|me176c|me102a|\\\\bm80ta\\\\b|me372cl",{"_index":2030,"title":{},"body":{"miscellaneous/variables.html":{}}}],["slate",{"_index":2018,"title":{},"body":{"miscellaneous/variables.html":{}}}],["slatebook",{"_index":2025,"title":{},"body":{"miscellaneous/variables.html":{}}}],["slider",{"_index":2029,"title":{},"body":{"miscellaneous/variables.html":{}}}],["slim",{"_index":1649,"title":{},"body":{"miscellaneous/variables.html":{}}}],["slim|cink",{"_index":1648,"title":{},"body":{"miscellaneous/variables.html":{}}}],["slim|m2",{"_index":2264,"title":{},"body":{"miscellaneous/variables.html":{}}}],["slim|sublim",{"_index":1652,"title":{},"body":{"miscellaneous/variables.html":{}}}],["sm",{"_index":1566,"title":{},"body":{"miscellaneous/variables.html":{}}}],["small",{"_index":567,"title":{},"body":{"contributing.html":{}}}],["smart",{"_index":2624,"title":{},"body":{"miscellaneous/variables.html":{}}}],["smarttab",{"_index":2620,"title":{},"body":{"miscellaneous/variables.html":{}}}],["smart|nexo",{"_index":2854,"title":{},"body":{"miscellaneous/variables.html":{}}}],["smittablet",{"_index":2233,"title":{},"body":{"miscellaneous/variables.html":{}}}],["software",{"_index":756,"title":{},"body":{"license.html":{}}}],["sony",{"_index":920,"title":{},"body":{"miscellaneous/variables.html":{}}}],["sonyst|sonylt|sonyericsson|sonyericssonlt15iv|lt18i|e10i|lt28h|lt26w|sonyericssonmt27i|c5303|c6902|c6903|c6906|c6943|d2533",{"_index":1603,"title":{},"body":{"miscellaneous/variables.html":{}}}],["sonytablet",{"_index":2195,"title":{},"body":{"miscellaneous/variables.html":{}}}],["source",{"_index":4,"title":{},"body":{"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"pipes/KeysPipe.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["sp10egp|m",{"_index":2831,"title":{},"body":{"miscellaneous/variables.html":{}}}],["sp10eg|m",{"_index":2830,"title":{},"body":{"miscellaneous/variables.html":{}}}],["sp10hxah|m",{"_index":2832,"title":{},"body":{"miscellaneous/variables.html":{}}}],["sp10hxbh|m",{"_index":2834,"title":{},"body":{"miscellaneous/variables.html":{}}}],["sp7hxah|m",{"_index":2833,"title":{},"body":{"miscellaneous/variables.html":{}}}],["sp8hxah|m",{"_index":2835,"title":{},"body":{"miscellaneous/variables.html":{}}}],["sp8mxa",{"_index":2836,"title":{},"body":{"miscellaneous/variables.html":{}}}],["space|evo|xpress|noon)|\\bxelio\\b|xelio10pro|xelio7phonetab|xelio10extreme|xeliopt2|neo_quad10",{"_index":2736,"title":{},"body":{"miscellaneous/variables.html":{}}}],["spark",{"_index":2192,"title":{},"body":{"miscellaneous/variables.html":{}}}],["sph",{"_index":1464,"title":{},"body":{"miscellaneous/variables.html":{}}}],["spirit",{"_index":2664,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ssr",{"_index":650,"title":{},"body":{"index.html":{}}}],["st10416",{"_index":2372,"title":{},"body":{"miscellaneous/variables.html":{}}}],["started",{"_index":472,"title":{"contributing.html":{},"index.html":{},"license.html":{}},"body":{"index.html":{}}}],["statements",{"_index":588,"title":{},"body":{"coverage.html":{}}}],["stating",{"_index":557,"title":{},"body":{"contributing.html":{}}}],["steelcore|newbase|basecore|baseone|exellen|quattor|edutab|solution|action|basictab|teddytab",{"_index":2474,"title":{},"body":{"miscellaneous/variables.html":{}}}],["storextablet",{"_index":2615,"title":{},"body":{"miscellaneous/variables.html":{}}}],["str",{"_index":437,"title":{},"body":{"classes/ReTree.html":{}}}],["streak",{"_index":2122,"title":{},"body":{"miscellaneous/variables.html":{}}}],["streak|aero|venue|venue",{"_index":977,"title":{},"body":{"miscellaneous/variables.html":{}}}],["string",{"_index":270,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"pipes/KeysPipe.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["styles",{"_index":6,"title":{},"body":{"components/AppComponent.html":{}}}],["styleurls",{"_index":15,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["style|fine9",{"_index":2418,"title":{},"body":{"miscellaneous/variables.html":{}}}],["style|idea|zaa|hitz",{"_index":1654,"title":{},"body":{"miscellaneous/variables.html":{}}}],["subject",{"_index":775,"title":{},"body":{"license.html":{}}}],["sublicense",{"_index":768,"title":{},"body":{"license.html":{}}}],["substantial",{"_index":781,"title":{},"body":{"license.html":{}}}],["summary",{"_index":568,"title":{},"body":{"contributing.html":{}}}],["sunset|goa(?!nna)|lenny|barry|iggy|ozzy|cink",{"_index":1643,"title":{},"body":{"miscellaneous/variables.html":{}}}],["super(platformid",{"_index":267,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["super.setdeviceinfo((request.headers['user",{"_index":269,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["support",{"_index":808,"title":{},"body":{"modules.html":{}}}],["supreme|impresspeed|izzycomm|essential",{"_index":2175,"title":{},"body":{"miscellaneous/variables.html":{}}}],["sure",{"_index":506,"title":{},"body":{"contributing.html":{},"index.html":{}}}],["surfacetablet",{"_index":2014,"title":{},"body":{"miscellaneous/variables.html":{}}}],["svg",{"_index":809,"title":{},"body":{"modules.html":{}}}],["sync",{"_index":2489,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s|galaxy.*nexus|android.*nexus.*mobile|nexus",{"_index":974,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s|so",{"_index":2198,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t",{"_index":2883,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t1",{"_index":2387,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t100k",{"_index":1619,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t109|sgh",{"_index":1382,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t110",{"_index":1904,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t111|sm",{"_index":1910,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t113nu|sm",{"_index":2002,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t113|sm",{"_index":1974,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t116bu|sm",{"_index":1960,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t116nq|sm",{"_index":1959,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t119|sgh",{"_index":1383,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t1200|mtv",{"_index":2236,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t139|sgh",{"_index":1384,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t209|sgh",{"_index":1385,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t2105|sm",{"_index":1911,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t210r|sm",{"_index":1890,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t210x|sm",{"_index":1931,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t210|sm",{"_index":1889,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t211|sm",{"_index":1891,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t217a|sm",{"_index":1899,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t217s|sm",{"_index":1900,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t217t|sm",{"_index":1956,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t217|sm",{"_index":1898,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t219",{"_index":1386,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t229|sgh",{"_index":1387,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t230nu|sm",{"_index":1920,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t230x|sm",{"_index":1933,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t230|sm",{"_index":1932,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t237|sm",{"_index":1953,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t239|sgh",{"_index":1388,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t249|sgh",{"_index":1389,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t2558|gt",{"_index":1582,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t259|sgh",{"_index":1390,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t280|sm",{"_index":1993,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t285|sm",{"_index":2005,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t290|shw",{"_index":1861,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t3",{"_index":2252,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t300|sch",{"_index":1221,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t309|sgh",{"_index":1391,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t3100|sgh",{"_index":1902,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t310x|sm",{"_index":1888,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t310|sm",{"_index":1887,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t311|sm",{"_index":1886,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t315|sm",{"_index":1912,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t319|sgh",{"_index":1392,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t320x|sm",{"_index":1914,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t320|sm",{"_index":1913,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t321",{"_index":1915,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t325|gt",{"_index":1934,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t329|sgh",{"_index":1393,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t330",{"_index":1938,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t330nu|sm",{"_index":1921,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t331|sm",{"_index":1943,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t335|sm",{"_index":1975,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t337a|sm",{"_index":1949,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t337t|sm",{"_index":1957,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t337v|sm",{"_index":1925,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t339|sgh",{"_index":1394,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t349|sgh",{"_index":1395,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t350|sm",{"_index":1962,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t355y?|sm",{"_index":1992,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t357t|sm",{"_index":1982,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t359|sgh",{"_index":1396,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t360|sm",{"_index":1972,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t369",{"_index":1397,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t377|sm",{"_index":1980,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t379|sgh",{"_index":1398,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t385m|sm",{"_index":1884,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t409|sgh",{"_index":1399,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t429|sgh",{"_index":1400,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t439|sgh",{"_index":1401,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t459|sgh",{"_index":1402,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t469|sgh",{"_index":1403,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t479|sgh",{"_index":1404,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t499|sgh",{"_index":1405,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t500|sm",{"_index":1937,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t509|sgh",{"_index":1406,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t510|sm",{"_index":1916,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t519|sgh",{"_index":1407,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t520|sm",{"_index":1917,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t525|sm",{"_index":1918,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t530nu|sm",{"_index":1919,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t530|sm",{"_index":1939,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t531|sm",{"_index":1936,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t533",{"_index":1973,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t535|sm",{"_index":1942,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t537a",{"_index":1950,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t537v",{"_index":1926,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t537|sm",{"_index":1946,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t539",{"_index":1408,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t550|sm",{"_index":1963,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t555|sm",{"_index":1983,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t559|sgh",{"_index":1409,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t560|sm",{"_index":1977,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t561|sm",{"_index":1984,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t567|sm",{"_index":1981,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t580|sm",{"_index":1990,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t585|sm",{"_index":2004,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t587|sm",{"_index":1998,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t589|sgh",{"_index":1410,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t590|sm",{"_index":1991,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t609|sgh",{"_index":1411,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t619|sgh",{"_index":1412,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t629|sgh",{"_index":1413,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t639|sgh",{"_index":1414,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t659|sgh",{"_index":1415,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t669|sgh",{"_index":1416,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t670|sm",{"_index":1978,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t677|sm",{"_index":1979,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t679|sgh",{"_index":1417,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t700|sm",{"_index":1945,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t705c|sm",{"_index":1941,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t705y|sm",{"_index":1966,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t705|sm",{"_index":1940,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t707a|sm",{"_index":1951,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t707v|sm",{"_index":1927,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t709|sgh",{"_index":1418,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t710|sm",{"_index":1969,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t713",{"_index":1985,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t715|sm",{"_index":1976,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t719",{"_index":1419,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t719|sm",{"_index":1986,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t72",{"_index":2553,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t725|sm",{"_index":1987,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t729|sgh",{"_index":1420,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t739|sgh",{"_index":1421,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t746|sgh",{"_index":1422,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t749|sgh",{"_index":1423,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t759|sgh",{"_index":1424,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t769|sgh",{"_index":1425,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t76|tab",{"_index":2534,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t779|sch",{"_index":1834,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t800|sm",{"_index":1944,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t805|gt",{"_index":1967,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t807a|sm",{"_index":1952,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t807p|sm",{"_index":1954,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t807t|sm",{"_index":1958,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t807v|sm",{"_index":1928,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t807|sm",{"_index":1947,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t809|sgh",{"_index":1426,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t810|sm",{"_index":1970,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t813|sm",{"_index":1988,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t815y|sm",{"_index":2003,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t815|sm",{"_index":1971,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t817a|sm",{"_index":1994,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t819|sgh",{"_index":1427,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t819|sm",{"_index":1989,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t820|sm",{"_index":1995,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t825|sm",{"_index":2006,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t835|sm",{"_index":2008,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t839|sgh",{"_index":1428,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t849|sgh",{"_index":1818,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t859|sgh",{"_index":1819,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t865|sm",{"_index":1860,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t869|sph",{"_index":1820,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t9000|sm",{"_index":1964,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t900|xe500t1c|sm",{"_index":1922,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t919|sgh",{"_index":1429,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t929",{"_index":1430,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t939|sgh",{"_index":1431,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t959|sgh",{"_index":1432,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t989|sgh",{"_index":1433,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t999l|gt",{"_index":1536,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab",{"_index":2395,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab07",{"_index":2131,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab08",{"_index":2143,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab10",{"_index":2154,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab2",{"_index":2626,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab2)\\b",{"_index":2412,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab3|smart",{"_index":2411,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab420|tab424|tab450|tab460|tab461|tab464|tab465|tab467|tab468|tab07",{"_index":2126,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab\\b",{"_index":2802,"title":{},"body":{"miscellaneous/variables.html":{}}}],["table",{"_index":243,"title":{},"body":{"classes/AppPage.html":{},"coverage.html":{}}}],["tablesort(document.getelementbyid('coverage",{"_index":617,"title":{},"body":{"coverage.html":{}}}],["tablet",{"_index":125,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"miscellaneous/enumerations.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["tablets_re",{"_index":613,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["tablet|elitebook.*touch|hp",{"_index":2022,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tablet|sony",{"_index":2197,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tablet|yt3",{"_index":2100,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab|\\\\bm6pro\\\\b|ct1020w|arc",{"_index":2894,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab|a7goclever|m1042|m7841|m742|r1042bk|r1041|tab",{"_index":2523,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab|c820|c720|\\bct",{"_index":2817,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab|concorde",{"_index":2519,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab|ct1",{"_index":2816,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab|ct2",{"_index":2815,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab|ct3",{"_index":2814,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab|ct9",{"_index":2813,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab|endeavour",{"_index":2891,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab|idea(tab|pad",{"_index":2097,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab|tab1004",{"_index":2165,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tb",{"_index":2329,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tb07sta|tb10sta|tb07fta|tb10fta",{"_index":2283,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tba",{"_index":2864,"title":{},"body":{"miscellaneous/variables.html":{}}}],["teclasttablet",{"_index":2752,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tecno",{"_index":2655,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tecnotablet",{"_index":2654,"title":{},"body":{"miscellaneous/variables.html":{}}}],["telepad795|megapad",{"_index":2719,"title":{},"body":{"miscellaneous/variables.html":{}}}],["telstratablet",{"_index":2882,"title":{},"body":{"miscellaneous/variables.html":{}}}],["template",{"_index":5,"title":{},"body":{"components/AppComponent.html":{}}}],["templateurl",{"_index":17,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["tesla",{"_index":911,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tesla\\/([0",{"_index":951,"title":{},"body":{"miscellaneous/variables.html":{}}}],["test",{"_index":119,"title":{},"body":{"components/AppComponent.html":{},"classes/ReTree.html":{}}}],["test(str",{"_index":438,"title":{},"body":{"classes/ReTree.html":{}}}],["tests",{"_index":490,"title":{},"body":{"contributing.html":{},"index.html":{}}}],["testto",{"_index":714,"title":{},"body":{"index.html":{}}}],["texettablet",{"_index":2292,"title":{},"body":{"miscellaneous/variables.html":{}}}],["text",{"_index":161,"title":{},"body":{"components/AppComponent.html":{}}}],["text')).gettext",{"_index":241,"title":{},"body":{"classes/AppPage.html":{}}}],["tf701t|tf810c|me171|me301t|me302c|me371mg|me370t|me372mg|me172v|me173x|me400c",{"_index":2028,"title":{},"body":{"miscellaneous/variables.html":{}}}],["thank",{"_index":575,"title":{},"body":{"contributing.html":{}}}],["there's",{"_index":538,"title":{},"body":{"contributing.html":{}}}],["thing",{"_index":563,"title":{},"body":{"contributing.html":{}}}],["this.applydevice",{"_index":86,"title":{},"body":{"components/AppComponent.html":{}}}],["this.browser",{"_index":372,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["this.browser_version",{"_index":370,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["this.device",{"_index":395,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["this.deviceinfo",{"_index":87,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["this.deviceservice.getdeviceinfo",{"_index":88,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["this.deviceservice.isdesktop",{"_index":93,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["this.deviceservice.ismobile",{"_index":91,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["this.deviceservice.istablet",{"_index":92,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["this.deviceservice.setdeviceinfo(useragent",{"_index":94,"title":{},"body":{"components/AppComponent.html":{}}}],["this.devicetype",{"_index":386,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["this.epicfunction",{"_index":678,"title":{},"body":{"index.html":{}}}],["this.exec(str",{"_index":453,"title":{},"body":{"classes/ReTree.html":{}}}],["this.getdeviceinfo",{"_index":95,"title":{},"body":{"components/AppComponent.html":{}}}],["this.isdesktop(this.useragent",{"_index":391,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["this.ismobile(this.useragent",{"_index":389,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["this.ismobile(useragent",{"_index":408,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["this.istablet",{"_index":387,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["this.istablet(useragent",{"_index":398,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["this.orientation",{"_index":380,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["this.os",{"_index":394,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["this.os_version",{"_index":396,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["this.retree.exec(ua",{"_index":377,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["this.retree.test(this.useragent",{"_index":347,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["this.retree.test(ua",{"_index":353,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["this.retree.test(useragent",{"_index":401,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["this.setdeviceinfo(this.useragent",{"_index":327,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["this.test(str",{"_index":446,"title":{},"body":{"classes/ReTree.html":{}}}],["this.ua",{"_index":50,"title":{},"body":{"components/AppComponent.html":{}}}],["this.useragent",{"_index":287,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["this[mapping.prop",{"_index":341,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["this[mapping.prop][currentvalue",{"_index":368,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["threads",{"_index":548,"title":{},"body":{"contributing.html":{}}}],["through",{"_index":520,"title":{},"body":{"contributing.html":{}}}],["time",{"_index":579,"title":{},"body":{"contributing.html":{}}}],["tips",{"_index":504,"title":{},"body":{"contributing.html":{}}}],["titanium(hd",{"_index":2184,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tm",{"_index":2304,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tolino",{"_index":2641,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tolinotablet",{"_index":2640,"title":{},"body":{"miscellaneous/variables.html":{}}}],["took",{"_index":578,"title":{},"body":{"contributing.html":{}}}],["top",{"_index":140,"title":{},"body":{"components/AppComponent.html":{}}}],["tort",{"_index":803,"title":{},"body":{"license.html":{}}}],["toshibatablet",{"_index":2070,"title":{},"body":{"miscellaneous/variables.html":{}}}],["touchpad.*[78910]|\\btouchtab\\b",{"_index":2278,"title":{},"body":{"miscellaneous/variables.html":{}}}],["touch|\\bk080\\b|\\bvox\\b",{"_index":2288,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tpc",{"_index":2784,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tpc10111|tpc10203|tpc10205|tpc10503",{"_index":2433,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tpc7712|tpc7110|tpc8101|tpc8103|tpc8105|tpc8106|tpc8203|tpc8205|tpc8503|tpc9106|tpc9701|tpc97101|tpc97103",{"_index":2431,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tpc97105|tpc97106|tpc97111|tpc97113|tpc97203|tpc97603|tpc97809|tpc97205|tpc10101|tpc10103|tpc10106",{"_index":2432,"title":{},"body":{"miscellaneous/variables.html":{}}}],["transform",{"_index":151,"title":{},"body":{"components/AppComponent.html":{},"pipes/KeysPipe.html":{}}}],["transform(value",{"_index":415,"title":{},"body":{"pipes/KeysPipe.html":{}}}],["tree",{"_index":8,"title":{},"body":{"components/AppComponent.html":{}}}],["trekstortablet",{"_index":2371,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tried",{"_index":512,"title":{},"body":{"contributing.html":{}}}],["true",{"_index":404,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["try",{"_index":81,"title":{},"body":{"components/AppComponent.html":{}}}],["ts",{"_index":712,"title":{},"body":{"index.html":{}}}],["tscto",{"_index":710,"title":{},"body":{"index.html":{}}}],["tslib",{"_index":633,"title":{},"body":{"dependencies.html":{}}}],["tslint:disable",{"_index":964,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tunes",{"_index":2618,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tv",{"_index":908,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tv|frenzy|quasar|shine|tx1|ax1|ax2",{"_index":2178,"title":{},"body":{"miscellaneous/variables.html":{}}}],["two",{"_index":560,"title":{},"body":{"contributing.html":{}}}],["tx",{"_index":2435,"title":{},"body":{"miscellaneous/variables.html":{}}}],["type",{"_index":42,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"pipes/KeysPipe.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["typeof",{"_index":324,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"classes/ReTree.html":{}}}],["typescript",{"_index":733,"title":{},"body":{"index.html":{}}}],["u100|sgh",{"_index":1434,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u1|me",{"_index":2484,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u200|sgh",{"_index":1435,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u2|me",{"_index":2485,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u310|sch",{"_index":1222,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u320|sch",{"_index":1223,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u350|sch",{"_index":1224,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u360|sch",{"_index":1225,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u365|sch",{"_index":1226,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u370|sch",{"_index":1227,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u380|sch",{"_index":1228,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u410|sch",{"_index":1229,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u430|sch",{"_index":1230,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u450",{"_index":1231,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u460|sch",{"_index":1232,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u470|sch",{"_index":1233,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u490|sch",{"_index":1234,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u540|sch",{"_index":1235,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u550|sch",{"_index":1236,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u620|sch",{"_index":1237,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u640|sch",{"_index":1238,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u650|sch",{"_index":1239,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u660|sch",{"_index":1240,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u700|sch",{"_index":1241,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u740",{"_index":1242,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u750|sch",{"_index":1243,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u800|sgh",{"_index":1436,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u810|sch",{"_index":1244,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u820|sch",{"_index":1245,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u8gt",{"_index":2207,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u900|sch",{"_index":1246,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u940|sch",{"_index":1247,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u960|scs",{"_index":1248,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ua",{"_index":23,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["ubislate[\\s]?7c",{"_index":2872,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ubislatetablet",{"_index":2871,"title":{},"body":{"miscellaneous/variables.html":{}}}],["uc",{"_index":861,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ucbrowser",{"_index":853,"title":{},"body":{"miscellaneous/variables.html":{}}}],["uknown",{"_index":963,"title":{},"body":{"miscellaneous/variables.html":{}}}],["undefined",{"_index":326,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["unique",{"_index":2667,"title":{},"body":{"miscellaneous/variables.html":{}}}],["unit",{"_index":543,"title":{},"body":{"contributing.html":{},"index.html":{}}}],["universal",{"_index":692,"title":{},"body":{"index.html":{}}}],["universaldevicedetectorservice",{"_index":262,"title":{"injectables/UniversalDeviceDetectorService.html":{}},"body":{"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"coverage.html":{},"index.html":{}}}],["unix",{"_index":1688,"title":{},"body":{"miscellaneous/variables.html":{}}}],["unknown",{"_index":315,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/variables.html":{}}}],["up",{"_index":723,"title":{},"body":{"index.html":{}}}],["up.link|vodafone|\\\\bwap\\\\b|nokia|nokia|series40|series60|s60|sonyericsson|n900|maui.*wap.*browser",{"_index":1686,"title":{},"body":{"miscellaneous/variables.html":{}}}],["update",{"_index":565,"title":{},"body":{"contributing.html":{}}}],["updates",{"_index":728,"title":{},"body":{"index.html":{}}}],["usage",{"_index":299,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["use",{"_index":645,"title":{},"body":{"index.html":{},"license.html":{}}}],["useclass",{"_index":272,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["used",{"_index":732,"title":{},"body":{"index.html":{}}}],["useful",{"_index":103,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["user",{"_index":109,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["useragent",{"_index":49,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["useragentinputval",{"_index":24,"title":{},"body":{"components/AppComponent.html":{}}}],["using",{"_index":106,"title":{},"body":{"components/AppComponent.html":{},"contributing.html":{},"index.html":{}}}],["v07ot2|tm105a|s10ot1|tr10cs1",{"_index":2614,"title":{},"body":{"miscellaneous/variables.html":{}}}],["v1.5.2",{"_index":646,"title":{},"body":{"index.html":{}}}],["v10",{"_index":2502,"title":{},"body":{"miscellaneous/variables.html":{}}}],["v205|sgh",{"_index":1437,"title":{},"body":{"miscellaneous/variables.html":{}}}],["v206|sgh",{"_index":1438,"title":{},"body":{"miscellaneous/variables.html":{}}}],["v4",{"_index":2499,"title":{},"body":{"miscellaneous/variables.html":{}}}],["v400|lg",{"_index":2081,"title":{},"body":{"miscellaneous/variables.html":{}}}],["v410|lg",{"_index":2080,"title":{},"body":{"miscellaneous/variables.html":{}}}],["v5",{"_index":2501,"title":{},"body":{"miscellaneous/variables.html":{}}}],["v500|lg",{"_index":2079,"title":{},"body":{"miscellaneous/variables.html":{}}}],["v510|lg",{"_index":2078,"title":{},"body":{"miscellaneous/variables.html":{}}}],["v700|lg",{"_index":2077,"title":{},"body":{"miscellaneous/variables.html":{}}}],["v711s|v813|v811|v820w|v820|vi20|v711|vi30w|v712|v891w|v972|v819w|v820w|vi60|v820w|v711|v813s|v801|v819",{"_index":2779,"title":{},"body":{"miscellaneous/variables.html":{}}}],["v900|lg",{"_index":2076,"title":{},"body":{"miscellaneous/variables.html":{}}}],["v909|lg",{"_index":2075,"title":{},"body":{"miscellaneous/variables.html":{}}}],["v97",{"_index":2496,"title":{},"body":{"miscellaneous/variables.html":{}}}],["v975s|v801|v819|v819|v818|v811|v712|v975m|v101w|v961w|v812|v818|v971|v971s|v919|v989|v116w|v102w|v973",{"_index":2780,"title":{},"body":{"miscellaneous/variables.html":{}}}],["v9\\b|android.*\\bmt7a\\b",{"_index":2171,"title":{},"body":{"miscellaneous/variables.html":{}}}],["v9|\\bzte",{"_index":2170,"title":{},"body":{"miscellaneous/variables.html":{}}}],["value",{"_index":48,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"pipes/KeysPipe.html":{},"injectables/UniversalDeviceDetectorService.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/variables.html":{}}}],["value.hasownproperty(key",{"_index":423,"title":{},"body":{"pipes/KeysPipe.html":{}}}],["value[key",{"_index":425,"title":{},"body":{"pipes/KeysPipe.html":{}}}],["var",{"_index":187,"title":{},"body":{"components/AppComponent.html":{}}}],["variable",{"_index":594,"title":{},"body":{"coverage.html":{}}}],["variables",{"_index":824,"title":{"miscellaneous/variables.html":{}},"body":{"miscellaneous/variables.html":{}}}],["vb733|vb100a",{"_index":2731,"title":{},"body":{"miscellaneous/variables.html":{}}}],["venue",{"_index":2118,"title":{},"body":{"miscellaneous/variables.html":{}}}],["verizontablet",{"_index":2732,"title":{},"body":{"miscellaneous/variables.html":{}}}],["version",{"_index":25,"title":{},"body":{"components/AppComponent.html":{},"contributing.html":{},"index.html":{},"properties.html":{}}}],["version.full",{"_index":66,"title":{},"body":{"components/AppComponent.html":{}}}],["versustablet",{"_index":2277,"title":{},"body":{"miscellaneous/variables.html":{}}}],["vertu",{"_index":927,"title":{},"body":{"miscellaneous/variables.html":{}}}],["vertu|vertu.*ltd|vertu.*ascent|vertu.*ayxta|vertu.*constellation(f|quest)?|vertu.*monika|vertu.*signature",{"_index":1608,"title":{},"body":{"miscellaneous/variables.html":{}}}],["vi40)\\\\b[\\s]+|v10",{"_index":2781,"title":{},"body":{"miscellaneous/variables.html":{}}}],["view",{"_index":2046,"title":{},"body":{"miscellaneous/variables.html":{}}}],["viewpad",{"_index":2724,"title":{},"body":{"miscellaneous/variables.html":{}}}],["viewsonictablet",{"_index":2723,"title":{},"body":{"miscellaneous/variables.html":{}}}],["vision",{"_index":2244,"title":{},"body":{"miscellaneous/variables.html":{}}}],["vista",{"_index":1714,"title":{},"body":{"miscellaneous/variables.html":{}}}],["visturetablet",{"_index":2495,"title":{},"body":{"miscellaneous/variables.html":{}}}],["vita",{"_index":888,"title":{},"body":{"miscellaneous/variables.html":{}}}],["vita\\b",{"_index":890,"title":{},"body":{"miscellaneous/variables.html":{}}}],["vk810\\b",{"_index":2082,"title":{},"body":{"miscellaneous/variables.html":{}}}],["vn530|vs660|vs700|vs740|vs750|vs910|vs920|vs930|vx9200|vx11000|ax840a|lw770|p506|p925|p999|e612|d955|d802",{"_index":1601,"title":{},"body":{"miscellaneous/variables.html":{}}}],["vodafonetablet",{"_index":2619,"title":{},"body":{"miscellaneous/variables.html":{}}}],["void",{"_index":52,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"miscellaneous/functions.html":{}}}],["voninotablet",{"_index":2590,"title":{},"body":{"miscellaneous/variables.html":{}}}],["w09",{"_index":2268,"title":{},"body":{"miscellaneous/variables.html":{}}}],["w09|ags",{"_index":2267,"title":{},"body":{"miscellaneous/variables.html":{}}}],["w100",{"_index":2870,"title":{},"body":{"miscellaneous/variables.html":{}}}],["w230v2|tbl",{"_index":2861,"title":{},"body":{"miscellaneous/variables.html":{}}}],["w450|tbl",{"_index":2862,"title":{},"body":{"miscellaneous/variables.html":{}}}],["w500|sv572|tblt7i",{"_index":2863,"title":{},"body":{"miscellaneous/variables.html":{}}}],["w501p|w510|w511|w700|g100|g100w|b1",{"_index":2057,"title":{},"body":{"miscellaneous/variables.html":{}}}],["w700|sm",{"_index":1996,"title":{},"body":{"miscellaneous/variables.html":{}}}],["w708|sm",{"_index":2007,"title":{},"body":{"miscellaneous/variables.html":{}}}],["want",{"_index":500,"title":{},"body":{"contributing.html":{},"index.html":{}}}],["warranties",{"_index":788,"title":{},"body":{"license.html":{}}}],["warranty",{"_index":784,"title":{},"body":{"license.html":{}}}],["way",{"_index":559,"title":{},"body":{"contributing.html":{}}}],["ways",{"_index":476,"title":{},"body":{"contributing.html":{}}}],["wcdma|logicpd",{"_index":2888,"title":{},"body":{"miscellaneous/variables.html":{}}}],["wdpromise",{"_index":235,"title":{},"body":{"classes/AppPage.html":{}}}],["wdpromise.promise",{"_index":228,"title":{},"body":{"classes/AppPage.html":{}}}],["webdriver",{"_index":237,"title":{},"body":{"classes/AppPage.html":{}}}],["whether",{"_index":288,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"license.html":{}}}],["wide",{"_index":2421,"title":{},"body":{"miscellaneous/variables.html":{}}}],["width",{"_index":137,"title":{},"body":{"components/AppComponent.html":{}}}],["wifi",{"_index":2776,"title":{},"body":{"miscellaneous/variables.html":{}}}],["wiko",{"_index":930,"title":{},"body":{"miscellaneous/variables.html":{}}}],["win",{"_index":1755,"title":{},"body":{"miscellaneous/variables.html":{}}}],["win16",{"_index":1753,"title":{},"body":{"miscellaneous/variables.html":{}}}],["win64",{"_index":882,"title":{},"body":{"miscellaneous/variables.html":{}}}],["window",{"_index":325,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["window.matchmedia",{"_index":379,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["window.matchmedia('(orientation",{"_index":381,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["window.navigator.useragent",{"_index":82,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["windows",{"_index":685,"title":{},"body":{"index.html":{},"miscellaneous/variables.html":{}}}],["windows_10",{"_index":1719,"title":{},"body":{"miscellaneous/variables.html":{}}}],["windows_2000",{"_index":1707,"title":{},"body":{"miscellaneous/variables.html":{}}}],["windows_3_11",{"_index":1697,"title":{},"body":{"miscellaneous/variables.html":{}}}],["windows_7",{"_index":1715,"title":{},"body":{"miscellaneous/variables.html":{}}}],["windows_8",{"_index":1718,"title":{},"body":{"miscellaneous/variables.html":{}}}],["windows_8_1",{"_index":1716,"title":{},"body":{"miscellaneous/variables.html":{}}}],["windows_95",{"_index":1700,"title":{},"body":{"miscellaneous/variables.html":{}}}],["windows_98",{"_index":1703,"title":{},"body":{"miscellaneous/variables.html":{}}}],["windows_ce",{"_index":1705,"title":{},"body":{"miscellaneous/variables.html":{}}}],["windows_me",{"_index":1702,"title":{},"body":{"miscellaneous/variables.html":{}}}],["windows_nt_4_0",{"_index":1724,"title":{},"body":{"miscellaneous/variables.html":{}}}],["windows_phone",{"_index":902,"title":{},"body":{"miscellaneous/variables.html":{}}}],["windows_phone_10",{"_index":1723,"title":{},"body":{"miscellaneous/variables.html":{}}}],["windows_phone_7_5",{"_index":1721,"title":{},"body":{"miscellaneous/variables.html":{}}}],["windows_phone_8_1",{"_index":1722,"title":{},"body":{"miscellaneous/variables.html":{}}}],["windows_server_2003",{"_index":1711,"title":{},"body":{"miscellaneous/variables.html":{}}}],["windows_vista",{"_index":1713,"title":{},"body":{"miscellaneous/variables.html":{}}}],["windows_xp",{"_index":1709,"title":{},"body":{"miscellaneous/variables.html":{}}}],["without",{"_index":759,"title":{},"body":{"license.html":{}}}],["woldertablet",{"_index":2819,"title":{},"body":{"miscellaneous/variables.html":{}}}],["wolfgang",{"_index":933,"title":{},"body":{"miscellaneous/variables.html":{}}}],["work",{"_index":731,"title":{},"body":{"index.html":{}}}],["working",{"_index":551,"title":{},"body":{"contributing.html":{}}}],["wrapper",{"_index":734,"title":{},"body":{"index.html":{}}}],["write",{"_index":489,"title":{},"body":{"contributing.html":{}}}],["wx445|xt300|xt301|xt311|xt316|xt317|xt319|xt320|xt390|xt502|xt530|xt531|xt532|xt535|xt603|xt610|xt611",{"_index":986,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x",{"_index":1727,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x100|sgh",{"_index":1439,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x103f|tb",{"_index":2109,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x105|sgh",{"_index":1440,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x10|evolio",{"_index":2795,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x120",{"_index":1441,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x140|sgh",{"_index":1442,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x1|me",{"_index":2487,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x200",{"_index":2010,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x2|jade|neon",{"_index":2670,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x304f|tb",{"_index":2110,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x304l|tb",{"_index":2111,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x30l|tb",{"_index":2115,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x426|sgh",{"_index":1443,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x427|sgh",{"_index":1444,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x475|sgh",{"_index":1445,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x495|sgh",{"_index":1446,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x497|sgh",{"_index":1447,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x507|sgh",{"_index":1448,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x600|sgh",{"_index":1449,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x606f|tb",{"_index":2108,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x610|sgh",{"_index":1450,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x620|sgh",{"_index":1451,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x630",{"_index":1452,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x64",{"_index":883,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x700|sgh",{"_index":1453,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x704f|tb",{"_index":2112,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x7|evolio",{"_index":2796,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x820|sgh",{"_index":1454,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x890|sgh",{"_index":1455,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x8|\\bevotab\\b|\\bneura\\b",{"_index":2797,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x90f",{"_index":2103,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x90l|yt3",{"_index":2102,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x90x|lenovo.*(s2109|s2110|s5000|s6000|k3011|a3000|a3500|a1000|a2107|a2109|a1107|a5500|a7600|b6000",{"_index":2105,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x\\s",{"_index":1773,"title":{},"body":{"miscellaneous/variables.html":{}}}],["xenon",{"_index":2185,"title":{},"body":{"miscellaneous/variables.html":{}}}],["xoom|sholest|mz615|mz605|mz505|mz601|mz602|mz603|mz604|mz606|mz607|mz608|mz609|mz615|mz616|mz617",{"_index":2049,"title":{},"body":{"miscellaneous/variables.html":{}}}],["xorotablet",{"_index":2699,"title":{},"body":{"miscellaneous/variables.html":{}}}],["xp",{"_index":1710,"title":{},"body":{"miscellaneous/variables.html":{}}}],["xs",{"_index":2187,"title":{},"body":{"miscellaneous/variables.html":{}}}],["xt615|xt681|xt701|xt702|xt711|xt720|xt800|xt806|xt860|xt862|xt875|xt882|xt883|xt894|xt901|xt907|xt909",{"_index":987,"title":{},"body":{"miscellaneous/variables.html":{}}}],["xt910|xt912|xt928|xt926|xt915|xt919|xt925|xt1021|\\\\bmoto",{"_index":988,"title":{},"body":{"miscellaneous/variables.html":{}}}],["y2|me",{"_index":2488,"title":{},"body":{"miscellaneous/variables.html":{}}}],["yarviktablet",{"_index":2124,"title":{},"body":{"miscellaneous/variables.html":{}}}],["yonestablet",{"_index":2427,"title":{},"body":{"miscellaneous/variables.html":{}}}],["you'll",{"_index":695,"title":{},"body":{"index.html":{}}}],["you're",{"_index":507,"title":{},"body":{"contributing.html":{}}}],["youth|mediapad",{"_index":2251,"title":{},"body":{"miscellaneous/variables.html":{}}}],["yt3",{"_index":2104,"title":{},"body":{"miscellaneous/variables.html":{}}}],["z1000|z99",{"_index":2280,"title":{},"body":{"miscellaneous/variables.html":{}}}],["z130|sgh",{"_index":1456,"title":{},"body":{"miscellaneous/variables.html":{}}}],["z150|sgh",{"_index":1457,"title":{},"body":{"miscellaneous/variables.html":{}}}],["z170|sgh",{"_index":1458,"title":{},"body":{"miscellaneous/variables.html":{}}}],["z400|swc",{"_index":1527,"title":{},"body":{"miscellaneous/variables.html":{}}}],["zone.js",{"_index":635,"title":{},"body":{"dependencies.html":{}}}],["zoom",{"_index":201,"title":{},"body":{"modules/AppModule.html":{},"modules/AppServerModule.html":{},"overview.html":{}}}],["zoom2",{"_index":2053,"title":{},"body":{"miscellaneous/variables.html":{}}}],["zoom2|\\\\ba7eb\\\\b|catnova8",{"_index":2889,"title":{},"body":{"miscellaneous/variables.html":{}}}],["zx10|sgh",{"_index":1459,"title":{},"body":{"miscellaneous/variables.html":{}}}],["zx20|shw",{"_index":1460,"title":{},"body":{"miscellaneous/variables.html":{}}}],["zynctablet",{"_index":2279,"title":{},"body":{"miscellaneous/variables.html":{}}}]],"pipeline":["stemmer"]}, - "store": {"components/AppComponent.html":{"url":"components/AppComponent.html","title":"component - AppComponent","body":"\n \n\n\n\n\n\n Components\n \n AppComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/demo/src/app/app.component.ts\n\n\n\n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n app-root\n \n\n \n styleUrls\n ./app.component.scss\n \n\n\n\n \n templateUrl\n ./app.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n deviceInfo\n \n \n propsToShow\n \n \n ua\n \n \n userAgentInputVal\n \n \n version\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n applyDevice\n \n \n getDeviceInfo\n \n \n resetDeviceInfo\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n isMobile\n \n \n isTablet\n \n \n isDesktop\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(deviceService: DeviceDetectorService)\n \n \n \n \n Defined in projects/demo/src/app/app.component.ts:14\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n deviceService\n \n \n DeviceDetectorService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n applyDevice\n \n \n \n \n \n \napplyDevice(userAgent)\n \n \n\n\n \n \n Defined in projects/demo/src/app/app.component.ts:40\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Optional\n Default value\n \n \n \n \n userAgent\n\n \n No\n \n\n \n this.ua\n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getDeviceInfo\n \n \n \n \n \n \ngetDeviceInfo()\n \n \n\n\n \n \n Defined in projects/demo/src/app/app.component.ts:24\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n resetDeviceInfo\n \n \n \n \n \n \nresetDeviceInfo()\n \n \n\n\n \n \n Defined in projects/demo/src/app/app.component.ts:45\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n deviceInfo\n \n \n \n \n \n \n Type : null\n\n \n \n \n \n Default value : null\n \n \n \n \n Defined in projects/demo/src/app/app.component.ts:11\n \n \n\n\n \n \n \n \n \n \n \n \n propsToShow\n \n \n \n \n \n \n Type : []\n\n \n \n \n \n Default value : ['userAgent', 'os', 'browser', 'device', 'os_version', 'browser_version', 'deviceType', 'orientation']\n \n \n \n \n Defined in projects/demo/src/app/app.component.ts:10\n \n \n\n\n \n \n \n \n \n \n \n \n ua\n \n \n \n \n \n \n Defined in projects/demo/src/app/app.component.ts:14\n \n \n\n\n \n \n \n \n \n \n \n \n userAgentInputVal\n \n \n \n \n \n \n Type : null\n\n \n \n \n \n Default value : null\n \n \n \n \n Defined in projects/demo/src/app/app.component.ts:13\n \n \n\n\n \n \n \n \n \n \n \n \n version\n \n \n \n \n \n \n Default value : VERSION.full\n \n \n \n \n Defined in projects/demo/src/app/app.component.ts:12\n \n \n\n\n \n \n\n\n \n \n Accessors\n \n \n \n \n \n \n isMobile\n \n \n\n \n \n getisMobile()\n \n \n \n \n Defined in projects/demo/src/app/app.component.ts:28\n \n \n\n \n \n \n \n \n \n \n isTablet\n \n \n\n \n \n getisTablet()\n \n \n \n \n Defined in projects/demo/src/app/app.component.ts:32\n \n \n\n \n \n \n \n \n \n \n isDesktop\n \n \n\n \n \n getisDesktop()\n \n \n \n \n Defined in projects/demo/src/app/app.component.ts:36\n \n \n\n \n \n\n\n\n\n \n import { Component, VERSION } from '@angular/core';\nimport { DeviceDetectorService } from 'ngx-device-detector';\n\n@Component({\n selector: 'app-root',\n templateUrl: './app.component.html',\n styleUrls: ['./app.component.scss'],\n})\nexport class AppComponent {\n propsToShow = ['userAgent', 'os', 'browser', 'device', 'os_version', 'browser_version', 'deviceType', 'orientation'];\n deviceInfo = null;\n version = VERSION.full;\n userAgentInputVal = null;\n ua;\n constructor(private deviceService: DeviceDetectorService) {\n try {\n this.ua = window.navigator.userAgent;\n } catch {\n console.log('UA not available');\n }\n this.applyDevice();\n }\n\n getDeviceInfo(): void {\n this.deviceInfo = this.deviceService.getDeviceInfo();\n }\n\n get isMobile(): boolean {\n return this.deviceService.isMobile();\n }\n\n get isTablet(): boolean {\n return this.deviceService.isTablet();\n }\n\n get isDesktop(): boolean {\n return this.deviceService.isDesktop();\n }\n\n applyDevice(userAgent = this.ua): void {\n this.deviceService.setDeviceInfo(userAgent);\n this.getDeviceInfo();\n }\n\n resetDeviceInfo(): void {\n this.applyDevice();\n }\n}\n\n \n\n \n \n \n \n \n \n \n \n ngx-device-detector\n \n\n \n An Angular 5+ powered AOT compatible device detector that helps to identify browser, os and other useful\n information regarding the device using the app. The processing is based on user-agent.\n \n\n \n \n \n \n \n \n \n \n Demo is at Angular version = {{ version }}\n \n Open this page from different devices to see the appropriate details\n Device Information\n \n \n \n \n Test User Agent\n \n Paste the user agent (window.navigator.userAgent) here\n \n \n \n \n Apply test user agent\n \n Reset device info\n \n \n \n \n \n Mobile\n Tablet\n Desktop\n \n \n \n Property\n Value\n \n \n {{ info.key }}\n {{ info.value }}\n \n \n isDesktop()\n {{ isDesktop }}\n \n \n isMobile()\n {{ isMobile }}\n \n \n isTablet()\n {{ isTablet }}\n \n \n \n \n\n\n \n\n \n \n ./app.component.scss\n \n :host {\n position: relative;\n display: block;\n}\n#demoApp {\n max-width: 600px;\n padding-top: 40px;\n .demo-container {\n .github-logo {\n cursor: pointer;\n position: absolute;\n top: 10px;\n right: 10px;\n img {\n width: 40px;\n transform: rotate(45deg);\n }\n &:hover {\n img {\n opacity: 0.6;\n }\n }\n }\n .badges {\n a {\n margin-left: 4px;\n margin-right: 4px;\n }\n }\n }\n\n .device-icon {\n text-align: center;\n padding: 20px;\n\n .fa {\n font-size: 100px;\n }\n }\n\n .user-agent {\n display: flex;\n flex-direction: column;\n justify-content: flex-end;\n &__input {\n flex: 1;\n input {\n width: 100%;\n }\n }\n &__buttons {\n display: flex;\n justify-content: flex-end;\n > button {\n &:first-child {\n margin-right: 10px;\n }\n }\n }\n }\n}\n\n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' ngx-device-detector An Angular 5+ powered AOT compatible device detector that helps to identify browser, os and other useful information regarding the device using the app. The processing is based on user-agent. Demo is at Angular version = {{ version }} Open this page from different devices to see the appropriate details Device Information Test User Agent Paste the user agent (window.navigator.userAgent) here Apply test user agent Reset device info Mobile Tablet Desktop Property Value {{ info.key }} {{ info.value }} isDesktop() {{ isDesktop }} isMobile() {{ isMobile }} isTablet() {{ isTablet }} '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'app-root'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'AppComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/AppModule.html":{"url":"modules/AppModule.html","title":"module - AppModule","body":"\n \n\n\n\n\n Modules\n AppModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\ndependencies\n\ncluster_AppModule\n\n\n\ncluster_AppModule_bootstrap\n\n\n\ncluster_AppModule_declarations\n\n\n\n\nAppComponent\n\nAppComponent\n\n\n\nAppModule\n\nAppModule\n\nAppModule -->\n\nAppComponent->AppModule\n\n\n\n\n\nKeysPipe\n\nKeysPipe\n\nAppModule -->\n\nKeysPipe->AppModule\n\n\n\n\n\nAppComponent \n\nAppComponent \n\nAppComponent -->\n\nAppModule->AppComponent \n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n projects/demo/src/app/app.module.ts\n \n\n\n\n\n\n \n \n \n Declarations\n \n \n AppComponent\n \n \n KeysPipe\n \n \n \n \n Bootstrap\n \n \n AppComponent\n \n \n \n \n \n\n\n \n\n\n \n import { BrowserModule } from '@angular/platform-browser';\nimport { NgModule } from '@angular/core';\n\nimport { AppComponent } from './app.component';\n\nimport { KeysPipe } from './pipes/keys.pipe';\nimport { CommonModule } from '@angular/common';\nimport { NoopAnimationsModule } from '@angular/platform-browser/animations';\n\n@NgModule({\n declarations: [AppComponent, KeysPipe],\n imports: [NoopAnimationsModule, BrowserModule.withServerTransition({ appId: 'serverApp' }), CommonModule],\n providers: [],\n bootstrap: [AppComponent],\n})\nexport class AppModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/AppPage.html":{"url":"classes/AppPage.html","title":"class - AppPage","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n AppPage\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/demo/e2e/src/app.po.ts\n \n\n\n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n getDemoHeadingText\n \n \n getDeviceInfoElements\n \n \n getParagraphText\n \n \n navigateTo\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n getDemoHeadingText\n \n \n \n \n \n \ngetDemoHeadingText()\n \n \n\n\n \n \n Defined in projects/demo/e2e/src/app.po.ts:9\n \n \n\n\n \n \n\n \n Returns : wdpromise.Promise\n\n \n \n \n \n \n \n \n \n \n \n \n getDeviceInfoElements\n \n \n \n \n \n \ngetDeviceInfoElements()\n \n \n\n\n \n \n Defined in projects/demo/e2e/src/app.po.ts:13\n \n \n\n\n \n \n\n \n Returns : ElementArrayFinder\n\n \n \n \n \n \n \n \n \n \n \n \n getParagraphText\n \n \n \n \n \n \ngetParagraphText()\n \n \n\n\n \n \n Defined in projects/demo/e2e/src/app.po.ts:17\n \n \n\n\n \n \n\n \n Returns : wdpromise.Promise\n\n \n \n \n \n \n \n \n \n \n \n \n navigateTo\n \n \n \n \n \n \nnavigateTo()\n \n \n\n\n \n \n Defined in projects/demo/e2e/src/app.po.ts:5\n \n \n\n\n \n \n\n \n Returns : wdpromise.Promise\n\n \n \n \n \n \n\n\n\n\n\n\n \n\n\n \n import { browser, by, element, ElementArrayFinder } from 'protractor';\nimport { promise as wdpromise } from 'selenium-webdriver';\n\nexport class AppPage {\n navigateTo(): wdpromise.Promise {\n return browser.get('/');\n }\n\n getDemoHeadingText(): wdpromise.Promise {\n return element(by.css('app-root .demo-heading-text')).getText();\n }\n\n getDeviceInfoElements(): ElementArrayFinder {\n return element.all(by.css('app-root .information-table .info-item'));\n }\n\n getParagraphText(): wdpromise.Promise {\n return element(by.css('app-root h1')).getText();\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/AppServerModule.html":{"url":"modules/AppServerModule.html","title":"module - AppServerModule","body":"\n \n\n\n\n\n Modules\n AppServerModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\ndependencies\n\ncluster_AppServerModule\n\n\n\ncluster_AppServerModule_imports\n\n\n\ncluster_AppServerModule_bootstrap\n\n\n\n\nAppModule\n\nAppModule\n\n\n\nAppServerModule\n\nAppServerModule\n\nAppServerModule -->\n\nAppModule->AppServerModule\n\n\n\n\n\nAppComponent \n\nAppComponent \n\nAppComponent -->\n\nAppServerModule->AppComponent \n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n projects/demo/src/app/server.ts\n \n\n\n\n\n\n \n \n \n Imports\n \n \n AppModule\n \n \n \n \n Bootstrap\n \n \n AppComponent\n \n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { ServerModule } from '@angular/platform-server';\n\nimport { AppModule } from './app.module';\nimport { AppComponent } from './app.component';\nimport { Inject, Injectable, Optional, PLATFORM_ID } from '@angular/core';\nimport { REQUEST } from '@nguniversal/express-engine/tokens';\nimport { Request } from 'express';\nimport { DeviceDetectorService } from 'ngx-device-detector';\nimport { isPlatformServer } from '@angular/common';\n\n@Injectable()\nexport class UniversalDeviceDetectorService extends DeviceDetectorService {\n constructor(@Inject(PLATFORM_ID) platformId: any, @Optional() @Inject(REQUEST) request: Request) {\n super(platformId);\n if (isPlatformServer(platformId)) {\n super.setDeviceInfo((request.headers['user-agent'] as string) || '');\n }\n }\n}\n\n@NgModule({\n imports: [AppModule, ServerModule],\n bootstrap: [AppComponent],\n providers: [\n {\n provide: DeviceDetectorService,\n useClass: UniversalDeviceDetectorService,\n },\n ],\n})\nexport class AppServerModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/DeviceDetectorService.html":{"url":"injectables/DeviceDetectorService.html","title":"injectable - DeviceDetectorService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n DeviceDetectorService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/ngx-device-detector/src/lib/device-detector.service.ts\n \n\n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n browser\n \n \n browser_version\n \n \n device\n \n \n deviceType\n \n \n orientation\n \n \n os\n \n \n os_version\n \n \n reTree\n \n \n ua\n \n \n userAgent\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Public\n getDeviceInfo\n \n \n Public\n isDesktop\n \n \n Public\n isMobile\n \n \n Public\n isTablet\n \n \n setDeviceInfo\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(platformId: any)\n \n \n \n \n Defined in projects/ngx-device-detector/src/lib/device-detector.service.ts:46\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n platformId\n \n \n any\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n Public\n getDeviceInfo\n \n \n \n \n \n \n \n getDeviceInfo()\n \n \n\n\n \n \n Defined in projects/ngx-device-detector/src/lib/device-detector.service.ts:135\n \n \n\n\n \n \n\n \n \n \n Returns : DeviceInfo\n\n \n \n the device information object.\n\n \n \n \n \n \n \n \n \n \n \n \n Public\n isDesktop\n \n \n \n \n \n \n \n isDesktop(userAgent)\n \n \n\n\n \n \n Defined in projects/ngx-device-detector/src/lib/device-detector.service.ts:191\n \n \n\n\n \n \n if the current device is a desktop device.\n\n\n \n Parameters :\n \n \n \n \n Name\n Optional\n Default value\n \n \n \n \n userAgent\n\n \n No\n \n\n \n this.userAgent\n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n whether the current device is a desktop device\n\n \n \n \n \n \n \n \n \n \n \n \n Public\n isMobile\n \n \n \n \n \n \n \n isMobile(userAgent)\n \n \n\n\n \n \n Defined in projects/ngx-device-detector/src/lib/device-detector.service.ts:155\n \n \n\n\n \n \n if the current device is a mobile and also check current device is tablet so it will return false.\n\n\n \n Parameters :\n \n \n \n \n Name\n Optional\n Default value\n \n \n \n \n userAgent\n\n \n No\n \n\n \n this.userAgent\n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n whether the current device is a mobile\n\n \n \n \n \n \n \n \n \n \n \n \n Public\n isTablet\n \n \n \n \n \n \n \n isTablet(userAgent)\n \n \n\n\n \n \n Defined in projects/ngx-device-detector/src/lib/device-detector.service.ts:171\n \n \n\n\n \n \n if the current device is a tablet.\n\n\n \n Parameters :\n \n \n \n \n Name\n Optional\n Default value\n \n \n \n \n userAgent\n\n \n No\n \n\n \n this.userAgent\n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n whether the current device is a tablet\n\n \n \n \n \n \n \n \n \n \n \n \n setDeviceInfo\n \n \n \n \n \n \nsetDeviceInfo(ua)\n \n \n\n\n \n \n Defined in projects/ngx-device-detector/src/lib/device-detector.service.ts:59\n \n \n\n\n \n \n This value is later accessible for usage\n\n\n \n Parameters :\n \n \n \n \n Name\n Optional\n Default value\n \n \n \n \n ua\n\n \n No\n \n\n \n this.userAgent\n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n browser\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Defined in projects/ngx-device-detector/src/lib/device-detector.service.ts:40\n \n \n\n\n \n \n \n \n \n \n \n \n browser_version\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Defined in projects/ngx-device-detector/src/lib/device-detector.service.ts:43\n \n \n\n\n \n \n \n \n \n \n \n \n device\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Defined in projects/ngx-device-detector/src/lib/device-detector.service.ts:41\n \n \n\n\n \n \n \n \n \n \n \n \n deviceType\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Defined in projects/ngx-device-detector/src/lib/device-detector.service.ts:45\n \n \n\n\n \n \n \n \n \n \n \n \n orientation\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Defined in projects/ngx-device-detector/src/lib/device-detector.service.ts:46\n \n \n\n\n \n \n \n \n \n \n \n \n os\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Defined in projects/ngx-device-detector/src/lib/device-detector.service.ts:39\n \n \n\n\n \n \n \n \n \n \n \n \n os_version\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Defined in projects/ngx-device-detector/src/lib/device-detector.service.ts:42\n \n \n\n\n \n \n \n \n \n \n \n \n reTree\n \n \n \n \n \n \n Default value : new ReTree()\n \n \n \n \n Defined in projects/ngx-device-detector/src/lib/device-detector.service.ts:44\n \n \n\n\n \n \n \n \n \n \n \n \n ua\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Defined in projects/ngx-device-detector/src/lib/device-detector.service.ts:37\n \n \n\n\n \n \n \n \n \n \n \n \n userAgent\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Defined in projects/ngx-device-detector/src/lib/device-detector.service.ts:38\n \n \n\n\n \n \n\n\n \n\n\n \n import { PLATFORM_ID, Inject, Injectable } from '@angular/core';\nimport { isPlatformBrowser } from '@angular/common';\nimport * as Constants from './device-detector.constants';\nimport { ReTree } from './retree';\n\nexport interface DeviceInfo {\n userAgent: string;\n os: string;\n browser: string;\n device: string;\n os_version: string;\n browser_version: string;\n deviceType: string;\n orientation: string;\n}\nexport enum DeviceType {\n Mobile = 'mobile',\n Tablet = 'tablet',\n Desktop = 'desktop',\n Unknown = 'unknown',\n}\nexport enum OrientationType {\n Portrait = 'portrait',\n Landscape = 'landscape',\n}\n\nconst iPad = 'iPad';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class DeviceDetectorService {\n ua = '';\n userAgent = '';\n os = '';\n browser = '';\n device = '';\n os_version = '';\n browser_version = '';\n reTree = new ReTree();\n deviceType = '';\n orientation = '';\n constructor(@Inject(PLATFORM_ID) private platformId: any) {\n if (isPlatformBrowser(this.platformId) && typeof window !== 'undefined') {\n this.userAgent = window.navigator.userAgent;\n }\n this.setDeviceInfo(this.userAgent);\n }\n\n /**\n * @author Ahsan Ayaz\n * @desc Sets the initial value of the device when the service is initiated.\n * This value is later accessible for usage\n */\n setDeviceInfo(ua = this.userAgent): void {\n if (ua !== this.userAgent) {\n this.userAgent = ua;\n }\n const mappings = [\n { const: 'OS', prop: 'os' },\n { const: 'BROWSERS', prop: 'browser' },\n { const: 'DEVICES', prop: 'device' },\n { const: 'OS_VERSIONS', prop: 'os_version' },\n ];\n\n mappings.forEach(mapping => {\n this[mapping.prop] = Object.keys(Constants[mapping.const]).reduce((obj: any, item: any) => {\n if (Constants[mapping.const][item] === 'device') {\n // hack for iOS 13 Tablet\n if (\n isPlatformBrowser(this.platformId) &&\n (!!this.reTree.test(this.userAgent, Constants.TABLETS_RE[iPad]) ||\n (navigator.platform === 'MacIntel' && navigator.maxTouchPoints > 1))\n ) {\n obj[Constants[mapping.const][item]] = iPad;\n return Object;\n }\n }\n obj[Constants[mapping.const][item]] = this.reTree.test(ua, Constants[`${mapping.const}_RE`][item]);\n return obj;\n }, {});\n });\n\n mappings.forEach(mapping => {\n this[mapping.prop] = Object.keys(Constants[mapping.const])\n .map(key => {\n return Constants[mapping.const][key];\n })\n .reduce((previousValue, currentValue) => {\n if (mapping.prop === 'device' && previousValue === Constants[mapping.const].ANDROID) {\n // if we have the actual device found, instead of 'Android', return the actual device\n return this[mapping.prop][currentValue] ? currentValue : previousValue;\n } else {\n return previousValue === Constants[mapping.const].UNKNOWN && this[mapping.prop][currentValue]\n ? currentValue\n : previousValue;\n }\n }, Constants[mapping.const].UNKNOWN);\n });\n\n this.browser_version = '0';\n if (this.browser !== Constants.BROWSERS.UNKNOWN) {\n const re = Constants.BROWSER_VERSIONS_RE[this.browser];\n const res = this.reTree.exec(ua, re);\n if (!!res) {\n this.browser_version = res[1];\n }\n }\n if (typeof window !== 'undefined' && window.matchMedia) {\n this.orientation = window.matchMedia('(orientation: landscape)').matches\n ? OrientationType.Landscape\n : OrientationType.Portrait;\n } else {\n this.orientation = Constants.GENERAL.UKNOWN;\n }\n\n this.deviceType = this.isTablet()\n ? DeviceType.Tablet\n : this.isMobile(this.userAgent)\n ? DeviceType.Mobile\n : this.isDesktop(this.userAgent)\n ? DeviceType.Desktop\n : DeviceType.Unknown;\n }\n\n /**\n * @author Ahsan Ayaz\n * @desc Returns the device information\n * @returns the device information object.\n */\n public getDeviceInfo(): DeviceInfo {\n const deviceInfo: DeviceInfo = {\n userAgent: this.userAgent,\n os: this.os,\n browser: this.browser,\n device: this.device,\n os_version: this.os_version,\n browser_version: this.browser_version,\n deviceType: this.deviceType,\n orientation: this.orientation,\n };\n return deviceInfo;\n }\n\n /**\n * @author Ahsan Ayaz\n * @desc Compares the current device info with the mobile devices to check\n * if the current device is a mobile and also check current device is tablet so it will return false.\n * @returns whether the current device is a mobile\n */\n public isMobile(userAgent = this.userAgent): boolean {\n if (this.isTablet(userAgent)) {\n return false;\n }\n const match = Object.keys(Constants.MOBILES_RE).find(mobile => {\n return this.reTree.test(userAgent, Constants.MOBILES_RE[mobile]);\n });\n return !!match;\n }\n\n /**\n * @author Ahsan Ayaz\n * @desc Compares the current device info with the tablet devices to check\n * if the current device is a tablet.\n * @returns whether the current device is a tablet\n */\n public isTablet(userAgent = this.userAgent): boolean {\n if (\n isPlatformBrowser(this.platformId) &&\n (!!this.reTree.test(this.userAgent, Constants.TABLETS_RE[iPad]) ||\n (typeof navigator !== 'undefined' && navigator.platform === 'MacIntel' && navigator.maxTouchPoints > 1))\n ) {\n return true;\n }\n const match = Object.keys(Constants.TABLETS_RE).find(mobile => {\n return !!this.reTree.test(userAgent, Constants.TABLETS_RE[mobile]);\n });\n return !!match;\n }\n\n /**\n * @author Ahsan Ayaz\n * @desc Compares the current device info with the desktop devices to check\n * if the current device is a desktop device.\n * @returns whether the current device is a desktop device\n */\n public isDesktop(userAgent = this.userAgent): boolean {\n if (this.device === Constants.DEVICES.UNKNOWN) {\n if (this.isMobile(userAgent) || this.isTablet(userAgent)) {\n return false;\n }\n }\n return Constants.DESKTOP_DEVICES.indexOf(this.device) > -1;\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/DeviceInfo.html":{"url":"interfaces/DeviceInfo.html","title":"interface - DeviceInfo","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n DeviceInfo\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/ngx-device-detector/src/lib/device-detector.service.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n browser\n \n \n \n \n browser_version\n \n \n \n \n device\n \n \n \n \n deviceType\n \n \n \n \n orientation\n \n \n \n \n os\n \n \n \n \n os_version\n \n \n \n \n userAgent\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n browser\n \n \n \n \n \n \n \n \n browser: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n browser_version\n \n \n \n \n \n \n \n \n browser_version: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n device\n \n \n \n \n \n \n \n \n device: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n deviceType\n \n \n \n \n \n \n \n \n deviceType: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n orientation\n \n \n \n \n \n \n \n \n orientation: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n os\n \n \n \n \n \n \n \n \n os: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n os_version\n \n \n \n \n \n \n \n \n os_version: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n userAgent\n \n \n \n \n \n \n \n \n userAgent: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n import { PLATFORM_ID, Inject, Injectable } from '@angular/core';\nimport { isPlatformBrowser } from '@angular/common';\nimport * as Constants from './device-detector.constants';\nimport { ReTree } from './retree';\n\nexport interface DeviceInfo {\n userAgent: string;\n os: string;\n browser: string;\n device: string;\n os_version: string;\n browser_version: string;\n deviceType: string;\n orientation: string;\n}\nexport enum DeviceType {\n Mobile = 'mobile',\n Tablet = 'tablet',\n Desktop = 'desktop',\n Unknown = 'unknown',\n}\nexport enum OrientationType {\n Portrait = 'portrait',\n Landscape = 'landscape',\n}\n\nconst iPad = 'iPad';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class DeviceDetectorService {\n ua = '';\n userAgent = '';\n os = '';\n browser = '';\n device = '';\n os_version = '';\n browser_version = '';\n reTree = new ReTree();\n deviceType = '';\n orientation = '';\n constructor(@Inject(PLATFORM_ID) private platformId: any) {\n if (isPlatformBrowser(this.platformId) && typeof window !== 'undefined') {\n this.userAgent = window.navigator.userAgent;\n }\n this.setDeviceInfo(this.userAgent);\n }\n\n /**\n * @author Ahsan Ayaz\n * @desc Sets the initial value of the device when the service is initiated.\n * This value is later accessible for usage\n */\n setDeviceInfo(ua = this.userAgent): void {\n if (ua !== this.userAgent) {\n this.userAgent = ua;\n }\n const mappings = [\n { const: 'OS', prop: 'os' },\n { const: 'BROWSERS', prop: 'browser' },\n { const: 'DEVICES', prop: 'device' },\n { const: 'OS_VERSIONS', prop: 'os_version' },\n ];\n\n mappings.forEach(mapping => {\n this[mapping.prop] = Object.keys(Constants[mapping.const]).reduce((obj: any, item: any) => {\n if (Constants[mapping.const][item] === 'device') {\n // hack for iOS 13 Tablet\n if (\n isPlatformBrowser(this.platformId) &&\n (!!this.reTree.test(this.userAgent, Constants.TABLETS_RE[iPad]) ||\n (navigator.platform === 'MacIntel' && navigator.maxTouchPoints > 1))\n ) {\n obj[Constants[mapping.const][item]] = iPad;\n return Object;\n }\n }\n obj[Constants[mapping.const][item]] = this.reTree.test(ua, Constants[`${mapping.const}_RE`][item]);\n return obj;\n }, {});\n });\n\n mappings.forEach(mapping => {\n this[mapping.prop] = Object.keys(Constants[mapping.const])\n .map(key => {\n return Constants[mapping.const][key];\n })\n .reduce((previousValue, currentValue) => {\n if (mapping.prop === 'device' && previousValue === Constants[mapping.const].ANDROID) {\n // if we have the actual device found, instead of 'Android', return the actual device\n return this[mapping.prop][currentValue] ? currentValue : previousValue;\n } else {\n return previousValue === Constants[mapping.const].UNKNOWN && this[mapping.prop][currentValue]\n ? currentValue\n : previousValue;\n }\n }, Constants[mapping.const].UNKNOWN);\n });\n\n this.browser_version = '0';\n if (this.browser !== Constants.BROWSERS.UNKNOWN) {\n const re = Constants.BROWSER_VERSIONS_RE[this.browser];\n const res = this.reTree.exec(ua, re);\n if (!!res) {\n this.browser_version = res[1];\n }\n }\n if (typeof window !== 'undefined' && window.matchMedia) {\n this.orientation = window.matchMedia('(orientation: landscape)').matches\n ? OrientationType.Landscape\n : OrientationType.Portrait;\n } else {\n this.orientation = Constants.GENERAL.UKNOWN;\n }\n\n this.deviceType = this.isTablet()\n ? DeviceType.Tablet\n : this.isMobile(this.userAgent)\n ? DeviceType.Mobile\n : this.isDesktop(this.userAgent)\n ? DeviceType.Desktop\n : DeviceType.Unknown;\n }\n\n /**\n * @author Ahsan Ayaz\n * @desc Returns the device information\n * @returns the device information object.\n */\n public getDeviceInfo(): DeviceInfo {\n const deviceInfo: DeviceInfo = {\n userAgent: this.userAgent,\n os: this.os,\n browser: this.browser,\n device: this.device,\n os_version: this.os_version,\n browser_version: this.browser_version,\n deviceType: this.deviceType,\n orientation: this.orientation,\n };\n return deviceInfo;\n }\n\n /**\n * @author Ahsan Ayaz\n * @desc Compares the current device info with the mobile devices to check\n * if the current device is a mobile and also check current device is tablet so it will return false.\n * @returns whether the current device is a mobile\n */\n public isMobile(userAgent = this.userAgent): boolean {\n if (this.isTablet(userAgent)) {\n return false;\n }\n const match = Object.keys(Constants.MOBILES_RE).find(mobile => {\n return this.reTree.test(userAgent, Constants.MOBILES_RE[mobile]);\n });\n return !!match;\n }\n\n /**\n * @author Ahsan Ayaz\n * @desc Compares the current device info with the tablet devices to check\n * if the current device is a tablet.\n * @returns whether the current device is a tablet\n */\n public isTablet(userAgent = this.userAgent): boolean {\n if (\n isPlatformBrowser(this.platformId) &&\n (!!this.reTree.test(this.userAgent, Constants.TABLETS_RE[iPad]) ||\n (typeof navigator !== 'undefined' && navigator.platform === 'MacIntel' && navigator.maxTouchPoints > 1))\n ) {\n return true;\n }\n const match = Object.keys(Constants.TABLETS_RE).find(mobile => {\n return !!this.reTree.test(userAgent, Constants.TABLETS_RE[mobile]);\n });\n return !!match;\n }\n\n /**\n * @author Ahsan Ayaz\n * @desc Compares the current device info with the desktop devices to check\n * if the current device is a desktop device.\n * @returns whether the current device is a desktop device\n */\n public isDesktop(userAgent = this.userAgent): boolean {\n if (this.device === Constants.DEVICES.UNKNOWN) {\n if (this.isMobile(userAgent) || this.isTablet(userAgent)) {\n return false;\n }\n }\n return Constants.DESKTOP_DEVICES.indexOf(this.device) > -1;\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"pipes/KeysPipe.html":{"url":"pipes/KeysPipe.html","title":"pipe - KeysPipe","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Pipes\n KeysPipe\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n projects/demo/src/app/pipes/keys.pipe.ts\n \n\n\n\n\n \n Metadata\n \n \n \n Name\n keys\n \n \n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n transform\n \n \n \n \n \n \ntransform(value, props: string[])\n \n \n\n\n \n \n Defined in projects/demo/src/app/pipes/keys.pipe.ts:7\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n value\n \n \n\n \n No\n \n\n \n \n\n \n \n props\n \n string[]\n \n\n \n No\n \n\n \n []\n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n \n import { Pipe, PipeTransform } from '@angular/core';\n\n@Pipe({\n name: 'keys',\n})\nexport class KeysPipe implements PipeTransform {\n transform(value, props: string[] = []): any {\n const keys = [];\n const noFilter = props.length === 0;\n for (const key in value) {\n if (noFilter) {\n if (value.hasOwnProperty(key)) {\n keys.push({ key, value: value[key] });\n }\n } else {\n if (props.indexOf(key) !== -1) {\n keys.push({ key, value: value[key] });\n }\n }\n }\n return keys;\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/ReTree.html":{"url":"classes/ReTree.html","title":"class - ReTree","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n ReTree\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/ngx-device-detector/src/lib/retree.ts\n \n\n\n \n Description\n \n \n Created by ahsanayaz on 08/11/2016.\n\n \n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n Public\n exec\n \n \n Public\n test\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n \n \n Defined in projects/ngx-device-detector/src/lib/retree.ts:5\n \n \n\n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n Public\n exec\n \n \n \n \n \n \n \n exec(str: string, regex: any)\n \n \n\n\n \n \n Defined in projects/ngx-device-detector/src/lib/retree.ts:30\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n str\n \n string\n \n\n \n No\n \n\n\n \n \n regex\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n test\n \n \n \n \n \n \n \n test(str: string, regex: any)\n \n \n\n\n \n \n Defined in projects/ngx-device-detector/src/lib/retree.ts:8\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n str\n \n string\n \n\n \n No\n \n\n\n \n \n regex\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n\n\n \n export class ReTree {\n constructor() {}\n\n public test(str: string, regex: any): any {\n if (typeof regex === 'string') {\n regex = new RegExp(regex);\n }\n\n if (regex instanceof RegExp) {\n return regex.test(str);\n } else if (regex && Array.isArray(regex.and)) {\n return regex.and.every((item: any) => {\n return this.test(str, item);\n });\n } else if (regex && Array.isArray(regex.or)) {\n return regex.or.some((item: any) => {\n return this.test(str, item);\n });\n } else if (regex && regex.not) {\n return !this.test(str, regex.not);\n } else {\n return false;\n }\n }\n\n public exec(str: string, regex: any): any {\n if (typeof regex === 'string') {\n regex = new RegExp(regex);\n }\n\n if (regex instanceof RegExp) {\n return regex.exec(str);\n } else if (regex && Array.isArray(regex)) {\n return regex.reduce((res: any, item: any) => {\n return !!res ? res : this.exec(str, item);\n }, null);\n } else {\n return null;\n }\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/UniversalDeviceDetectorService.html":{"url":"injectables/UniversalDeviceDetectorService.html","title":"injectable - UniversalDeviceDetectorService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n UniversalDeviceDetectorService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/demo/src/app/server.ts\n \n\n\n\n \n Extends\n \n \n DeviceDetectorService\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n browser\n \n \n browser_version\n \n \n device\n \n \n deviceType\n \n \n orientation\n \n \n os\n \n \n os_version\n \n \n reTree\n \n \n ua\n \n \n userAgent\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Public\n getDeviceInfo\n \n \n Public\n isDesktop\n \n \n Public\n isMobile\n \n \n Public\n isTablet\n \n \n setDeviceInfo\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(platformId: any, request: Request)\n \n \n \n \n Defined in projects/demo/src/app/server.ts:13\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n platformId\n \n \n any\n \n \n \n No\n \n \n \n \n request\n \n \n Request\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n Public\n getDeviceInfo\n \n \n \n \n \n \n \n getDeviceInfo()\n \n \n\n\n \n \n Inherited from DeviceDetectorService\n\n \n \n \n \n Defined in DeviceDetectorService:135\n\n \n \n\n\n \n \n\n \n \n \n Returns : DeviceInfo\n\n \n \n the device information object.\n\n \n \n \n \n \n \n \n \n \n \n \n Public\n isDesktop\n \n \n \n \n \n \n \n isDesktop(userAgent)\n \n \n\n\n \n \n Inherited from DeviceDetectorService\n\n \n \n \n \n Defined in DeviceDetectorService:191\n\n \n \n\n\n \n \n if the current device is a desktop device.\n\n\n \n Parameters :\n \n \n \n \n Name\n Optional\n Default value\n \n \n \n \n userAgent\n\n \n No\n \n\n \n this.userAgent\n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n whether the current device is a desktop device\n\n \n \n \n \n \n \n \n \n \n \n \n Public\n isMobile\n \n \n \n \n \n \n \n isMobile(userAgent)\n \n \n\n\n \n \n Inherited from DeviceDetectorService\n\n \n \n \n \n Defined in DeviceDetectorService:155\n\n \n \n\n\n \n \n if the current device is a mobile and also check current device is tablet so it will return false.\n\n\n \n Parameters :\n \n \n \n \n Name\n Optional\n Default value\n \n \n \n \n userAgent\n\n \n No\n \n\n \n this.userAgent\n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n whether the current device is a mobile\n\n \n \n \n \n \n \n \n \n \n \n \n Public\n isTablet\n \n \n \n \n \n \n \n isTablet(userAgent)\n \n \n\n\n \n \n Inherited from DeviceDetectorService\n\n \n \n \n \n Defined in DeviceDetectorService:171\n\n \n \n\n\n \n \n if the current device is a tablet.\n\n\n \n Parameters :\n \n \n \n \n Name\n Optional\n Default value\n \n \n \n \n userAgent\n\n \n No\n \n\n \n this.userAgent\n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n whether the current device is a tablet\n\n \n \n \n \n \n \n \n \n \n \n \n setDeviceInfo\n \n \n \n \n \n \nsetDeviceInfo(ua)\n \n \n\n\n \n \n Inherited from DeviceDetectorService\n\n \n \n \n \n Defined in DeviceDetectorService:59\n\n \n \n\n\n \n \n This value is later accessible for usage\n\n\n \n Parameters :\n \n \n \n \n Name\n Optional\n Default value\n \n \n \n \n ua\n\n \n No\n \n\n \n this.userAgent\n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n browser\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Inherited from DeviceDetectorService\n\n \n \n \n \n Defined in DeviceDetectorService:40\n\n \n \n\n\n \n \n \n \n \n \n \n \n browser_version\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Inherited from DeviceDetectorService\n\n \n \n \n \n Defined in DeviceDetectorService:43\n\n \n \n\n\n \n \n \n \n \n \n \n \n device\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Inherited from DeviceDetectorService\n\n \n \n \n \n Defined in DeviceDetectorService:41\n\n \n \n\n\n \n \n \n \n \n \n \n \n deviceType\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Inherited from DeviceDetectorService\n\n \n \n \n \n Defined in DeviceDetectorService:45\n\n \n \n\n\n \n \n \n \n \n \n \n \n orientation\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Inherited from DeviceDetectorService\n\n \n \n \n \n Defined in DeviceDetectorService:46\n\n \n \n\n\n \n \n \n \n \n \n \n \n os\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Inherited from DeviceDetectorService\n\n \n \n \n \n Defined in DeviceDetectorService:39\n\n \n \n\n\n \n \n \n \n \n \n \n \n os_version\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Inherited from DeviceDetectorService\n\n \n \n \n \n Defined in DeviceDetectorService:42\n\n \n \n\n\n \n \n \n \n \n \n \n \n reTree\n \n \n \n \n \n \n Default value : new ReTree()\n \n \n \n \n Inherited from DeviceDetectorService\n\n \n \n \n \n Defined in DeviceDetectorService:44\n\n \n \n\n\n \n \n \n \n \n \n \n \n ua\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Inherited from DeviceDetectorService\n\n \n \n \n \n Defined in DeviceDetectorService:37\n\n \n \n\n\n \n \n \n \n \n \n \n \n userAgent\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Inherited from DeviceDetectorService\n\n \n \n \n \n Defined in DeviceDetectorService:38\n\n \n \n\n\n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { ServerModule } from '@angular/platform-server';\n\nimport { AppModule } from './app.module';\nimport { AppComponent } from './app.component';\nimport { Inject, Injectable, Optional, PLATFORM_ID } from '@angular/core';\nimport { REQUEST } from '@nguniversal/express-engine/tokens';\nimport { Request } from 'express';\nimport { DeviceDetectorService } from 'ngx-device-detector';\nimport { isPlatformServer } from '@angular/common';\n\n@Injectable()\nexport class UniversalDeviceDetectorService extends DeviceDetectorService {\n constructor(@Inject(PLATFORM_ID) platformId: any, @Optional() @Inject(REQUEST) request: Request) {\n super(platformId);\n if (isPlatformServer(platformId)) {\n super.setDeviceInfo((request.headers['user-agent'] as string) || '');\n }\n }\n}\n\n@NgModule({\n imports: [AppModule, ServerModule],\n bootstrap: [AppComponent],\n providers: [\n {\n provide: DeviceDetectorService,\n useClass: UniversalDeviceDetectorService,\n },\n ],\n})\nexport class AppServerModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"contributing.html":{"url":"contributing.html","title":"getting-started - contributing","body":"\n \n\nHow to Contribute\nThere are many ways you can Contribute to this project!\n\nCreate issues or help close them\nFork, Enhance, Fix Bugs, and send in Pull Requests\nHelp write Tests or improve Examples / Documentation\nShare repo with others.\n\nIssues\nFound a bug, have some feedback or really want some feature? Lock in an Issue. Here are some tips:\n\nMake sure the bug you're reporting really is a bug and you have read the docs/readme.\nProvide as many details as you can about the bug. How can it be reproduced? What have you tried so far?\nFor feature requests, really explain why your feature is important and how it improves the library and helps the developers using it.\nGo through existing issues. Make sure that it hasn't already been opened.\nIf planning on helping close an issue, don't be shy. Ask questions and get more information before sending your PR.\n\nPull Requests\nWant to fix a bug, implement a feature or help with the tests / docs? Please read this first:\n\nMake sure there's an open issue for what you're sending in your Pull Request. If not, open it.\nSend in your PRs agains the master branch.\nWrite unit tests / docs for any new feature you implement.\nMake sure your PRs pass all tests and CI.\nBe active in your relevant issue and PR threads.\nMake sure no one else is assigned or working on the issue. It's a good idea to leave a comment stating that you're going to implement it before sending in your PR. \nThis way no two devs are working on the same thing.\nIf required, update the CHANGELOG.md file with a small summary of your changes in the latest version (add a new section if needed)\n\nFinally, Thank you!\nIt means a lot that you took time out to improve this package and contribute back to the community. 🎉\nRelevant Links\nProject Page\nAuthor\nNPM Package\nLicense\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"coverage.html":{"url":"coverage.html","title":"coverage - coverage","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Documentation coverage\n\n\n\n \n\n\n\n \n \n File\n Type\n Identifier\n Statements\n \n \n \n \n \n \n projects/demo/e2e/src/app.po.ts\n \n class\n AppPage\n \n 0 %\n (0/5)\n \n \n \n \n \n projects/demo/server.ts\n \n function\n app\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/demo/server.ts\n \n function\n run\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/demo/server.ts\n \n variable\n __non_webpack_require__\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/demo/server.ts\n \n variable\n mainModule\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/demo/server.ts\n \n variable\n moduleFilename\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/demo/src/app/app.component.ts\n \n component\n AppComponent\n \n 0 %\n (0/10)\n \n \n \n \n \n projects/demo/src/app/pipes/keys.pipe.ts\n \n pipe\n KeysPipe\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/demo/src/app/server.ts\n \n injectable\n UniversalDeviceDetectorService\n \n 23 %\n (4/17)\n \n \n \n \n \n projects/ngx-device-detector/src/lib/device-detector.constants.ts\n \n variable\n BROWSER_VERSIONS_RE\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/ngx-device-detector/src/lib/device-detector.constants.ts\n \n variable\n BROWSER_VERSIONS_RE_MAP\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/ngx-device-detector/src/lib/device-detector.constants.ts\n \n variable\n BROWSERS\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/ngx-device-detector/src/lib/device-detector.constants.ts\n \n variable\n BROWSERS_RE\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/ngx-device-detector/src/lib/device-detector.constants.ts\n \n variable\n DESKTOP_DEVICES\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/ngx-device-detector/src/lib/device-detector.constants.ts\n \n variable\n DEVICES\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/ngx-device-detector/src/lib/device-detector.constants.ts\n \n variable\n DEVICES_RE\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/ngx-device-detector/src/lib/device-detector.constants.ts\n \n variable\n GENERAL\n \n 100 %\n (1/1)\n \n \n \n \n \n projects/ngx-device-detector/src/lib/device-detector.constants.ts\n \n variable\n MOBILES_RE\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/ngx-device-detector/src/lib/device-detector.constants.ts\n \n variable\n OS\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/ngx-device-detector/src/lib/device-detector.constants.ts\n \n variable\n OS_RE\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/ngx-device-detector/src/lib/device-detector.constants.ts\n \n variable\n OS_VERSIONS\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/ngx-device-detector/src/lib/device-detector.constants.ts\n \n variable\n OS_VERSIONS_RE\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/ngx-device-detector/src/lib/device-detector.constants.ts\n \n variable\n OS_VERSIONS_RE_MAP\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/ngx-device-detector/src/lib/device-detector.constants.ts\n \n variable\n TABLETS_RE\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/ngx-device-detector/src/lib/device-detector.service.ts\n \n injectable\n DeviceDetectorService\n \n 23 %\n (4/17)\n \n \n \n \n \n projects/ngx-device-detector/src/lib/device-detector.service.ts\n \n interface\n DeviceInfo\n \n 0 %\n (0/9)\n \n \n \n \n \n projects/ngx-device-detector/src/lib/device-detector.service.ts\n \n variable\n iPad\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/ngx-device-detector/src/lib/retree.ts\n \n class\n ReTree\n \n 25 %\n (1/4)\n \n \n \n\n\n\n\n\n new Tablesort(document.getElementById('coverage-table'));\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"dependencies.html":{"url":"dependencies.html","title":"package-dependencies - dependencies","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n Dependencies\n \n \n \n @angular/animations : ~15.0.2\n \n @angular/common : ~15.0.2\n \n @angular/compiler : ~15.0.2\n \n @angular/core : ~15.0.2\n \n @angular/forms : ~15.0.2\n \n @angular/platform-browser : ~15.0.2\n \n @angular/platform-browser-dynamic : ~15.0.2\n \n @angular/platform-server : ~15.0.2\n \n @angular/router : ~15.0.2\n \n @nguniversal/express-engine : ~15.0.0\n \n conventional-changelog-cli : ~2.2.2\n \n express : ~4.18.2\n \n rxjs : ~7.5.7\n \n tslib : ~2.4.1\n \n zone.js : ~0.12.0\n \n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"miscellaneous/enumerations.html":{"url":"miscellaneous/enumerations.html","title":"miscellaneous-enumerations - enumerations","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Miscellaneous\n Enumerations\n\n\n\n Index\n \n \n \n \n \n \n DeviceType (projects/.../device-detector.service.ts)\n \n \n OrientationType (projects/.../device-detector.service.ts)\n \n \n \n \n \n \n\n\n projects/ngx-device-detector/src/lib/device-detector.service.ts\n \n \n \n \n \n \n DeviceType\n \n \n \n \n Mobile\n \n \n \n \n Value : mobile\n \n \n \n \n Tablet\n \n \n \n \n Value : tablet\n \n \n \n \n Desktop\n \n \n \n \n Value : desktop\n \n \n \n \n Unknown\n \n \n \n \n Value : unknown\n \n \n \n \n \n \n \n \n \n OrientationType\n \n \n \n \n Portrait\n \n \n \n \n Value : portrait\n \n \n \n \n Landscape\n \n \n \n \n Value : landscape\n \n \n \n \n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"miscellaneous/functions.html":{"url":"miscellaneous/functions.html","title":"miscellaneous-functions - functions","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Miscellaneous\n Functions\n\n\n\n Index\n \n \n \n \n \n \n app (projects/.../server.ts)\n \n \n run (projects/.../server.ts)\n \n \n \n \n \n \n\n\n projects/demo/server.ts\n \n \n \n \n \n \n \n app\n \n \n \n \n \n \napp()\n \n \n\n\n\n\n \n \n\n \n Returns : express.Express\n\n \n \n \n \n \n \n \n \n \n \n \n run\n \n \n \n \n \n \nrun()\n \n \n\n\n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"index.html":{"url":"index.html","title":"getting-started - index","body":"\n \n\n\n \n\n\n\n\n ngx-device-detector\n\n\n\nAn Angular 6+ powered AOT compatible device detector that helps to identify browser, os and other useful information regarding the device using the app. The processing is based on user-agent.\n\n\n\n\n\n\n\n\n\n\n Deprecated package :\n \n \n\n\n New package :\n \n \nIf you use Angular 5, you must use v1.5.2 or earlier\n\n\nDOCS\nNgx Device Detector DOCS\nLive DEMO\nRegular Demo\nSSR Demo\nDependencies\nLatest version available for each version of Angular\n\n\n\nngx-device-detector\nAngular\n\n\n\n\n1.3.3\n7.x\n\n\n1.3.5\n8.x\n\n\n1.4.1\n9.x\n\n\n1.4.5\n10.x\n\n\n2.0.5\n11.x\n\n\n2.1.0\n12.x\n\n\n3.x.x\n13.x\n\n\n4.x.x\n14.x\n\n\n5.x.x\n15.x\n\n\n\nInstallation\nTo install this library, run:\n$ npm install ngx-device-detector --saveIn your component where you want to use the Device Service\n import { Component } from '@angular/core';\n ...\n import { DeviceDetectorService } from 'ngx-device-detector';\n ...\n @Component({\n selector: 'home', // \n styleUrls: [ './home.component.scss' ],\n templateUrl: './home.component.html',\n ...\n })\n\n export class HomeComponent {\n deviceInfo = null;\n ...\n constructor(..., private http: Http, private deviceService: DeviceDetectorService) {\n this.epicFunction();\n }\n ...\n epicFunction() {\n console.log('hello `Home` component');\n this.deviceInfo = this.deviceService.getDeviceInfo();\n const isMobile = this.deviceService.isMobile();\n const isTablet = this.deviceService.isTablet();\n const isDesktopDevice = this.deviceService.isDesktop();\n console.log(this.deviceInfo);\n console.log(isMobile); // returns if the device is a mobile device (android / iPhone / windows-phone etc)\n console.log(isTablet); // returns if the device us a tablet (iPad etc)\n console.log(isDesktopDevice); // returns if the app is running on a Desktop browser.\n }\n ...\n }\nTo ensure Universal has the correct User Agent for device detection, you'll need to provide it manually. If using ExpressJS for example:\nuniversal-device-detector.service.ts:\nimport { Inject, Injectable, Optional, PLATFORM_ID } from '@angular/core';\nimport { REQUEST } from '@nguniversal/express-engine/tokens';\nimport { Request } from 'express';\nimport { DeviceDetectorService } from 'ngx-device-detector';\nimport { isPlatformServer } from '@angular/common';\n\n@Injectable()\nexport class UniversalDeviceDetectorService extends DeviceDetectorService {\n constructor(@Inject(PLATFORM_ID) platformId: any, @Optional() @Inject(REQUEST) request: Request) {\n super(platformId);\n if (isPlatformServer(platformId)) {\n super.setDeviceInfo((request.headers['user-agent'] as string) || '');\n }\n }\n}app.server.module.ts:\n{\n provide: DeviceDetectorService,\n useClass: UniversalDeviceDetectorService\n},Device service\nHolds the following properties\n\nbrowser\nos\ndevice\nuserAgent\nos_version\n\nHelper Methods\n\nisMobile() : returns if the device is a mobile device (android / iPhone/ windows-phone etc)\nisTablet() : returns if the device us a tablet (iPad etc)\nisDesktop() : returns if the app is running on a Desktop browser.\n\nDevelopment\nTo generate all *.js, *.js.map and *.d.ts files:\n $ npm run tscTo lint all *.ts files:\n $ npm run lintTo run unit tests\n $ npm run testTo build the library\n $ npm run buildRun the DEMO\nMake sure you have @angular/cli installed\n $ npm install -g @angular/cli $ cd demo\n $ npm install\n $ ng servethe demo will be up at localhost:4200\nChange Log\nPlease see CHANGE_LOG.MD for the updates.\nCredits\nThe library is inspired by and based on the work from ng-device-detector . Also used a typescript wrapper of the amazing work in ReTree for regex based needs and an Angular2 Library Creator boilerplate to get the work started fast. I.e. Generator Angular2 library.\nLicense\nMIT\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"license.html":{"url":"license.html","title":"getting-started - license","body":"\n \n\nMIT License\nCopyright (c) 2021 Muhammad Ahsan Ayaz\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules.html":{"url":"modules.html","title":"modules - modules","body":"\n \n\n\n\n\n Modules\n\n\n \n \n \n \n AppModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n AppServerModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"overview.html":{"url":"overview.html","title":"overview - overview","body":"\n \n\n\n\n Overview\n\n \n\n \n \n\n\n\n\n\ndependencies\n\ndependencies\n\ncluster_AppModule\n\n\n\ncluster_AppModule_declarations\n\n\n\ncluster_AppModule_bootstrap\n\n\n\ncluster_AppServerModule\n\n\n\n\nAppComponent\n\nAppComponent\n\n\n\nAppModule\n\nAppModule\n\nAppModule -->\n\nAppComponent->AppModule\n\n\n\n\n\nKeysPipe\n\nKeysPipe\n\nAppModule -->\n\nKeysPipe->AppModule\n\n\n\n\n\nAppComponent \n\nAppComponent \n\nAppComponent -->\n\nAppModule->AppComponent \n\n\n\n\n\nAppServerModule\n\nAppServerModule\n\nAppServerModule -->\n\nAppModule->AppServerModule\n\n\n\nAppComponent -->\n\nAppServerModule->AppComponent \n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n \n\n \n \n \n \n \n \n 2 Modules\n \n \n \n \n \n \n \n \n 1 Component\n \n \n \n \n \n \n \n 2 Injectables\n \n \n \n \n \n \n \n 1 Pipe\n \n \n \n \n \n \n \n 2 Classes\n \n \n \n \n \n \n \n 1 Interface\n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"properties.html":{"url":"properties.html","title":"package-properties - properties","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n Properties\n \n \n \n Version : 5.0.0\n \n Keywords : angular, device, device detector, device detection, ngx-device-detector, angular device detector, angular5, angular6, angular7, angular8\n \n Bugs : https://github.com/AhsanAyaz/ngx-device-detector.git/issues\n \n License : MIT\n \n Repository : https://github.com/KoderLabs/ngx-device-detector.git\n \n Author : Muhammad Ahsan Ayaz\n \n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"miscellaneous/variables.html":{"url":"miscellaneous/variables.html","title":"miscellaneous-variables - variables","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Miscellaneous\n Variables\n\n\n\n Index\n \n \n \n \n \n \n __non_webpack_require__ (projects/.../server.ts)\n \n \n BROWSER_VERSIONS_RE (projects/.../device-detector.constants.ts)\n \n \n BROWSER_VERSIONS_RE_MAP (projects/.../device-detector.constants.ts)\n \n \n BROWSERS (projects/.../device-detector.constants.ts)\n \n \n BROWSERS_RE (projects/.../device-detector.constants.ts)\n \n \n DESKTOP_DEVICES (projects/.../device-detector.constants.ts)\n \n \n DEVICES (projects/.../device-detector.constants.ts)\n \n \n DEVICES_RE (projects/.../device-detector.constants.ts)\n \n \n GENERAL (projects/.../device-detector.constants.ts)\n \n \n iPad (projects/.../device-detector.service.ts)\n \n \n mainModule (projects/.../server.ts)\n \n \n MOBILES_RE (projects/.../device-detector.constants.ts)\n \n \n moduleFilename (projects/.../server.ts)\n \n \n OS (projects/.../device-detector.constants.ts)\n \n \n OS_RE (projects/.../device-detector.constants.ts)\n \n \n OS_VERSIONS (projects/.../device-detector.constants.ts)\n \n \n OS_VERSIONS_RE (projects/.../device-detector.constants.ts)\n \n \n OS_VERSIONS_RE_MAP (projects/.../device-detector.constants.ts)\n \n \n TABLETS_RE (projects/.../device-detector.constants.ts)\n \n \n \n \n \n \n\n\n projects/demo/server.ts\n \n \n \n \n \n \n \n __non_webpack_require__\n \n \n \n \n \n \n Type : NodeRequire\n\n \n \n\n\n \n \n \n \n \n \n \n \n mainModule\n \n \n \n \n \n \n Default value : __non_webpack_require__.main\n \n \n\n\n \n \n \n \n \n \n \n \n moduleFilename\n \n \n \n \n \n \n Default value : (mainModule && mainModule.filename) || ''\n \n \n\n\n \n \n\n projects/ngx-device-detector/src/lib/device-detector.constants.ts\n \n \n \n \n \n \n \n BROWSER_VERSIONS_RE\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Default value : Object.keys(BROWSER_VERSIONS_RE_MAP).reduce((obj, key: string) => {\n obj[BROWSERS[key]] = BROWSER_VERSIONS_RE_MAP[key];\n return obj;\n}, {})\n \n \n\n\n \n \n \n \n \n \n \n \n BROWSER_VERSIONS_RE_MAP\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Default value : {\n CHROME: [/\\bChrome\\/([\\d\\.]+)\\b/, /\\bCriOS\\/([\\d\\.]+)\\b/, /\\bHeadlessChrome\\/([\\d\\.]+)\\b/],\n FIREFOX: [/\\bFirefox\\/([\\d\\.]+)\\b/, /\\bFxiOS\\/([\\d\\.]+)\\b/],\n SAFARI: [/\\bVersion\\/([\\d\\.]+)\\b/, /\\bSafari\\/([\\d\\.]+)\\b/],\n OPERA: [/\\bVersion\\/([\\d\\.]+)\\b/, /\\bOPR\\/([\\d\\.]+)\\b/],\n IE: [/\\bMSIE ([\\d\\.]+\\w?)\\b/, /\\brv:([\\d\\.]+\\w?)\\b/],\n MS_EDGE: /\\bEdg(?:e|A|iOS)\\/([\\d\\.]+)\\b/,\n MS_EDGE_CHROMIUM: /\\bEdg\\/([\\d\\.]+)\\b/,\n SAMSUNG: /\\bSamsungBrowser\\/([\\d\\.]+)\\b/,\n UCBROWSER: /\\bUCBrowser\\/([\\d\\.]+)\\b/,\n}\n \n \n\n\n \n \n \n \n \n \n \n \n BROWSERS\n \n \n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n CHROME: 'Chrome',\n FIREFOX: 'Firefox',\n SAFARI: 'Safari',\n OPERA: 'Opera',\n IE: 'IE',\n MS_EDGE: 'MS-Edge',\n MS_EDGE_CHROMIUM: 'MS-Edge-Chromium',\n FB_MESSANGER: 'FB-Messanger',\n SAMSUNG: 'Samsung',\n UCBROWSER: 'UC-Browser',\n UNKNOWN: GENERAL.UKNOWN,\n}\n \n \n\n\n \n \n \n \n \n \n \n \n BROWSERS_RE\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Default value : {\n CHROME: {\n and: [\n { or: [/\\bChrome\\b/, /\\bCriOS\\b/, /\\bHeadlessChrome\\b/] },\n {\n not: {\n or: [/\\bOPR\\b/, /\\bEdg(e|A|iOS)\\b/, /\\bEdg\\/\\b/, /\\bSamsungBrowser\\b/, /\\bUCBrowser\\b/],\n },\n },\n ],\n },\n FIREFOX: { or: [/\\bFirefox\\b/, /\\bFxiOS\\b/] },\n SAFARI: {\n and: [\n /^((?!CriOS).)*\\Safari\\b.*$/,\n {\n not: {\n or: [/\\bOPR\\b/, /\\bEdg(e|A|iOS)\\b/, /\\bEdg\\/\\b/, /\\bWindows Phone\\b/, /\\bSamsungBrowser\\b/, /\\bUCBrowser\\b/],\n },\n },\n ],\n },\n OPERA: { or: [/Opera\\b/, /\\bOPR\\b/] },\n IE: {\n or: [/\\bMSIE\\b/, /\\bTrident\\b/, /^Mozilla\\/5\\.0 \\(Windows NT 10\\.0; Win64; x64\\)$/],\n },\n MS_EDGE: { or: [/\\bEdg(e|A|iOS)\\b/] },\n MS_EDGE_CHROMIUM: /\\bEdg\\/\\b/,\n PS4: /\\bMozilla\\/5.0 \\(PlayStation 4\\b/,\n VITA: /\\bMozilla\\/5.0 \\(Play(S|s)tation Vita\\b/,\n FB_MESSANGER: /\\bFBAN\\/MessengerForiOS\\b/,\n SAMSUNG: /\\bSamsungBrowser\\b/,\n UCBROWSER: /\\bUCBrowser\\b/,\n}\n \n \n\n\n \n \n \n \n \n \n \n \n DESKTOP_DEVICES\n \n \n \n \n \n \n Type : []\n\n \n \n \n \n Default value : [\n DEVICES.PS4,\n DEVICES.CHROME_BOOK,\n DEVICES.MAC,\n DEVICES.DELL,\n DEVICES.ASUS,\n DEVICES.UNKNOWN,\n]\n \n \n\n\n \n \n \n \n \n \n \n \n DEVICES\n \n \n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n BLACKBERRY: 'Blackberry',\n FIREFOX_OS: 'Firefox-OS',\n CHROME_BOOK: 'Chrome-Book',\n WINDOWS_PHONE: 'Windows-Phone',\n VITA: 'Vita',\n PS4: 'PS4',\n MAC: 'Macintosh',\n CHROMECAST: 'Chromecast',\n APPLE_TV: 'Apple-TV',\n GOOGLE_TV: 'Google-TV',\n ANDROID: 'Android',\n Tesla: 'Tesla',\n iPad: 'iPad',\n IPHONE: 'iPhone',\n iPod: 'iPod',\n UNKNOWN: GENERAL.UKNOWN,\n HTC: 'HTC',\n NEXUS_PHONE: 'Nexus Phone',\n NexusTablet: 'Nexus Tablet',\n DELL: 'Dell',\n MOTOROLA: 'Motorola',\n SAMSUNG: 'Samsung',\n LG: 'LG',\n SONY: 'Sony',\n ASUS: 'Asus',\n NOKIA_LUMIA: 'Nokia Lumia',\n MICROMAX: 'Micromax',\n PALM: 'Palm',\n VERTU: 'Vertu',\n PANTECH: 'PANTECH',\n FLY: 'Fly',\n WIKO: `WIKO`,\n I_MOBILE: 'i-mobile',\n SIMVALLEY: 'Simvalley',\n WOLFGANG: 'Wolfgang',\n ALCATEL: 'Alcatel',\n HONEYWELL: 'Honeywell',\n NINTENDO: 'Nintendo',\n AMOI: 'Amoi',\n INQ: 'INQ',\n GENERIC_PHONE: 'Generic Phone',\n MI_SE_9: 'Mi SE 9',\n}\n \n \n\n\n \n \n \n \n \n \n \n \n DEVICES_RE\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Default value : {\n ...MOBILES_RE,\n ...TABLETS_RE,\n ...OS_RE,\n FIREFOX_OS: { and: [/\\bFirefox\\b/, /\\bMobile\\b/] },\n CHROME_BOOK: /\\bCrOS\\b/,\n PS4: /\\bMozilla\\/5.0 \\(PlayStation 4\\b/,\n CHROMECAST: /\\bCrKey\\b/,\n APPLE_TV: /^iTunes-AppleTV\\/4.1$/,\n GOOGLE_TV: /\\bGoogleTV\\b/,\n Tesla: /Tesla\\/([0-9]{4}.[0-9]{1,2}.?[0-9]{0,2}.?[0-9]{0,2})-(.{7})/,\n MI_SE_9: /\\bXiaomi\\b/,\n MAC: {\n and: [/\\bMac OS\\b/, { not: { or: [/\\biPhone\\b/, /\\biPad\\b/, /\\biPod\\b/, /\\bWindows Phone\\b/] } }],\n },\n}\n \n \n\n\n \n \n \n \n \n \n \n \n GENERAL\n \n \n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n UKNOWN: 'Unknown',\n}\n \n \n\n \n \n Created by ahsanayaz on 08/11/2016.\n\n \n \n\n \n \n \n \n \n \n \n \n MOBILES_RE\n \n \n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n // tslint:disable-next-line:max-line-length\n HTC: /HTC|HTC.*(Sensation|Evo|Vision|Explorer|6800|8100|8900|A7272|S510e|C110e|Legend|Desire|T8282)|APX515CKT|Qtek9090|APA9292KT|HD_mini|Sensation.*Z710e|PG86100|Z715e|Desire.*(A8181|HD)|ADR6200|ADR6400L|ADR6425|001HT|Inspire 4G|Android.*\\bEVO\\b|T-Mobile G1|Z520m|Android [0-9.]+; Pixel/,\n NEXUS_PHONE: /Nexus One|Nexus S|Galaxy.*Nexus|Android.*Nexus.*Mobile|Nexus 4|Nexus 5|Nexus 6/,\n DELL: /Dell[;]? (Streak|Aero|Venue|Venue Pro|Flash|Smoke|Mini 3iX)|XCD28|XCD35|\\b001DL\\b|\\b101DL\\b|\\bGS01\\b/,\n MOTOROLA: new RegExp(`Motorola|DROIDX|DROID BIONIC|\\\\bDroid\\\\b.*Build|Android.*Xoom|HRI39|MOT-|A1260|A1680|A555|A853|\n A855|A953|A955|A956|Motorola.*ELECTRIFY|Motorola.*i1|i867|i940|MB200|MB300|MB501|MB502|MB508|MB511|\n MB520|MB525|MB526|MB611|MB612|MB632|MB810|MB855|MB860|MB861|MB865|MB870|ME501|ME502|ME511|ME525|ME600|\n ME632|ME722|ME811|ME860|ME863|ME865|MT620|MT710|MT716|MT720|MT810|MT870|MT917|Motorola.*TITANIUM|WX435|\n WX445|XT300|XT301|XT311|XT316|XT317|XT319|XT320|XT390|XT502|XT530|XT531|XT532|XT535|XT603|XT610|XT611|\n XT615|XT681|XT701|XT702|XT711|XT720|XT800|XT806|XT860|XT862|XT875|XT882|XT883|XT894|XT901|XT907|XT909|\n XT910|XT912|XT928|XT926|XT915|XT919|XT925|XT1021|\\\\bMoto E\\\\b|XT1068|XT1092|XT1052`),\n SAMSUNG: new RegExp(`\\\\bSamsung\\\\b|SM-G950F|SM-G955F|SM-G9250|GT-19300|SGH-I337|BGT-S5230|GT-B2100|GT-B2700|GT-B2710|\n GT-B3210|GT-B3310|GT-B3410|GT-B3730|GT-B3740|GT-B5510|GT-B5512|GT-B5722|GT-B6520|GT-B7300|GT-B7320|\n GT-B7330|GT-B7350|GT-B7510|GT-B7722|GT-B7800|GT-C3010|GT-C3011|GT-C3060|GT-C3200|GT-C3212|GT-C3212I|\n GT-C3262|GT-C3222|GT-C3300|GT-C3300K|GT-C3303|GT-C3303K|GT-C3310|GT-C3322|GT-C3330|GT-C3350|GT-C3500|\n GT-C3510|GT-C3530|GT-C3630|GT-C3780|GT-C5010|GT-C5212|GT-C6620|GT-C6625|GT-C6712|GT-E1050|GT-E1070|\n GT-E1075|GT-E1080|GT-E1081|GT-E1085|GT-E1087|GT-E1100|GT-E1107|GT-E1110|GT-E1120|GT-E1125|GT-E1130|\n GT-E1160|GT-E1170|GT-E1175|GT-E1180|GT-E1182|GT-E1200|GT-E1210|GT-E1225|GT-E1230|GT-E1390|GT-E2100|\n GT-E2120|GT-E2121|GT-E2152|GT-E2220|GT-E2222|GT-E2230|GT-E2232|GT-E2250|GT-E2370|GT-E2550|GT-E2652|\n GT-E3210|GT-E3213|GT-I5500|GT-I5503|GT-I5700|GT-I5800|GT-I5801|GT-I6410|GT-I6420|GT-I7110|GT-I7410|\n GT-I7500|GT-I8000|GT-I8150|GT-I8160|GT-I8190|GT-I8320|GT-I8330|GT-I8350|GT-I8530|GT-I8700|GT-I8703|\n GT-I8910|GT-I9000|GT-I9001|GT-I9003|GT-I9010|GT-I9020|GT-I9023|GT-I9070|GT-I9082|GT-I9100|GT-I9103|\n GT-I9220|GT-I9250|GT-I9300|GT-I9305|GT-I9500|GT-I9505|GT-M3510|GT-M5650|GT-M7500|GT-M7600|GT-M7603|\n GT-M8800|GT-M8910|GT-N7000|GT-S3110|GT-S3310|GT-S3350|GT-S3353|GT-S3370|GT-S3650|GT-S3653|GT-S3770|\n GT-S3850|GT-S5210|GT-S5220|GT-S5229|GT-S5230|GT-S5233|GT-S5250|GT-S5253|GT-S5260|GT-S5263|GT-S5270|\n GT-S5300|GT-S5330|GT-S5350|GT-S5360|GT-S5363|GT-S5369|GT-S5380|GT-S5380D|GT-S5560|GT-S5570|GT-S5600|\n GT-S5603|GT-S5610|GT-S5620|GT-S5660|GT-S5670|GT-S5690|GT-S5750|GT-S5780|GT-S5830|GT-S5839|GT-S6102|\n GT-S6500|GT-S7070|GT-S7200|GT-S7220|GT-S7230|GT-S7233|GT-S7250|GT-S7500|GT-S7530|GT-S7550|GT-S7562|\n GT-S7710|GT-S8000|GT-S8003|GT-S8500|GT-S8530|GT-S8600|SCH-A310|SCH-A530|SCH-A570|SCH-A610|SCH-A630|\n SCH-A650|SCH-A790|SCH-A795|SCH-A850|SCH-A870|SCH-A890|SCH-A930|SCH-A950|SCH-A970|SCH-A990|SCH-I100|\n SCH-I110|SCH-I400|SCH-I405|SCH-I500|SCH-I510|SCH-I515|SCH-I600|SCH-I730|SCH-I760|SCH-I770|SCH-I830|\n SCH-I910|SCH-I920|SCH-I959|SCH-LC11|SCH-N150|SCH-N300|SCH-R100|SCH-R300|SCH-R351|SCH-R400|SCH-R410|\n SCH-T300|SCH-U310|SCH-U320|SCH-U350|SCH-U360|SCH-U365|SCH-U370|SCH-U380|SCH-U410|SCH-U430|SCH-U450|\n SCH-U460|SCH-U470|SCH-U490|SCH-U540|SCH-U550|SCH-U620|SCH-U640|SCH-U650|SCH-U660|SCH-U700|SCH-U740|\n SCH-U750|SCH-U810|SCH-U820|SCH-U900|SCH-U940|SCH-U960|SCS-26UC|SGH-A107|SGH-A117|SGH-A127|SGH-A137|\n SGH-A157|SGH-A167|SGH-A177|SGH-A187|SGH-A197|SGH-A227|SGH-A237|SGH-A257|SGH-A437|SGH-A517|SGH-A597|\n SGH-A637|SGH-A657|SGH-A667|SGH-A687|SGH-A697|SGH-A707|SGH-A717|SGH-A727|SGH-A737|SGH-A747|SGH-A767|\n SGH-A777|SGH-A797|SGH-A817|SGH-A827|SGH-A837|SGH-A847|SGH-A867|SGH-A877|SGH-A887|SGH-A897|SGH-A927|\n SGH-B100|SGH-B130|SGH-B200|SGH-B220|SGH-C100|SGH-C110|SGH-C120|SGH-C130|SGH-C140|SGH-C160|SGH-C170|\n SGH-C180|SGH-C200|SGH-C207|SGH-C210|SGH-C225|SGH-C230|SGH-C417|SGH-C450|SGH-D307|SGH-D347|SGH-D357|\n SGH-D407|SGH-D415|SGH-D780|SGH-D807|SGH-D980|SGH-E105|SGH-E200|SGH-E315|SGH-E316|SGH-E317|SGH-E335|\n SGH-E590|SGH-E635|SGH-E715|SGH-E890|SGH-F300|SGH-F480|SGH-I200|SGH-I300|SGH-I320|SGH-I550|SGH-I577|\n SGH-I600|SGH-I607|SGH-I617|SGH-I627|SGH-I637|SGH-I677|SGH-I700|SGH-I717|SGH-I727|SGH-i747M|SGH-I777|\n SGH-I780|SGH-I827|SGH-I847|SGH-I857|SGH-I896|SGH-I897|SGH-I900|SGH-I907|SGH-I917|SGH-I927|SGH-I937|\n SGH-I997|SGH-J150|SGH-J200|SGH-L170|SGH-L700|SGH-M110|SGH-M150|SGH-M200|SGH-N105|SGH-N500|SGH-N600|\n SGH-N620|SGH-N625|SGH-N700|SGH-N710|SGH-P107|SGH-P207|SGH-P300|SGH-P310|SGH-P520|SGH-P735|SGH-P777|\n SGH-Q105|SGH-R210|SGH-R220|SGH-R225|SGH-S105|SGH-S307|SGH-T109|SGH-T119|SGH-T139|SGH-T209|SGH-T219|\n SGH-T229|SGH-T239|SGH-T249|SGH-T259|SGH-T309|SGH-T319|SGH-T329|SGH-T339|SGH-T349|SGH-T359|SGH-T369|\n SGH-T379|SGH-T409|SGH-T429|SGH-T439|SGH-T459|SGH-T469|SGH-T479|SGH-T499|SGH-T509|SGH-T519|SGH-T539|\n SGH-T559|SGH-T589|SGH-T609|SGH-T619|SGH-T629|SGH-T639|SGH-T659|SGH-T669|SGH-T679|SGH-T709|SGH-T719|\n SGH-T729|SGH-T739|SGH-T746|SGH-T749|SGH-T759|SGH-T769|SGH-T809|SGH-T819|SGH-T839|SGH-T919|SGH-T929|\n SGH-T939|SGH-T959|SGH-T989|SGH-U100|SGH-U200|SGH-U800|SGH-V205|SGH-V206|SGH-X100|SGH-X105|SGH-X120|\n SGH-X140|SGH-X426|SGH-X427|SGH-X475|SGH-X495|SGH-X497|SGH-X507|SGH-X600|SGH-X610|SGH-X620|SGH-X630|\n SGH-X700|SGH-X820|SGH-X890|SGH-Z130|SGH-Z150|SGH-Z170|SGH-ZX10|SGH-ZX20|SHW-M110|SPH-A120|SPH-A400|\n SPH-A420|SPH-A460|SPH-A500|SPH-A560|SPH-A600|SPH-A620|SPH-A660|SPH-A700|SPH-A740|SPH-A760|SPH-A790|\n SPH-A800|SPH-A820|SPH-A840|SPH-A880|SPH-A900|SPH-A940|SPH-A960|SPH-D600|SPH-D700|SPH-D710|SPH-D720|\n SPH-I300|SPH-I325|SPH-I330|SPH-I350|SPH-I500|SPH-I600|SPH-I700|SPH-L700|SPH-M100|SPH-M220|SPH-M240|\n SPH-M300|SPH-M305|SPH-M320|SPH-M330|SPH-M350|SPH-M360|SPH-M370|SPH-M380|SPH-M510|SPH-M540|SPH-M550|\n SPH-M560|SPH-M570|SPH-M580|SPH-M610|SPH-M620|SPH-M630|SPH-M800|SPH-M810|SPH-M850|SPH-M900|SPH-M910|\n SPH-M920|SPH-M930|SPH-N100|SPH-N200|SPH-N240|SPH-N300|SPH-N400|SPH-Z400|SWC-E100|SCH-i909|GT-N7100|\n GT-N7105|SCH-I535|SM-N900A|SM-N900T|SGH-I317|SGH-T999L|GT-S5360B|GT-I8262|GT-S6802|GT-S6312|GT-S6310|GT-S5312|\n GT-S5310|GT-I9105|GT-I8510|GT-S6790N|SM-G7105|SM-N9005|GT-S5301|GT-I9295|GT-I9195|SM-C101|GT-S7392|GT-S7560|\n GT-B7610|GT-I5510|GT-S7582|GT-S7530E|GT-I8750|SM-G9006V|SM-G9008V|SM-G9009D|SM-G900A|SM-G900D|SM-G900F|\n SM-G900H|SM-G900I|SM-G900J|SM-G900K|SM-G900L|SM-G900M|SM-G900P|SM-G900R4|SM-G900S|SM-G900T|SM-G900V|\n SM-G900W8|SHV-E160K|SCH-P709|SCH-P729|SM-T2558|GT-I9205|SM-G9350|SM-J120F|SM-G920F|SM-G920V|SM-G930F|\n SM-N910C|SM-A310F|GT-I9190|SM-J500FN|SM-G903F|SM-J330F`),\n LG: new RegExp(`\\\\bLG\\\\b;|LG[- ]?(C800|C900|E400|E610|E900|E-900|F160|F180K|F180L|F180S|730|855|L160|LS740|LS840|LS970|\n LU6200|MS690|MS695|MS770|MS840|MS870|MS910|P500|P700|P705|VM696|AS680|AS695|AX840|C729|E970|GS505|272|\n C395|E739BK|E960|L55C|L75C|LS696|LS860|P769BK|P350|P500|P509|P870|UN272|US730|VS840|VS950|LN272|LN510|\n LS670|LS855|LW690|MN270|MN510|P509|P769|P930|UN200|UN270|UN510|UN610|US670|US740|US760|UX265|UX840|VN271|\n VN530|VS660|VS700|VS740|VS750|VS910|VS920|VS930|VX9200|VX11000|AX840A|LW770|P506|P925|P999|E612|D955|D802|\n MS323|M257)`),\n SONY: /SonyST|SonyLT|SonyEricsson|SonyEricssonLT15iv|LT18i|E10i|LT28h|LT26w|SonyEricssonMT27i|C5303|C6902|C6903|C6906|C6943|D2533/,\n ASUS: /Asus.*Galaxy|PadFone.*Mobile/,\n NOKIA_LUMIA: /Lumia [0-9]{3,4}/,\n MICROMAX:\n /Micromax.*\\b(A210|A92|A88|A72|A111|A110Q|A115|A116|A110|A90S|A26|A51|A35|A54|A25|A27|A89|A68|A65|A57|A90)\\b/,\n PALM: /PalmSource|Palm/,\n VERTU: /Vertu|Vertu.*Ltd|Vertu.*Ascent|Vertu.*Ayxta|Vertu.*Constellation(F|Quest)?|Vertu.*Monika|Vertu.*Signature/,\n PANTECH:\n new RegExp(`PANTECH|IM-A850S|IM-A840S|IM-A830L|IM-A830K|IM-A830S|IM-A820L|IM-A810K|IM-A810S|IM-A800S|IM-T100K|\n IM-A725L|IM-A780L|IM-A775C|IM-A770K|IM-A760S|IM-A750K|IM-A740S|IM-A730S|IM-A720L|IM-A710K|IM-A690L|\n IM-A690S|IM-A650S|IM-A630K|IM-A600S|VEGA PTL21|PT003|P8010|ADR910L|P6030|P6020|P9070|P4100|P9060|P5000|\n CDM8992|TXT8045|ADR8995|IS11PT|P2030|P6010|P8000|PT002|IS06|CDM8999|P9050|PT001|TXT8040|P2020|P9020|\n P2000|P7040|P7000|C790`),\n FLY: /IQ230|IQ444|IQ450|IQ440|IQ442|IQ441|IQ245|IQ256|IQ236|IQ255|IQ235|IQ245|IQ275|IQ240|IQ285|IQ280|IQ270|IQ260|IQ250/,\n WIKO: new RegExp(`KITE 4G|HIGHWAY|GETAWAY|STAIRWAY|DARKSIDE|DARKFULL|DARKNIGHT|DARKMOON|SLIDE|WAX 4G|RAINBOW|BLOOM|\n SUNSET|GOA(?!nna)|LENNY|BARRY|IGGY|OZZY|CINK FIVE|CINK PEAX|CINK PEAX 2|CINK SLIM|CINK SLIM 2|CINK +|\n CINK KING|CINK PEAX|CINK SLIM|SUBLIM`),\n I_MOBILE: /i-mobile (IQ|i-STYLE|idea|ZAA|Hitz)/,\n SIMVALLEY:\n /\\b(SP-80|XT-930|SX-340|XT-930|SX-310|SP-360|SP60|SPT-800|SP-120|SPT-800|SP-140|SPX-5|SPX-8|SP-100|SPX-8|SPX-12)\\b/,\n WOLFGANG: /AT-B24D|AT-AS50HD|AT-AS40W|AT-AS55HD|AT-AS45q2|AT-B26D|AT-AS50Q/,\n ALCATEL: /Alcatel|Mobile; rv:49.0|Mobile; ALCATEL 4052R; rv:48.0/,\n NINTENDO: /Nintendo (3DS|Switch)/,\n AMOI: /Amoi/,\n INQ: /INQ/,\n VITA: /\\bVita\\b/,\n BLACKBERRY: /\\bBlackBerry\\b|\\bBB10\\b|rim[0-9]+/,\n FIREFOX_OS: /\\bFirefox-OS\\b/,\n IPHONE: /\\biPhone\\b/,\n iPod: /\\biPod\\b/,\n ANDROID: /\\bAndroid\\b/,\n WINDOWS_PHONE: /\\bWindows-Phone\\b/,\n GENERIC_PHONE: new RegExp(`Tapatalk|PDA;|SAGEM|\\\\bmmp\\\\b|pocket|\\\\bpsp\\\\b|symbian|Smartphone|smartfon|treo|up.browser|\n up.link|vodafone|\\\\bwap\\\\b|nokia|Nokia|Series40|Series60|S60|SonyEricsson|N900|MAUI.*WAP.*Browser`),\n}\n \n \n\n\n \n \n \n \n \n \n \n \n OS\n \n \n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n WINDOWS: 'Windows',\n MAC: 'Mac',\n IOS: 'iOS',\n ANDROID: 'Android',\n LINUX: 'Linux',\n UNIX: 'Unix',\n FIREFOX_OS: 'Firefox-OS',\n CHROME_OS: 'Chrome-OS',\n WINDOWS_PHONE: 'Windows-Phone',\n UNKNOWN: GENERAL.UKNOWN,\n}\n \n \n\n\n \n \n \n \n \n \n \n \n OS_RE\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Default value : {\n WINDOWS: {\n and: [{ or: [/\\bWindows|(Win\\d\\d)\\b/, /\\bWin 9x\\b/] }, { not: /\\bWindows Phone\\b/ }],\n },\n MAC: {\n and: [/\\bMac OS\\b/, { not: { or: [/\\biPhone\\b/, /\\biPad\\b/, /\\biPod\\b/, /\\bWindows Phone\\b/] } }],\n },\n IOS: {\n and: [{ or: [/\\biPad\\b/, /\\biPhone\\b/, /\\biPod\\b/] }, { not: /\\bWindows Phone\\b/ }],\n },\n ANDROID: { and: [/\\bAndroid\\b/, { not: /\\bWindows Phone\\b/ }] },\n LINUX: /\\bLinux\\b/,\n UNIX: /\\bUNIX\\b/,\n FIREFOX_OS: { and: [/\\bFirefox\\b/, /Mobile\\b/] },\n CHROME_OS: /\\bCrOS\\b/,\n WINDOWS_PHONE: { or: [/\\bIEMobile\\b/, /\\bWindows Phone\\b/] },\n PS4: /\\bMozilla\\/5.0 \\(PlayStation 4\\b/,\n VITA: /\\bMozilla\\/5.0 \\(Play(S|s)tation Vita\\b/,\n}\n \n \n\n\n \n \n \n \n \n \n \n \n OS_VERSIONS\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Default value : {\n WINDOWS_3_11: 'windows-3-11',\n WINDOWS_95: 'windows-95',\n WINDOWS_ME: 'windows-me',\n WINDOWS_98: 'windows-98',\n WINDOWS_CE: 'windows-ce',\n WINDOWS_2000: 'windows-2000',\n WINDOWS_XP: 'windows-xp',\n WINDOWS_SERVER_2003: 'windows-server-2003',\n WINDOWS_VISTA: 'windows-vista',\n WINDOWS_7: 'windows-7',\n WINDOWS_8_1: 'windows-8-1',\n WINDOWS_8: 'windows-8',\n WINDOWS_10: 'windows-10',\n WINDOWS_PHONE_7_5: 'windows-phone-7-5',\n WINDOWS_PHONE_8_1: 'windows-phone-8-1',\n WINDOWS_PHONE_10: 'windows-phone-10',\n WINDOWS_NT_4_0: 'windows-nt-4-0',\n MACOSX_11_0: 'mac-os-x-11-0',\n MACOSX_16: 'mac-os-x-16',\n MACOSX_15: 'mac-os-x-15',\n MACOSX_14: 'mac-os-x-14',\n MACOSX_13: 'mac-os-x-13',\n MACOSX_12: 'mac-os-x-12',\n MACOSX_11: 'mac-os-x-11',\n MACOSX_10: 'mac-os-x-10',\n MACOSX_9: 'mac-os-x-9',\n MACOSX_8: 'mac-os-x-8',\n MACOSX_7: 'mac-os-x-7',\n MACOSX_6: 'mac-os-x-6',\n MACOSX_5: 'mac-os-x-5',\n MACOSX_4: 'mac-os-x-4',\n MACOSX_3: 'mac-os-x-3',\n MACOSX_2: 'mac-os-x-2',\n MACOSX: 'mac-os-x',\n iOS: 'iOS',\n ANDROID_9: 'android-9',\n UNKNOWN: GENERAL.UKNOWN.toLowerCase(),\n}\n \n \n\n\n \n \n \n \n \n \n \n \n OS_VERSIONS_RE\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Default value : Object.keys(OS_VERSIONS_RE_MAP).reduce((obj, key: string) => {\n obj[key] = OS_VERSIONS_RE_MAP[key];\n return obj;\n}, {})\n \n \n\n\n \n \n \n \n \n \n \n \n OS_VERSIONS_RE_MAP\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Default value : {\n WINDOWS_3_11: /Win16/,\n WINDOWS_95: /(Windows 95|Win95|Windows_95)/,\n WINDOWS_ME: /(Win 9x 4.90|Windows ME)/,\n WINDOWS_98: /(Windows 98|Win98)/,\n WINDOWS_CE: /Windows CE/,\n WINDOWS_2000: /(Windows NT 5.0|Windows 2000)/,\n WINDOWS_XP: /(Windows NT 5.1|Windows XP)/,\n WINDOWS_SERVER_2003: /Windows NT 5.2/,\n WINDOWS_VISTA: /Windows NT 6.0/,\n WINDOWS_7: /(Windows 7|Windows NT 6.1)/,\n WINDOWS_8_1: /(Windows 8.1|Windows NT 6.3)/,\n WINDOWS_8: /(Windows 8|Windows NT 6.2)/,\n WINDOWS_10: /(Windows NT 10.0)/,\n WINDOWS_PHONE_7_5: /(Windows Phone OS 7.5)/,\n WINDOWS_PHONE_8_1: /(Windows Phone 8.1)/,\n WINDOWS_PHONE_10: /(Windows Phone 10)/,\n WINDOWS_NT_4_0: {\n and: [/(Windows NT 4.0|WinNT4.0|WinNT|Windows NT)/, { not: /Windows NT 10.0/ }],\n },\n MACOSX: /(MAC OS X\\s*[^ 0-9])/,\n MACOSX_3: /(Darwin 10.3|Mac OS X 10.3)/,\n MACOSX_4: /(Darwin 10.4|Mac OS X 10.4)/,\n MACOSX_5: /(Mac OS X 10.5)/,\n MACOSX_6: /(Mac OS X 10.6)/,\n MACOSX_7: /(Mac OS X 10.7)/,\n MACOSX_8: /(Mac OS X 10.8)/,\n MACOSX_9: /(Mac OS X 10.9)/,\n MACOSX_10: /(Mac OS X 10.10)/,\n MACOSX_11: /(Mac OS X 10.11)/,\n MACOSX_12: /(Mac OS X 10.12)/,\n MACOSX_13: /(Mac OS X 10.13)/,\n MACOSX_14: /(Mac OS X 10.14)/,\n MACOSX_15: /(Mac OS X 10.15)/,\n MACOSX_16: /(Mac OS X 10.16)/,\n MACOSX_11_0: {\n or: [/11_0 like Mac OS X/, /Mac OS X 11/],\n },\n iOS: /(iPhone OS\\s*[0-9_]+)/,\n ANDROID_9: /(Android 9)/,\n}\n \n \n\n\n \n \n \n \n \n \n \n \n TABLETS_RE\n \n \n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n iPad: /iPad|iPad.*Mobile/,\n NexusTablet: /Android.*Nexus[\\s]+(7|9|10)/,\n GoogleTablet: /Android.*Pixel C/,\n SamsungTablet: new RegExp(`SAMSUNG.*Tablet|Galaxy.*Tab|SC-01C|GT-P1000|GT-P1003|GT-P1010|GT-P3105|GT-P6210|\n GT-P6800|GT-P6810|GT-P7100|GT-P7300|GT-P7310|GT-P7500|GT-P7510|SCH-I800|SCH-I815|SCH-I905|\n SGH-I957|SGH-I987|SGH-T849|SGH-T859|SGH-T869|SPH-P100|GT-P3100|GT-P3108|GT-P3110|GT-P5100|\n GT-P5110|GT-P6200|GT-P7320|GT-P7511|GT-N8000|GT-P8510|SGH-I497|SPH-P500|SGH-T779|SCH-I705|\n SCH-I915|GT-N8013|GT-P3113|GT-P5113|GT-P8110|GT-N8010|GT-N8005|GT-N8020|GT-P1013|GT-P6201|\n GT-P7501|GT-N5100|GT-N5105|GT-N5110|SHV-E140K|SHV-E140L|SHV-E140S|SHV-E150S|SHV-E230K|SHV-E230L|\n SHV-E230S|SHW-M180K|SHW-M180L|SM-T865|SM-T290|SHW-M180S|SHW-M180W|SHW-M300W|SHW-M305W|SHW-M380K|SHW-M380S|SHW-M380W|\n SHW-M430W|SHW-M480K|SHW-M480S|SHW-M480W|SHW-M485W|SHW-M486W|SHW-M500W|GT-I9228|SCH-P739|SCH-I925|\n GT-I9200|GT-P5200|GT-P5210|GT-P5210X|SM-T385M|SM-P585M|SM-T311|SM-T310|SM-T310X|SM-T210|SM-T210R|SM-T211|SM-P600|\n SM-P601|SM-P605|SM-P615|SM-P900|SM-P901|SM-T217|SM-T217A|SM-T217S|SM-P6000|SM-T3100|SGH-I467|XE500|SM-T110|\n GT-P5220|GT-I9200X|GT-N5110X|GT-N5120|SM-P905|SM-T111|SM-T2105|SM-T315|SM-T320|SM-T320X|SM-T321|\n SM-T510|SM-T520|SM-T525|SM-T530NU|SM-T230NU|SM-T330NU|SM-T900|XE500T1C|SM-P605V|SM-P905V|SM-T337V|SM-T537V|\n SM-T707V|SM-T807V|SM-P600X|SM-P900X|SM-T210X|SM-T230|SM-T230X|SM-T325|GT-P7503|SM-T531|SM-T500|SM-T330|\n SM-T530|SM-T705|SM-T705C|SM-T535|SM-T331|SM-T800|SM-T700|SM-T537|SM-T807|SM-P907A|SM-T337A|SM-T537A|\n SM-T707A|SM-T807A|SM-T237|SM-T807P|SM-P607T|SM-T217T|SM-T337T|SM-T807T|SM-T116NQ|SM-T116BU|SM-P550|\n SM-T350|SM-T550|SM-T9000|SM-P9000|SM-T705Y|SM-T805|GT-P3113|SM-T710|SM-T810|SM-T815|SM-T360|SM-T533|\n SM-T113|SM-T335|SM-T715|SM-T560|SM-T670|SM-T677|SM-T377|SM-T567|SM-T357T|SM-T555|SM-T561|SM-T713|\n SM-T719|SM-T725|SM-T813|SM-T819|SM-T580|SM-T590|SM-T355Y?|SM-T280|SM-T817A|SM-T820|SM-W700|SM-P580|SM-T587|SM-P350|\n SM-P555M|SM-P355M|SM-T113NU|SM-T815Y|SM-T585|SM-T285|SM-T825|SM-W708|SM-T835|SM-P585Y|SM-X200`),\n Kindle: new RegExp(`Kindle|Silk.*Accelerated|Android.*\\\\b(KFOT|KFTT|KFJWI|KFJWA|KFOTE|KFSOWI|KFTHWI|KFTHWA|KFAPWI|\n KFAPWA|WFJWAE|KFSAWA|KFSAWI|KFASWI|KFARWI|KFFOWI|KFGIWI|KFMEWI)\\\\b|Android.*Silk\\/[0-9.]+ like Chrome\\\n /[0-9.]+ (?!Mobile)`),\n SurfaceTablet: /Windows NT [0-9.]+; ARM;.*(Tablet|ARMBJS)/,\n HPTablet: /HP Slate (7|8|10)|HP ElitePad 900|hp-tablet|EliteBook.*Touch|HP 8|Slate 21|HP SlateBook 10/,\n AsusTablet: new RegExp(`^.*PadFone((?!Mobile).)*$|Transformer|TF101|TF101G|TF300T|TF300TG|TF300TL|TF700T|TF700KL|\n TF701T|TF810C|ME171|ME301T|ME302C|ME371MG|ME370T|ME372MG|ME172V|ME173X|ME400C|\n Slider SL101|\\\\bK00F\\\\b|\\\\bK00C\\\\b|\\\\bK00E\\\\b|\\\\bK00L\\\\b|TX201LA|ME176C|ME102A|\\\\bM80TA\\\\b|ME372CL|\n ME560CG|ME372CG|ME302KL| K010 | K011 | K017 | K01E |ME572C|ME103K|ME170C|ME171C|\\\\bME70C\\\\b|ME581C|\n ME581CL|ME8510C|ME181C|P01Y|PO1MA|P01Z|\\\\bP027\\\\b|\\\\bP024\\\\b|\\\\bP00C\\\\b`),\n BlackBerryTablet: /PlayBook|RIM Tablet/,\n HTCtablet: /HTC_Flyer_P512|HTC Flyer|HTC Jetstream|HTC-P715a|HTC EVO View 4G|PG41200|PG09410/,\n MotorolaTablet: /xoom|sholest|MZ615|MZ605|MZ505|MZ601|MZ602|MZ603|MZ604|MZ606|MZ607|MZ608|MZ609|MZ615|MZ616|MZ617/,\n NookTablet: /Android.*Nook|NookColor|nook browser|BNRV200|BNRV200A|BNTV250|BNTV250A|BNTV400|BNTV600|LogicPD Zoom2/,\n AcerTablet: new RegExp(`Android.*; \\\\b(A100|A101|A110|A200|A210|A211|A500|A501|A510|A511|A700|A701|W500|W500P|W501|\n W501P|W510|W511|W700|G100|G100W|B1-A71|B1-710|B1-711|A1-810|A1-811|A1-830)\\\\b|W3-810|\\\\bA3-A10\\\\b|\\\\bA3-A11\\\\b|\n \\\\bA3-A20\\\\b|\\\\bA3-A30`),\n ToshibaTablet:\n /Android.*(AT100|AT105|AT200|AT205|AT270|AT275|AT300|AT305|AT1S5|AT500|AT570|AT700|AT830)|TOSHIBA.*FOLIO/,\n LGTablet: /\\bL-06C|LG-V909|LG-V900|LG-V700|LG-V510|LG-V500|LG-V410|LG-V400|LG-VK810\\b/,\n FujitsuTablet: /Android.*\\b(F-01D|F-02F|F-05E|F-10D|M532|Q572)\\b/,\n PrestigioTablet: new RegExp(`PMP3170B|PMP3270B|PMP3470B|PMP7170B|PMP3370B|PMP3570C|PMP5870C|PMP3670B|PMP5570C|\n PMP5770D|PMP3970B|PMP3870C|PMP5580C|PMP5880D|PMP5780D|PMP5588C|PMP7280C|PMP7280C3G|PMP7280|PMP7880D|\n PMP5597D|PMP5597|PMP7100D|PER3464|PER3274|PER3574|PER3884|PER5274|PER5474|PMP5097CPRO|PMP5097|PMP7380D|\n PMP5297C|PMP5297C_QUAD|PMP812E|PMP812E3G|PMP812F|PMP810E|PMP880TD|PMT3017|PMT3037|PMT3047|PMT3057|PMT7008|\n PMT5887|PMT5001|PMT5002`),\n LenovoTablet: new RegExp(`Lenovo TAB|Idea(Tab|Pad)( A1|A10| K1|)|ThinkPad([ ]+)?Tablet|YT3-850M|YT3-X90L|YT3-X90F|\n YT3-X90X|Lenovo.*(S2109|S2110|S5000|S6000|K3011|A3000|A3500|A1000|A2107|A2109|A1107|A5500|A7600|B6000|\n B8000|B8080)(-|)(FL|F|HV|H|)|TB-X606F|TB-X103F|TB-X304F|TB-X304L|TB-X704F|TB-8703F|Tab2A7-10F|TB2-X30L|TB-8504F`),\n DellTablet: /Venue 11|Venue 8|Venue 7|Dell Streak 10|Dell Streak 7/,\n YarvikTablet: new RegExp(`Android.*\\\\b(TAB210|TAB211|TAB224|TAB250|TAB260|TAB264|TAB310|TAB360|TAB364|TAB410|TAB411|\n TAB420|TAB424|TAB450|TAB460|TAB461|TAB464|TAB465|TAB467|TAB468|TAB07-100|TAB07-101|TAB07-150|TAB07-151|\n TAB07-152|TAB07-200|TAB07-201-3G|TAB07-210|TAB07-211|TAB07-212|TAB07-214|TAB07-220|TAB07-400|TAB07-485|\n TAB08-150|TAB08-200|TAB08-201-3G|TAB08-201-30|TAB09-100|TAB09-211|TAB09-410|TAB10-150|TAB10-201|TAB10-211|\n TAB10-400|TAB10-410|TAB13-201|TAB274EUK|TAB275EUK|TAB374EUK|TAB462EUK|TAB474EUK|TAB9-200)\\\\b`),\n MedionTablet: /Android.*\\bOYO\\b|LIFE.*(P9212|P9514|P9516|S9512)|LIFETAB/,\n ArnovaTablet:\n /97G4|AN10G2|AN7bG3|AN7fG3|AN8G3|AN8cG3|AN7G3|AN9G3|AN7dG3|AN7dG3ST|AN7dG3ChildPad|AN10bG3|AN10bG3DT|AN9G2/,\n IntensoTablet: /INM8002KP|INM1010FP|INM805ND|Intenso Tab|TAB1004/,\n IRUTablet: /M702pro/,\n MegafonTablet: /MegaFon V9|\\bZTE V9\\b|Android.*\\bMT7A\\b/,\n EbodaTablet: /E-Boda (Supreme|Impresspeed|Izzycomm|Essential)/,\n AllViewTablet: /Allview.*(Viva|Alldro|City|Speed|All TV|Frenzy|Quasar|Shine|TX1|AX1|AX2)/,\n ArchosTablet:\n new RegExp(`\\\\b(101G9|80G9|A101IT)\\\\b|Qilive 97R|Archos5|\\\\bARCHOS (70|79|80|90|97|101|FAMILYPAD|)(b|c|)(G10|\n Cobalt| TITANIUM(HD|)| Xenon| Neon|XSK| 2| XS 2| PLATINUM| CARBON|GAMEPAD)\\\\b`),\n AinolTablet: /NOVO7|NOVO8|NOVO10|Novo7Aurora|Novo7Basic|NOVO7PALADIN|novo9-Spark/,\n NokiaLumiaTablet: /Lumia 2520/,\n SonyTablet: new RegExp(`Sony.*Tablet|Xperia Tablet|Sony Tablet S|SO-03E|SGPT12|SGPT13|SGPT114|SGPT121|SGPT122|SGPT123|\n SGPT111|SGPT112|SGPT113|SGPT131|SGPT132|SGPT133|SGPT211|SGPT212|SGPT213|SGP311|SGP312|SGP321|EBRD1101|\n EBRD1102|EBRD1201|SGP351|SGP341|SGP511|SGP512|SGP521|SGP541|SGP551|SGP621|SGP641|SGP612|SOT31|SGP771|SGP611|\n SGP612|SGP712`),\n PhilipsTablet: /\\b(PI2010|PI3000|PI3100|PI3105|PI3110|PI3205|PI3210|PI3900|PI4010|PI7000|PI7100)\\b/,\n CubeTablet: /Android.*(K8GT|U9GT|U10GT|U16GT|U17GT|U18GT|U19GT|U20GT|U23GT|U30GT)|CUBE U8GT/,\n CobyTablet:\n new RegExp(`MID1042|MID1045|MID1125|MID1126|MID7012|MID7014|MID7015|MID7034|MID7035|MID7036|MID7042|MID7048|\n MID7127|MID8042|MID8048|MID8127|MID9042|MID9740|MID9742|MID7022|MID7010`),\n MIDTablet: new RegExp(`M9701|M9000|M9100|M806|M1052|M806|T703|MID701|MID713|MID710|MID727|MID760|MID830|MID728|MID933|\n MID125|MID810|MID732|MID120|MID930|MID800|MID731|MID900|MID100|MID820|MID735|MID980|MID130|MID833|MID737|\n MID960|MID135|MID860|MID736|MID140|MID930|MID835|MID733|MID4X10`),\n MSITablet: new RegExp(`MSI \\\\b(Primo 73K|Primo 73L|Primo 81L|Primo 77|Primo 93|Primo 75|Primo 76|Primo 73|Primo 81|\n Primo 91|Primo 90|Enjoy 71|Enjoy 7|Enjoy 10)\\\\b`),\n SMiTTablet: /Android.*(\\bMID\\b|MID-560|MTV-T1200|MTV-PND531|MTV-P1101|MTV-PND530)/,\n RockChipTablet: /Android.*(RK2818|RK2808A|RK2918|RK3066)|RK2738|RK2808A/,\n FlyTablet: /IQ310|Fly Vision/,\n bqTablet: new RegExp(`Android.*(bq)?.*(Elcano|Curie|Edison|Maxwell|Kepler|Pascal|Tesla|Hypatia|Platon|Newton|\n Livingstone|Cervantes|Avant|Aquaris ([E|M]10|M8))|Maxwell.*Lite|Maxwell.*Plus`),\n HuaweiTablet:\n new RegExp(`MediaPad|MediaPad 7 Youth|MediaPad T3 10|IDEOS S7|S7-201c|S7-202u|S7-101|S7-103|S7-104|S7-105|S7-106|\n S7-201|S7-Slim|M2-A01L|BAH-L09|BAH-W09|AGS-W09`),\n NecTablet: /\\bN-06D|\\bN-08D/,\n PantechTablet: /Pantech.*P4100/,\n BronchoTablet: /Broncho.*(N701|N708|N802|a710)/,\n VersusTablet: /TOUCHPAD.*[78910]|\\bTOUCHTAB\\b/,\n ZyncTablet: /z1000|Z99 2G|z99|z930|z999|z990|z909|Z919|z900/,\n PositivoTablet: /TB07STA|TB10STA|TB07FTA|TB10FTA/,\n NabiTablet: /Android.*\\bNabi/,\n KoboTablet: /Kobo Touch|\\bK080\\b|\\bVox\\b Build|\\bArc\\b Build/,\n DanewTablet: /DSlide.*\\b(700|701R|702|703R|704|802|970|971|972|973|974|1010|1012)\\b/,\n TexetTablet: new RegExp(`NaviPad|TB-772A|TM-7045|TM-7055|TM-9750|TM-7016|TM-7024|TM-7026|TM-7041|TM-7043|TM-7047|\n TM-8041|TM-9741|TM-9747|TM-9748|TM-9751|TM-7022|TM-7021|TM-7020|TM-7011|TM-7010|TM-7023|TM-7025|\n TM-7037W|TM-7038W|TM-7027W|TM-9720|TM-9725|TM-9737W|TM-1020|TM-9738W|TM-9740|TM-9743W|TB-807A|TB-771A|\n TB-727A|TB-725A|TB-719A|TB-823A|TB-805A|TB-723A|TB-715A|TB-707A|TB-705A|TB-709A|TB-711A|TB-890HD|\n TB-880HD|TB-790HD|TB-780HD|TB-770HD|TB-721HD|TB-710HD|TB-434HD|TB-860HD|TB-840HD|TB-760HD|TB-750HD|\n TB-740HD|TB-730HD|TB-722HD|TB-720HD|TB-700HD|TB-500HD|TB-470HD|TB-431HD|TB-430HD|TB-506|TB-504|TB-446|\n TB-436|TB-416|TB-146SE|TB-126SE`),\n PlaystationTablet: /Playstation.*(Portable|Vita)/,\n TrekstorTablet:\n /ST10416-1|VT10416-1|ST70408-1|ST702xx-1|ST702xx-2|ST80208|ST97216|ST70104-2|VT10416-2|ST10216-2A|SurfTab/,\n PyleAudioTablet:\n /\\b(PTBL10CEU|PTBL10C|PTBL72BC|PTBL72BCEU|PTBL7CEU|PTBL7C|PTBL92BC|PTBL92BCEU|PTBL9CEU|PTBL9CUK|PTBL9C)\\b/,\n AdvanTablet: new RegExp(`Android.* \\\\b(E3A|T3X|T5C|T5B|T3E|T3C|T3B|T1J|T1F|T2A|T1H|T1i|E1C|T1-E|T5-A|T4|E1-B|T2Ci|\n T1-B|T1-D|O1-A|E1-A|T1-A|T3A|T4i)\\\\b`),\n DanyTechTablet: `Genius Tab G3|Genius Tab S2|Genius Tab Q3|Genius Tab G4|Genius Tab Q4|Genius Tab G-II|\n Genius TAB GII|Genius TAB GIII|Genius Tab S1`,\n GalapadTablet: /Android.*\\bG1\\b(?!\\))/,\n MicromaxTablet: /Funbook|Micromax.*\\b(P250|P560|P360|P362|P600|P300|P350|P500|P275)\\b/,\n KarbonnTablet: /Android.*\\b(A39|A37|A34|ST8|ST10|ST7|Smart Tab3|Smart Tab2)\\b/,\n AllFineTablet: /Fine7 Genius|Fine7 Shine|Fine7 Air|Fine8 Style|Fine9 More|Fine10 Joy|Fine11 Wide/,\n PROSCANTablet: new RegExp(`\\\\b(PEM63|PLT1023G|PLT1041|PLT1044|PLT1044G|PLT1091|PLT4311|PLT4311PL|PLT4315|PLT7030|\n PLT7033|PLT7033D|PLT7035|PLT7035D|PLT7044K|PLT7045K|PLT7045KB|PLT7071KG|PLT7072|PLT7223G|PLT7225G|\n PLT7777G|PLT7810K|PLT7849G|PLT7851G|PLT7852G|PLT8015|PLT8031|PLT8034|PLT8036|PLT8080K|PLT8082|PLT8088|\n PLT8223G|PLT8234G|PLT8235G|PLT8816K|PLT9011|PLT9045K|PLT9233G|PLT9735|PLT9760G|PLT9770G)\\\\b`),\n YONESTablet: /BQ1078|BC1003|BC1077|RK9702|BC9730|BC9001|IT9001|BC7008|BC7010|BC708|BC728|BC7012|BC7030|BC7027|BC7026/,\n ChangJiaTablet: new RegExp(`TPC7102|TPC7103|TPC7105|TPC7106|TPC7107|TPC7201|TPC7203|TPC7205|TPC7210|TPC7708|TPC7709|\n TPC7712|TPC7110|TPC8101|TPC8103|TPC8105|TPC8106|TPC8203|TPC8205|TPC8503|TPC9106|TPC9701|TPC97101|TPC97103|\n TPC97105|TPC97106|TPC97111|TPC97113|TPC97203|TPC97603|TPC97809|TPC97205|TPC10101|TPC10103|TPC10106|\n TPC10111|TPC10203|TPC10205|TPC10503`),\n GUTablet: /TX-A1301|TX-M9002|Q702|kf026/,\n PointOfViewTablet: new RegExp(`TAB-P506|TAB-navi-7-3G-M|TAB-P517|TAB-P-527|TAB-P701|TAB-P703|TAB-P721|TAB-P731N|\n TAB-P741|TAB-P825|TAB-P905|TAB-P925|TAB-PR945|TAB-PL1015|TAB-P1025|TAB-PI1045|TAB-P1325|TAB-PROTAB[0-9]+|\n TAB-PROTAB25|TAB-PROTAB26|TAB-PROTAB27|TAB-PROTAB26XL|TAB-PROTAB2-IPS9|TAB-PROTAB30-IPS9|TAB-PROTAB25XXL|\n TAB-PROTAB26-IPS10|TAB-PROTAB30-IPS10`),\n OvermaxTablet:\n new RegExp(`OV-(SteelCore|NewBase|Basecore|Baseone|Exellen|Quattor|EduTab|Solution|ACTION|BasicTab|TeddyTab|\n MagicTab|Stream|TB-08|TB-09)|Qualcore 1027`),\n HCLTablet:\n /HCL.*Tablet|Connect-3G-2.0|Connect-2G-2.0|ME Tablet U1|ME Tablet U2|ME Tablet G1|ME Tablet X1|ME Tablet Y2|ME Tablet Sync/,\n DPSTablet: /DPS Dream 9|DPS Dual 7/,\n VistureTablet: /V97 HD|i75 3G|Visture V4( HD)?|Visture V5( HD)?|Visture V10/,\n CrestaTablet:\n /CTP(-)?810|CTP(-)?818|CTP(-)?828|CTP(-)?838|CTP(-)?888|CTP(-)?978|CTP(-)?980|CTP(-)?987|CTP(-)?988|CTP(-)?989/,\n MediatekTablet: /\\bMT8125|MT8389|MT8135|MT8377\\b/,\n ConcordeTablet: /Concorde([ ]+)?Tab|ConCorde ReadMan/,\n GoCleverTablet:\n new RegExp(`GOCLEVER TAB|A7GOCLEVER|M1042|M7841|M742|R1042BK|R1041|TAB A975|TAB A7842|TAB A741|TAB A741L|TAB M723G|\n TAB M721|TAB A1021|TAB I921|TAB R721|TAB I720|TAB T76|TAB R70|TAB R76.2|TAB R106|TAB R83.2|TAB M813G|TAB I721|\n GCTA722|TAB I70|TAB I71|TAB S73|TAB R73|TAB R74|TAB R93|TAB R75|TAB R76.1|TAB A73|TAB A93|TAB A93.2|TAB T72|\n TAB R83|TAB R974|TAB R973|TAB A101|TAB A103|TAB A104|TAB A104.2|R105BK|M713G|A972BK|TAB A971|TAB R974.2|\n TAB R104|TAB R83.3|TAB A1042`),\n ModecomTablet: new RegExp(`FreeTAB 9000|FreeTAB 7.4|FreeTAB 7004|FreeTAB 7800|FreeTAB 2096|FreeTAB 7.5|FreeTAB 1014|\n FreeTAB 1001 |FreeTAB 8001|FreeTAB 9706|FreeTAB 9702|FreeTAB 7003|FreeTAB 7002|FreeTAB 1002|FreeTAB 7801|\n FreeTAB 1331|FreeTAB 1004|FreeTAB 8002|FreeTAB 8014|FreeTAB 9704|FreeTAB 1003`),\n VoninoTablet: new RegExp(`\\\\b(Argus[ _]?S|Diamond[ _]?79HD|Emerald[ _]?78E|Luna[ _]?70C|Onyx[ _]?S|Onyx[ _]?Z|\n Orin[ _]?HD|Orin[ _]?S|Otis[ _]?S|SpeedStar[ _]?S|Magnet[ _]?M9|Primus[ _]?94[ _]?3G|Primus[ _]?94HD|\n Primus[ _]?QS|Android.*\\\\bQ8\\\\b|Sirius[ _]?EVO[ _]?QS|Sirius[ _]?QS|Spirit[ _]?S)\\\\b`),\n ECSTablet: /V07OT2|TM105A|S10OT1|TR10CS1/,\n StorexTablet: /eZee[_']?(Tab|Go)[0-9]+|TabLC7|Looney Tunes Tab/,\n VodafoneTablet: /SmartTab([ ]+)?[0-9]+|SmartTabII10|SmartTabII7|VF-1497/,\n EssentielBTablet: /Smart[ ']?TAB[ ]+?[0-9]+|Family[ ']?TAB2/,\n RossMoorTablet: /RM-790|RM-997|RMD-878G|RMD-974R|RMT-705A|RMT-701|RME-601|RMT-501|RMT-711/,\n iMobileTablet: /i-mobile i-note/,\n TolinoTablet: /tolino tab [0-9.]+|tolino shine/,\n AudioSonicTablet: /\\bC-22Q|T7-QC|T-17B|T-17P\\b/,\n AMPETablet: /Android.* A78 /,\n SkkTablet: /Android.* (SKYPAD|PHOENIX|CYCLOPS)/,\n TecnoTablet: /TECNO P9|TECNO DP8D/,\n JXDTablet:\n new RegExp(`Android.* \\\\b(F3000|A3300|JXD5000|JXD3000|JXD2000|JXD300B|JXD300|S5800|S7800|S602b|S5110b|S7300|\n S5300|S602|S603|S5100|S5110|S601|S7100a|P3000F|P3000s|P101|P200s|P1000m|P200m|P9100|P1000s|S6600b|S908|\n P1000|P300|S18|S6600|S9100)\\\\b`),\n iJoyTablet: new RegExp(`Tablet (Spirit 7|Essentia|Galatea|Fusion|Onix 7|Landa|Titan|Scooby|Deox|Stella|Themis|Argon|\n Unique 7|Sygnus|Hexen|Finity 7|Cream|Cream X2|Jade|Neon 7|Neron 7|Kandy|Scape|Saphyr 7|Rebel|Biox|Rebel|\n Rebel 8GB|Myst|Draco 7|Myst|Tab7-004|Myst|Tadeo Jones|Tablet Boing|Arrow|Draco Dual Cam|Aurix|Mint|Amity|\n Revolution|Finity 9|Neon 9|T9w|Amity 4GB Dual Cam|Stone 4GB|Stone 8GB|Andromeda|Silken|X2|Andromeda II|\n Halley|Flame|Saphyr 9,7|Touch 8|Planet|Triton|Unique 10|Hexen 10|Memphis 4GB|Memphis 8GB|Onix 10)`),\n FX2Tablet: /FX2 PAD7|FX2 PAD10/,\n XoroTablet: new RegExp(`KidsPAD 701|PAD[ ]?712|PAD[ ]?714|PAD[ ]?716|PAD[ ]?717|PAD[ ]?718|PAD[ ]?720|PAD[ ]?721|\n PAD[ ]?722|PAD[ ]?790|PAD[ ]?792|PAD[ ]?900|PAD[ ]?9715D|PAD[ ]?9716DR|PAD[ ]?9718DR|PAD[ ]?9719QR|\n PAD[ ]?9720QR|TelePAD1030|Telepad1032|TelePAD730|TelePAD731|TelePAD732|TelePAD735Q|TelePAD830|TelePAD9730|\n TelePAD795|MegaPAD 1331|MegaPAD 1851|MegaPAD 2151`),\n ViewsonicTablet:\n /ViewPad 10pi|ViewPad 10e|ViewPad 10s|ViewPad E72|ViewPad7|ViewPad E100|ViewPad 7e|ViewSonic VB733|VB100a/,\n VerizonTablet: /QTAQZ3|QTAIR7|QTAQTZ3|QTASUN1|QTASUN2|QTAXIA1/,\n OdysTablet:\n /LOOX|XENO10|ODYS[ -](Space|EVO|Xpress|NOON)|\\bXELIO\\b|Xelio10Pro|XELIO7PHONETAB|XELIO10EXTREME|XELIOPT2|NEO_QUAD10/,\n CaptivaTablet: /CAPTIVA PAD/,\n IconbitTablet: new RegExp(`NetTAB|NT-3702|NT-3702S|NT-3702S|NT-3603P|NT-3603P|NT-0704S|NT-0704S|NT-3805C|NT-3805C|\n NT-0806C|NT-0806C|NT-0909T|NT-0909T|NT-0907S|NT-0907S|NT-0902S|NT-0902S`),\n TeclastTablet: new RegExp(`T98 4G|\\\\bP80\\\\b|\\\\bX90HD\\\\b|X98 Air|X98 Air 3G|\\\\bX89\\\\b|P80 3G|\\\\bX80h\\\\b|P98 Air|\n \\\\bX89HD\\\\b|P98 3G|\\\\bP90HD\\\\b|P89 3G|X98 3G|\\\\bP70h\\\\b|P79HD 3G|G18d 3G|\\\\bP79HD\\\\b|\\\\bP89s\\\\b|\\\\bA88\\\\b|\n \\\\bP10HD\\\\b|\\\\bP19HD\\\\b|G18 3G|\\\\bP78HD\\\\b|\\\\bA78\\\\b|\\\\bP75\\\\b|G17s 3G|G17h 3G|\\\\bP85t\\\\b|\\\\bP90\\\\b|\n \\\\bP11\\\\b|\\\\bP98t\\\\b|\\\\bP98HD\\\\b|\\\\bG18d\\\\b|\\\\bP85s\\\\b|\\\\bP11HD\\\\b|\\\\bP88s\\\\b|\\\\bA80HD\\\\b|\\\\bA80se\\\\b|\n \\\\bA10h\\\\b|\\\\bP89\\\\b|\\\\bP78s\\\\b|\\\\bG18\\\\b|\\\\bP85\\\\b|\\\\bA70h\\\\b|\\\\bA70\\\\b|\\\\bG17\\\\b|\\\\bP18\\\\b|\\\\bA80s\\\\b|\n \\\\bA11s\\\\b|\\\\bP88HD\\\\b|\\\\bA80h\\\\b|\\\\bP76s\\\\b|\\\\bP76h\\\\b|\\\\bP98\\\\b|\\\\bA10HD\\\\b|\\\\bP78\\\\b|\\\\bP88\\\\b|\\\\bA11\\\\b|\n \\\\bA10t\\\\b|\\\\bP76a\\\\b|\\\\bP76t\\\\b|\\\\bP76e\\\\b|\\\\bP85HD\\\\b|\\\\bP85a\\\\b|\\\\bP86\\\\b|\\\\bP75HD\\\\b|\\\\bP76v\\\\b|\\\\bA12\\\\b|\n \\\\bP75a\\\\b|\\\\bA15\\\\b|\\\\bP76Ti\\\\b|\\\\bP81HD\\\\b|\\\\bA10\\\\b|\\\\bT760VE\\\\b|\\\\bT720HD\\\\b|\\\\bP76\\\\b|\\\\bP73\\\\b|\\\\bP71\\\\b|\n \\\\bP72\\\\b|\\\\bT720SE\\\\b|\\\\bC520Ti\\\\b|\\\\bT760\\\\b|\\\\bT720VE\\\\b|T720-3GE|T720-WiFi`),\n OndaTablet: new RegExp(`\\\\b(V975i|Vi30|VX530|V701|Vi60|V701s|Vi50|V801s|V719|Vx610w|VX610W|V819i|Vi10|VX580W|Vi10|\n V711s|V813|V811|V820w|V820|Vi20|V711|VI30W|V712|V891w|V972|V819w|V820w|Vi60|V820w|V711|V813s|V801|V819|\n V975s|V801|V819|V819|V818|V811|V712|V975m|V101w|V961w|V812|V818|V971|V971s|V919|V989|V116w|V102w|V973|\n Vi40)\\\\b[\\s]+|V10 \\\\b4G\\\\b`),\n JaytechTablet: /TPC-PA762/,\n BlaupunktTablet: /Endeavour 800NG|Endeavour 1010/,\n DigmaTablet: /\\b(iDx10|iDx9|iDx8|iDx7|iDxD7|iDxD8|iDsQ8|iDsQ7|iDsQ8|iDsD10|iDnD7|3TS804H|iDsQ11|iDj7|iDs10)\\b/,\n EvolioTablet: /ARIA_Mini_wifi|Aria[ _]Mini|Evolio X10|Evolio X7|Evolio X8|\\bEvotab\\b|\\bNeura\\b/,\n LavaTablet: /QPAD E704|\\bIvoryS\\b|E-TAB IVORY|\\bE-TAB\\b/,\n AocTablet: /MW0811|MW0812|MW0922|MTK8382|MW1031|MW0831|MW0821|MW0931|MW0712/,\n MpmanTablet: new RegExp(`MP11 OCTA|MP10 OCTA|MPQC1114|MPQC1004|MPQC994|MPQC974|MPQC973|MPQC804|MPQC784|MPQC780|\n \\\\bMPG7\\\\b|MPDCG75|MPDCG71|MPDC1006|MP101DC|MPDC9000|MPDC905|MPDC706HD|MPDC706|MPDC705|MPDC110|\n MPDC100|MPDC99|MPDC97|MPDC88|MPDC8|MPDC77|MP709|MID701|MID711|MID170|MPDC703|MPQC1010`),\n CelkonTablet: /CT695|CT888|CT[\\s]?910|CT7 Tab|CT9 Tab|CT3 Tab|CT2 Tab|CT1 Tab|C820|C720|\\bCT-1\\b/,\n WolderTablet: new RegExp(`miTab \\\\b(DIAMOND|SPACE|BROOKLYN|NEO|FLY|MANHATTAN|FUNK|EVOLUTION|SKY|GOCAR|IRON|GENIUS|\n POP|MINT|EPSILON|BROADWAY|JUMP|HOP|LEGEND|NEW AGE|LINE|ADVANCE|FEEL|FOLLOW|LIKE|LINK|LIVE|THINK|\n FREEDOM|CHICAGO|CLEVELAND|BALTIMORE-GH|IOWA|BOSTON|SEATTLE|PHOENIX|DALLAS|IN 101|MasterChef)\\\\b`),\n MediacomTablet: 'M-MPI10C3G|M-SP10EG|M-SP10EGP|M-SP10HXAH|M-SP7HXAH|M-SP10HXBH|M-SP8HXAH|M-SP8MXA',\n MiTablet: /\\bMI PAD\\b|\\bHM NOTE 1W\\b/,\n NibiruTablet: /Nibiru M1|Nibiru Jupiter One/,\n NexoTablet: /NEXO NOVA|NEXO 10|NEXO AVIO|NEXO FREE|NEXO GO|NEXO EVO|NEXO 3G|NEXO SMART|NEXO KIDDO|NEXO MOBI/,\n LeaderTablet: new RegExp(`TBLT10Q|TBLT10I|TBL-10WDKB|TBL-10WDKBO2013|TBL-W230V2|TBL-W450|TBL-W500|SV572|TBLT7I|\n TBA-AC7-8G|TBLT79|TBL-8W16|TBL-10W32|TBL-10WKB|TBL-W100`),\n UbislateTablet: /UbiSlate[\\s]?7C/,\n PocketBookTablet: /Pocketbook/,\n KocasoTablet: /\\b(TB-1207)\\b/,\n HisenseTablet: /\\b(F5281|E2371)\\b/,\n Hudl: /Hudl HT7S3|Hudl 2/,\n TelstraTablet: /T-Hub2/,\n Honeywell: /RT10A/,\n GenericTablet: new RegExp(`Android.*\\\\b97D\\\\b|Tablet(?!.*PC)|BNTV250A|MID-WCDMA|LogicPD Zoom2|\\\\bA7EB\\\\b|CatNova8|\n A1_07|CT704|CT1002|\\\\bM721\\\\b|rk30sdk|\\\\bEVOTAB\\\\b|M758A|ET904|ALUMIUM10|Smartfren Tab|Endeavour 1010|\n Tablet-PC-4|Tagi Tab|\\\\bM6pro\\\\b|CT1020W|arc 10HD|\\\\bTP750\\\\b|\\\\bQTAQZ3\\\\b|WVT101|TM1088|KT107`),\n}\n \n \n\n\n \n \n\n projects/ngx-device-detector/src/lib/device-detector.service.ts\n \n \n \n \n \n \n \n iPad\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : 'iPad'\n \n \n\n\n \n \n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"}} + "index": {"version":"2.3.9","fields":["title","body"],"fieldVectors":[["title/components/AppComponent.html",[0,1.438,1,1.105]],["body/components/AppComponent.html",[0,1.902,1,1.604,2,3.183,3,1.126,4,0.659,5,2.192,6,2.192,7,2.192,8,2.192,9,0.5,10,1.768,11,1.768,12,3.022,13,2.549,14,2.187,15,2.567,16,3.747,17,2.567,18,3.183,19,0.576,20,1.242,21,1.462,22,3.747,23,2.187,24,3.747,25,2.81,26,1.242,27,3.183,28,2.4,29,4.111,30,3.183,31,2.743,32,2.743,33,2.743,34,1.113,35,2.192,36,1.409,37,2.268,38,3.183,39,1.616,40,0.052,41,2.087,42,1.409,43,1.242,44,2.567,45,3.183,46,2.192,47,2.217,48,1.833,49,1.902,50,3.747,51,1.126,52,2.312,53,2.192,54,2.192,55,3.092,56,2.192,57,1.604,58,1.08,59,1.021,60,1.616,61,1.858,62,1.616,63,1.858,64,2.192,65,2.192,66,3.183,67,2.192,68,2.192,69,2.192,70,2.192,71,2.192,72,2.192,73,2.192,74,0.957,75,0.659,76,1.665,77,1.94,78,0.576,79,0.367,80,2.192,81,2.192,82,2.544,83,2.192,84,2.192,85,1.768,86,3.183,87,1.768,88,1.768,89,2.187,90,1.284,91,1.768,92,1.768,93,1.768,94,2.192,95,2.192,96,2.791,97,2.161,98,2.567,99,2.567,100,2.567,101,2.161,102,2.567,103,2.567,104,1.604,105,2.567,106,2.161,107,2.567,108,2.567,109,3.957,110,2.864,111,2.544,112,2.567,113,2.567,114,3.183,115,1.616,116,2.567,117,3.183,118,2.567,119,3.316,120,3.183,121,2.567,122,3.183,123,1.858,124,1.242,125,1.242,126,1.414,127,3.183,128,3.183,129,3.183,130,2.192,131,3.183,132,2.192,133,3.747,134,2.192,135,2.192,136,2.192,137,3.747,138,2.192,139,3.183,140,3.183,141,3.183,142,2.192,143,2.192,144,2.192,145,2.192,146,2.192,147,2.192,148,3.747,149,3.747,150,3.183,151,1.768,152,2.192,153,2.192,154,2.192,155,2.192,156,2.192,157,3.747,158,2.192,159,3.183,160,2.192,161,2.192,162,2.192,163,2.192,164,2.192,165,2.192,166,2.192,167,2.192,168,2.192,169,4.555,170,2.192,171,2.192,172,3.183,173,3.183,174,3.183,175,2.192,176,0.974,177,2.192,178,1.768,179,2.192,180,2.192,181,1.768,182,2.192,183,2.192,184,3.183,185,2.567,186,2.192,187,4.111,188,2.192,189,2.192,190,2.192,191,0.029,192,0.029]],["title/modules/AppModule.html",[193,2.284,194,1.259]],["body/modules/AppModule.html",[1,2.167,3,1.132,4,1.132,9,0.859,40,0.052,58,0.989,74,1.601,75,1.132,78,0.989,79,0.63,123,2.198,191,0.042,192,0.042,194,2.433,195,1.911,196,2.03,197,3.036,198,3.036,199,3.036,200,2.703,201,3.101,202,1.911,203,3.765,204,4.568,205,3.101,206,3.765,207,2.666,208,3.101,209,2.556,210,3.765,211,4.568,212,1.469,213,4.568,214,3.765,215,2.556,216,3.765,217,3.765,218,3.765,219,2.556]],["title/classes/AppPage.html",[79,0.474,220,1.923]],["body/classes/AppPage.html",[3,1.369,4,1.126,9,0.855,14,2.864,19,0.984,26,1.777,37,2.268,40,0.052,51,1.534,58,0.984,74,1.369,78,0.984,79,0.627,90,1.749,104,1.462,111,2.544,185,3.022,191,0.042,192,0.042,220,3.092,221,2.544,222,3.022,223,5.105,224,5.105,225,5.105,226,5.105,227,3.747,228,5.319,229,3.747,230,4.907,231,3.747,232,3.747,233,3.747,234,3.747,235,3.747,236,3.747,237,3.747,238,3.747,239,4.555,240,3.747,241,3.747,242,3.747,243,3.022,244,2.187,245,3.747]],["title/modules/AppServerModule.html",[193,2.284,246,1.438]],["body/modules/AppServerModule.html",[1,2.077,3,1.067,4,1.067,9,0.81,36,1.642,40,0.052,43,1.719,59,0.698,74,1.63,75,1.324,76,1.577,77,1.577,78,1.157,79,0.738,110,2.072,123,2.072,191,0.04,192,0.04,194,2.333,195,1.802,196,1.958,201,2.991,202,1.802,205,2.991,207,2.072,208,2.991,209,2.41,212,1.385,215,2.991,219,2.41,246,2.702,247,2.862,248,3.549,249,3.549,250,2.41,251,3.553,252,2.072,253,2.862,254,1.802,255,1.51,256,1.802,257,2.924,258,2.072,259,2.41,260,1.802,261,2.41,262,2.236,263,2.41,264,1.802,265,1.802,266,2.41,267,2.41,268,2.41,269,2.41,270,1.216,271,2.072,272,2.41]],["title/injectables/DeviceDetectorService.html",[36,0.971,255,0.971]],["body/injectables/DeviceDetectorService.html",[3,1.08,4,0.504,9,0.382,14,0.978,19,0.44,20,1.015,21,1.606,23,2.403,26,1.015,28,2.097,31,1.519,32,1.519,33,1.519,34,0.851,36,0.892,37,2.236,39,1.975,40,0.052,41,1.975,42,1.596,43,1.517,47,2.506,48,1.978,49,2.254,51,1.4,52,1.321,57,1.675,58,1.081,59,1.091,60,2.09,61,2.27,62,2.09,63,2.27,74,1.08,75,0.504,78,0.944,79,0.281,82,1.138,89,2.403,90,1.738,104,1.244,115,1.824,124,1.675,125,1.817,126,1.908,176,1.417,191,0.024,192,0.024,212,0.654,244,0.978,254,0.851,255,0.892,256,0.851,264,0.851,265,1.321,270,1.738,273,1.138,274,2.253,275,2.574,276,0.745,277,1.675,278,2.812,279,2.098,280,1.352,281,2.601,282,1.676,283,1.861,284,1.766,285,1.676,286,3.443,287,3.27,288,2.403,289,1.766,290,1.676,291,2.641,292,2.097,293,1.766,294,1.676,295,1.766,296,1.676,297,1.766,298,1.766,299,1.766,300,1.676,301,1.676,302,1.676,303,1.676,304,1.676,305,1.676,306,0.892,307,1.676,308,1.676,309,1.676,310,1.352,311,1.352,312,1.352,313,0.851,314,2.098,315,1.519,316,1.138,317,1.766,318,1.766,319,2.769,320,1.618,321,1.352,322,1.138,323,2.571,324,2.164,325,2.098,326,2.571,327,1.352,328,2.27,329,2.27,330,2.27,331,3.137,332,1.352,333,1.352,334,1.138,335,1.352,336,1.352,337,2.898,338,0.978,339,0.978,340,2.098,341,2.098,342,1.352,343,1.352,344,1.352,345,1.138,346,1.138,347,2.098,348,2.098,349,2.098,350,2.098,351,2.098,352,2.098,353,1.352,354,1.352,355,1.138,356,1.352,357,1.352,358,1.352,359,1.352,360,2.571,361,1.352,362,2.898,363,1.352,364,2.098,365,1.138,366,1.352,367,0.978,368,2.098,369,2.098,370,2.571,371,0.851,372,2.098,373,1.352,374,2.098,375,1.352,376,1.766,377,1.352,378,1.352,379,1.352,380,2.571,381,1.352,382,1.352,383,1.352,384,1.352,385,1.352,386,2.098,387,1.352,388,1.352,389,1.352,390,1.352,391,1.352,392,1.352,393,1.352,394,1.352,395,2.098,396,1.352,397,2.571,398,2.098,399,2.898,400,1.352,401,2.098,402,1.352,403,1.352,404,1.352,405,1.352,406,1.352,407,1.352,408,1.352,409,1.352]],["title/interfaces/DeviceInfo.html",[21,1.105,313,1.438]],["body/interfaces/DeviceInfo.html",[3,1.183,4,0.602,9,0.457,14,1.168,19,0.526,20,1.161,21,1.72,23,2.075,28,1.168,36,0.686,40,0.053,42,1.608,48,1.161,49,2.238,51,1.264,52,1.016,57,1.83,58,1.199,59,1.069,60,2.318,61,2.574,62,2.318,63,2.574,74,1.183,75,0.602,78,1.034,79,0.335,82,1.359,89,2.075,90,1.779,104,1.161,115,1.998,124,1.641,125,1.782,126,1.869,176,1.579,191,0.027,192,0.027,212,0.781,244,1.168,254,1.016,255,1.02,256,1.016,264,1.016,265,1.016,270,1.844,274,0.89,275,1.016,276,0.89,277,1.536,278,2.297,283,1.738,284,1.359,286,3.312,287,3.185,288,2.075,289,1.359,291,2.672,292,2.075,293,1.359,295,1.359,297,1.359,298,1.359,299,1.359,306,0.686,310,1.614,311,1.614,312,1.614,313,1.016,314,2.401,315,1.738,316,1.359,317,2.021,318,2.021,319,2.89,320,1.804,321,1.614,322,1.359,323,2.866,324,2.413,325,2.401,326,2.866,327,1.614,328,2.456,329,2.456,330,2.456,331,3.393,332,1.614,333,1.614,334,1.359,335,1.614,336,1.614,337,3.174,338,1.168,339,1.168,340,2.401,341,2.401,342,1.614,343,1.614,344,1.614,345,1.359,346,1.359,347,2.401,348,2.401,349,2.401,350,2.401,351,2.401,352,2.401,353,1.614,354,1.614,355,1.359,356,1.614,357,1.614,358,1.614,359,1.614,360,2.866,361,1.614,362,3.174,363,1.614,364,2.401,365,1.359,366,1.614,367,1.168,368,2.401,369,2.401,370,2.866,371,1.016,372,2.401,373,1.614,374,2.401,375,1.614,376,2.021,377,1.614,378,1.614,379,1.614,380,2.866,381,1.614,382,1.614,383,1.614,384,1.614,385,1.614,386,2.401,387,1.614,388,1.614,389,1.614,390,1.614,391,1.614,392,1.614,393,1.614,394,1.614,395,2.401,396,1.614,397,2.866,398,2.401,399,3.174,400,1.614,401,2.401,402,1.614,403,1.614,404,1.614,405,1.614,406,1.614,407,1.614,408,1.614,409,1.614,410,2.002]],["title/pipes/KeysPipe.html",[200,1.438,411,1.653]],["body/pipes/KeysPipe.html",[3,1.13,4,1.13,9,0.858,11,3.031,26,1.467,37,1.67,39,1.908,40,0.052,41,2.495,42,1.288,43,1.467,47,1.908,48,2.043,51,1.13,74,1.13,75,1.13,78,0.987,79,0.629,90,1.288,151,3.031,176,1.67,191,0.042,192,0.042,200,2.317,270,1.684,319,2.868,371,1.908,411,2.664,412,3.759,413,3.031,414,5.11,415,4.563,416,4.914,417,3.759,418,4.563,419,3.759,420,4.563,421,3.759,422,3.963,423,3.759,424,4.563,425,4.563,426,3.759]],["title/classes/ReTree.html",[79,0.474,277,1.105]],["body/classes/ReTree.html",[3,0.996,4,0.996,9,0.756,19,0.87,26,1.646,34,2.357,37,2.063,39,2.142,40,0.052,41,2.142,42,1.446,43,1.646,51,1.268,55,2.865,59,0.961,78,0.87,79,0.555,90,1.862,119,3.403,191,0.039,192,0.039,221,2.25,244,2.853,270,1.819,274,2.172,277,1.646,278,3.012,292,1.934,306,1.446,324,2.865,376,2.865,427,2.672,428,3.314,429,2.672,430,2.672,431,2.672,432,4.219,433,3.314,434,4.219,435,4.472,436,3.314,437,4.219,438,4.219,439,3.314,440,4.219,441,4.219,442,4.219,443,3.314,444,3.314,445,3.314,446,4.642,447,3.314,448,3.314,449,4.219,450,3.314,451,3.314,452,3.314,453,3.314]],["title/injectables/UniversalDeviceDetectorService.html",[255,0.971,262,1.438]],["body/injectables/UniversalDeviceDetectorService.html",[1,1.395,3,0.776,4,0.776,9,0.589,19,0.678,20,1.395,21,1.007,23,2.393,26,1.395,28,2.393,31,2.087,32,2.087,33,2.087,34,1.311,36,1.867,37,2.393,39,2.359,40,0.052,41,2.359,42,1.769,43,1.922,47,2.706,48,2.091,49,2.359,51,1.396,52,1.311,57,1.395,58,0.939,59,1.041,60,1.815,61,2.087,62,1.815,63,2.087,74,1.533,75,1.074,76,1.147,77,1.147,78,0.939,79,0.598,89,2.393,90,0.885,104,1.007,110,1.507,124,1.395,125,1.6,126,1.588,191,0.033,192,0.033,194,1.588,205,1.753,207,1.507,208,2.427,209,1.753,212,1.007,215,1.753,219,1.753,246,1.311,250,1.753,251,2.883,252,1.507,253,2.082,254,1.311,255,1.225,256,1.311,257,2.932,258,1.507,259,1.753,260,1.311,261,1.753,262,2.081,263,2.427,264,1.311,265,1.815,266,1.753,267,1.753,268,1.753,269,1.753,270,1.769,271,1.507,272,1.753,273,1.753,277,1.6,278,2.932,279,2.883,280,2.082,283,1.507,284,1.753,286,3.345,287,3.004,288,2.393,289,1.753,291,1.753,292,1.507,293,1.753,295,1.753,297,1.753,298,1.753,299,1.753,306,0.885,454,2.582,455,5.36,456,2.582,457,2.582,458,2.582,459,2.582,460,2.582,461,2.582,462,2.582,463,2.582,464,2.582,465,2.582,466,2.582,467,2.582,468,2.582,469,2.582,470,2.582]],["title/contributing.html",[471,1.626,472,1.398,473,2.394]],["body/contributing.html",[9,0.741,25,1.894,40,0.047,101,2.203,104,1.266,106,2.203,112,3.358,113,2.617,118,2.617,121,2.617,181,2.617,191,0.038,192,0.038,202,1.648,257,1.894,271,1.894,306,1.427,328,1.894,365,2.203,474,4.597,475,4.163,476,3.245,477,4.163,478,3.245,479,4.597,480,4.597,481,4.163,482,3.245,483,3.245,484,4.163,485,2.617,486,4.163,487,4.597,488,4.597,489,4.163,490,3.911,491,4.163,492,3.245,493,2.203,494,3.245,495,3.245,496,3.245,497,5.015,498,3.245,499,4.597,500,3.358,501,5.015,502,3.245,503,5.015,504,3.245,505,4.044,506,4.044,507,4.597,508,3.245,509,4.163,510,3.245,511,3.245,512,3.245,513,3.245,514,3.245,515,3.245,516,3.245,517,2.617,518,3.245,519,3.245,520,3.245,521,3.245,522,3.245,523,3.245,524,3.245,525,3.245,526,3.245,527,3.245,528,3.245,529,3.245,530,3.245,531,3.245,532,4.163,533,4.597,534,4.597,535,4.597,536,3.358,537,2.617,538,3.245,539,4.163,540,3.245,541,3.245,542,3.245,543,2.617,544,3.245,545,3.245,546,3.245,547,4.163,548,3.245,549,2.617,550,3.245,551,4.163,552,3.245,553,3.245,554,3.245,555,3.245,556,3.245,557,3.245,558,3.245,559,3.245,560,3.245,561,3.245,562,3.245,563,3.245,564,3.245,565,3.245,566,3.245,567,3.245,568,3.245,569,3.245,570,2.617,571,3.245,572,3.245,573,3.245,574,3.245,575,3.245,576,3.245,577,3.245,578,3.245,579,3.245,580,2.43,581,3.245,582,3.245,583,3.245,584,2.617,585,1.648]],["title/coverage.html",[586,3.07]],["body/coverage.html",[0,1.559,1,1.198,9,0.701,10,2.477,13,1.793,21,1.198,36,1.053,40,0.051,42,1.053,57,1.198,59,1.09,79,0.673,115,1.559,178,2.477,191,0.037,192,0.037,200,1.559,220,2.085,222,2.477,243,2.477,250,2.085,255,1.377,262,1.559,274,2.465,275,2.809,276,1.99,277,1.198,306,1.053,313,1.559,320,1.559,338,1.793,339,1.793,371,2.842,411,1.793,413,2.477,427,2.477,493,2.085,586,2.477,587,3.071,588,3.071,589,3.071,590,3.346,591,4.018,592,5.57,593,2.085,594,5.546,595,2.477,596,2.477,597,2.477,598,3.071,599,4.018,600,4.018,601,4.42,602,2.477,603,2.477,604,2.477,605,2.477,606,2.477,607,2.477,608,3.071,609,2.477,610,2.477,611,2.477,612,2.477,613,2.477,614,3.071,615,3.071,616,3.071,617,3.071]],["title/dependencies.html",[196,1.507,580,1.398]],["body/dependencies.html",[40,0.052,58,1.241,59,0.783,75,1.197,76,1.769,77,1.769,191,0.043,192,0.043,196,1.769,207,2.94,212,1.554,252,2.324,258,2.324,260,2.022,618,3.982,619,5.525,620,3.982,621,3.982,622,3.982,623,3.982,624,3.982,625,3.982,626,3.982,627,3.982,628,3.982,629,3.982,630,3.982,631,3.982,632,3.982,633,3.982,634,3.982,635,3.982,636,3.982,637,3.982]],["title/miscellaneous/enumerations.html",[638,1.064,639,2.734]],["body/miscellaneous/enumerations.html",[19,1.081,40,0.05,48,2.12,59,0.809,62,2.445,124,1.879,125,1.879,126,2.14,191,0.044,192,0.044,274,1.828,275,2.089,276,2.269,315,2.811,316,3.27,317,3.27,318,3.27,638,1.828,639,3.318,640,3.884]],["title/miscellaneous/functions.html",[638,1.064,641,2.734]],["body/miscellaneous/functions.html",[13,3.027,19,1.122,40,0.049,51,1.479,52,2.168,191,0.045,192,0.045,590,2.9,593,3.52,638,1.898,641,3.445,642,3.969,643,4.271]],["title/index.html",[19,0.629,471,1.626,472,1.398]],["body/index.html",[0,2.231,12,2.049,13,2.372,15,2.049,17,2.049,20,0.991,21,0.991,25,2.063,26,0.991,31,2.063,32,2.063,33,1.483,34,1.29,36,1.583,40,0.052,43,1.379,44,2.049,49,1.29,51,1.437,55,1.725,57,1.379,58,1.154,59,1.072,60,1.29,74,1.474,75,1.062,76,2.125,77,2.223,78,0.928,79,0.592,85,2.049,87,2.049,88,2.049,91,2.049,92,2.049,93,2.049,96,2.983,97,1.725,98,2.049,99,2.049,100,2.049,101,1.725,102,2.049,103,2.049,104,0.991,105,2.049,106,2.4,107,2.049,108,3.278,109,2.85,110,2.372,111,3.246,116,2.049,124,1.379,125,1.379,126,1.571,191,0.032,192,0.032,196,1.129,212,0.991,254,1.29,255,1.211,256,1.29,257,2.565,258,1.483,259,1.725,260,1.29,261,1.725,262,1.794,263,1.725,264,1.29,265,1.29,266,1.725,267,1.725,268,1.725,269,1.725,270,0.871,271,2.063,272,1.725,276,1.129,277,0.991,306,0.871,319,2.372,320,1.794,322,2.4,334,2.4,367,2.063,435,2.049,472,1.483,490,2.049,500,2.049,505,2.049,506,2.049,517,3.725,536,2.85,537,2.049,543,2.049,570,2.049,580,2.063,584,3.956,585,1.29,593,3.246,644,2.049,645,2.54,646,3.278,647,2.54,648,2.54,649,2.54,650,2.54,651,2.54,652,2.54,653,2.54,654,2.54,655,2.54,656,2.54,657,2.54,658,2.54,659,2.54,660,2.54,661,2.54,662,2.54,663,2.54,664,2.54,665,2.54,666,2.54,667,2.54,668,2.54,669,2.54,670,2.54,671,2.54,672,4.394,673,2.54,674,3.534,675,2.54,676,2.54,677,2.54,678,3.534,679,2.54,680,2.54,681,2.54,682,2.54,683,2.54,684,2.54,685,2.85,686,2.85,687,2.85,688,4.394,689,2.54,690,2.54,691,3.534,692,2.54,693,3.534,694,2.54,695,2.049,696,2.54,697,2.54,698,2.54,699,2.54,700,2.54,701,2.54,702,2.54,703,2.049,704,2.54,705,2.54,706,2.54,707,2.54,708,2.54,709,2.54,710,2.85,711,2.54,712,2.54,713,2.54,714,2.54,715,2.54,716,2.049,717,2.54,718,3.534,719,2.54,720,2.049,721,2.54,722,3.534,723,2.54,724,2.54,725,2.54,726,2.54,727,2.54,728,2.54,729,2.54,730,2.54,731,2.54,732,4.064,733,2.54,734,2.54,735,2.54,736,2.54,737,2.54,738,3.534,739,2.54,740,2.54,741,2.54,742,2.54,743,2.54,744,1.725]],["title/license.html",[471,1.626,472,1.398,585,1.215]],["body/license.html",[40,0.042,191,0.042,192,0.042,202,1.905,260,1.905,288,2.191,329,2.191,330,2.191,493,2.548,585,1.905,646,3.677,703,3.027,710,3.027,744,2.548,745,4.911,746,3.027,747,3.753,748,3.027,749,4.559,750,3.753,751,3.753,752,3.753,753,3.753,754,3.753,755,3.753,756,4.559,757,5.473,758,3.753,759,3.753,760,4.911,761,3.753,762,4.559,763,3.753,764,3.753,765,3.753,766,3.753,767,3.753,768,3.753,769,3.753,770,3.753,771,3.753,772,4.559,773,3.753,774,3.753,775,3.753,776,3.753,777,3.753,778,3.753,779,4.559,780,4.559,781,3.753,782,3.753,783,3.753,784,3.753,785,3.753,786,3.753,787,3.753,788,3.753,789,3.753,790,3.753,791,3.753,792,3.753,793,3.753,794,3.753,795,3.753,796,3.753,797,3.753,798,3.753,799,3.753,800,3.753,801,3.753,802,3.753,803,3.753,804,3.753,805,3.753,806,3.753,807,3.753,808,3.753]],["title/modules.html",[195,1.933]],["body/modules.html",[40,0.045,58,1.302,191,0.045,192,0.045,194,1.923,195,2.196,246,2.196,809,4.958,810,4.958,811,4.958]],["title/overview.html",[812,3.07]],["body/overview.html",[0,2.039,1,2.158,40,0.05,123,2.344,176,2.246,191,0.043,192,0.043,194,2.444,195,2.039,196,2.11,197,3.239,198,3.239,199,3.239,200,2.566,201,3.223,202,2.039,221,2.727,246,2.706,247,3.239,273,2.727,313,2.039,411,2.344,812,3.239,813,4.076]],["title/properties.html",[20,1.323,580,1.398]],["body/properties.html",[20,1.602,25,2.397,40,0.05,59,1.078,76,1.825,77,2.267,96,3.266,191,0.044,192,0.044,328,2.397,329,2.397,330,2.397,485,3.312,585,2.085,695,3.312,744,2.789,748,3.312,814,4.107,815,4.107,816,4.107,817,4.107,818,4.107,819,4.107,820,4.107,821,4.107,822,4.107,823,4.107,824,4.107]],["title/miscellaneous/variables.html",[638,1.064,825,2.734]],["body/miscellaneous/variables.html",[19,0.174,40,0.05,42,1.365,47,2.058,48,1.582,57,1.897,58,0.174,59,0.234,90,0.407,97,0.807,115,0.603,124,0.887,125,1.274,176,0.528,191,0.011,192,0.011,252,0.386,270,0.554,274,0.528,275,0.603,276,0.528,283,1.476,306,1.659,315,1.327,320,1.284,338,0.693,339,0.693,345,1.717,346,0.449,355,0.807,367,1.907,371,1.658,422,0.958,429,0.534,430,0.534,431,0.534,549,0.534,590,0.449,595,0.958,596,1.304,597,0.958,601,3.151,602,0.958,603,0.958,604,0.958,605,0.958,606,0.958,607,0.958,609,1.304,610,1.304,611,0.958,612,0.958,613,1.304,638,0.294,640,3.151,642,1.304,644,0.958,685,1.591,686,3.92,687,2.634,716,0.534,720,0.534,746,0.534,813,1.591,825,0.534,826,0.662,827,0.662,828,0.662,829,0.662,830,0.662,831,0.662,832,2.751,833,0.662,834,0.662,835,0.662,836,2.529,837,0.662,838,0.662,839,1.973,840,1.188,841,0.662,842,1.973,843,0.662,844,1.973,845,0.662,846,0.662,847,0.662,848,1.617,849,0.662,850,1.617,851,0.662,852,2.751,853,0.662,854,1.617,855,0.662,856,1.188,857,1.188,858,0.662,859,1.188,860,0.662,861,0.662,862,0.662,863,1.617,864,0.662,865,0.662,866,0.662,867,1.617,868,1.617,869,1.617,870,1.617,871,1.617,872,1.617,873,0.662,874,0.662,875,2.945,876,2.945,877,0.662,878,0.662,879,0.662,880,0.662,881,3.824,882,0.662,883,0.662,884,0.662,885,2.273,886,2.273,887,1.617,888,1.617,889,2.273,890,1.188,891,1.188,892,0.662,893,0.662,894,0.662,895,0.662,896,0.662,897,0.662,898,0.662,899,1.617,900,2.273,901,1.188,902,0.662,903,1.973,904,4.798,905,0.662,906,1.617,907,1.188,908,0.662,909,1.188,910,1.188,911,0.662,912,1.617,913,1.617,914,1.617,915,1.188,916,1.617,917,1.188,918,1.973,919,1.617,920,1.617,921,1.617,922,1.617,923,1.188,924,0.662,925,1.617,926,1.617,927,1.617,928,1.617,929,1.617,930,1.617,931,1.617,932,1.188,933,1.617,934,1.617,935,1.973,936,1.617,937,1.973,938,1.973,939,1.973,940,1.188,941,0.662,942,1.188,943,0.662,944,0.662,945,3.402,946,0.662,947,1.188,948,0.662,949,0.662,950,0.662,951,0.662,952,0.662,953,0.662,954,0.662,955,0.662,956,0.662,957,2.945,958,0.662,959,1.188,960,1.617,961,1.973,962,1.617,963,1.973,964,0.662,965,0.662,966,0.662,967,0.662,968,0.662,969,0.662,970,0.662,971,0.662,972,0.662,973,0.662,974,0.662,975,0.662,976,0.662,977,0.662,978,0.662,979,0.662,980,0.662,981,0.662,982,0.662,983,0.662,984,0.662,985,0.662,986,0.662,987,0.662,988,0.662,989,0.662,990,0.662,991,0.662,992,0.662,993,0.662,994,0.662,995,0.662,996,0.662,997,1.188,998,0.662,999,0.662,1000,0.662,1001,4.429,1002,0.662,1003,0.662,1004,0.662,1005,0.662,1006,0.662,1007,0.662,1008,0.662,1009,0.662,1010,0.662,1011,0.662,1012,0.662,1013,0.662,1014,0.662,1015,0.662,1016,0.662,1017,0.662,1018,0.662,1019,0.662,1020,0.662,1021,0.662,1022,0.662,1023,0.662,1024,0.662,1025,0.662,1026,0.662,1027,0.662,1028,0.662,1029,0.662,1030,0.662,1031,0.662,1032,0.662,1033,0.662,1034,0.662,1035,0.662,1036,0.662,1037,0.662,1038,0.662,1039,0.662,1040,0.662,1041,0.662,1042,0.662,1043,0.662,1044,0.662,1045,0.662,1046,0.662,1047,0.662,1048,0.662,1049,0.662,1050,0.662,1051,0.662,1052,0.662,1053,0.662,1054,0.662,1055,0.662,1056,0.662,1057,0.662,1058,0.662,1059,0.662,1060,0.662,1061,0.662,1062,0.662,1063,0.662,1064,0.662,1065,0.662,1066,0.662,1067,0.662,1068,0.662,1069,0.662,1070,0.662,1071,0.662,1072,0.662,1073,0.662,1074,0.662,1075,0.662,1076,0.662,1077,0.662,1078,0.662,1079,0.662,1080,0.662,1081,0.662,1082,0.662,1083,0.662,1084,0.662,1085,0.662,1086,0.662,1087,0.662,1088,0.662,1089,0.662,1090,0.662,1091,0.662,1092,0.662,1093,0.662,1094,0.662,1095,0.662,1096,0.662,1097,0.662,1098,0.662,1099,0.662,1100,0.662,1101,0.662,1102,0.662,1103,0.662,1104,0.662,1105,0.662,1106,0.662,1107,0.662,1108,0.662,1109,0.662,1110,0.662,1111,0.662,1112,0.662,1113,0.662,1114,0.662,1115,0.662,1116,0.662,1117,0.662,1118,0.662,1119,0.662,1120,0.662,1121,0.662,1122,0.662,1123,0.662,1124,0.662,1125,0.662,1126,0.662,1127,0.662,1128,0.662,1129,0.662,1130,0.662,1131,0.662,1132,0.662,1133,0.662,1134,0.662,1135,0.662,1136,0.662,1137,0.662,1138,0.662,1139,0.662,1140,0.662,1141,0.662,1142,0.662,1143,0.662,1144,0.662,1145,0.662,1146,0.662,1147,0.662,1148,0.662,1149,0.662,1150,0.662,1151,0.662,1152,0.662,1153,0.662,1154,0.662,1155,0.662,1156,0.662,1157,0.662,1158,0.662,1159,0.662,1160,0.662,1161,0.662,1162,0.662,1163,0.662,1164,0.662,1165,0.662,1166,0.662,1167,0.662,1168,0.662,1169,0.662,1170,0.662,1171,0.662,1172,0.662,1173,0.662,1174,0.662,1175,0.662,1176,0.662,1177,0.662,1178,0.662,1179,0.662,1180,0.662,1181,0.662,1182,0.662,1183,0.662,1184,0.662,1185,0.662,1186,0.662,1187,0.662,1188,2.751,1189,0.662,1190,0.662,1191,0.662,1192,0.662,1193,0.662,1194,0.662,1195,0.662,1196,0.662,1197,0.662,1198,0.662,1199,0.662,1200,0.662,1201,0.662,1202,0.662,1203,0.662,1204,0.662,1205,0.662,1206,0.662,1207,0.662,1208,0.662,1209,0.662,1210,0.662,1211,0.662,1212,0.662,1213,0.662,1214,0.662,1215,0.662,1216,0.662,1217,0.662,1218,0.662,1219,0.662,1220,0.662,1221,0.662,1222,0.662,1223,0.662,1224,0.662,1225,0.662,1226,0.662,1227,0.662,1228,0.662,1229,0.662,1230,0.662,1231,0.662,1232,0.662,1233,0.662,1234,0.662,1235,0.662,1236,0.662,1237,0.662,1238,0.662,1239,0.662,1240,0.662,1241,0.662,1242,0.662,1243,0.662,1244,0.662,1245,0.662,1246,0.662,1247,0.662,1248,0.662,1249,0.662,1250,0.662,1251,0.662,1252,0.662,1253,0.662,1254,0.662,1255,4.181,1256,0.662,1257,0.662,1258,0.662,1259,0.662,1260,0.662,1261,0.662,1262,0.662,1263,0.662,1264,0.662,1265,0.662,1266,0.662,1267,0.662,1268,0.662,1269,0.662,1270,0.662,1271,0.662,1272,0.662,1273,0.662,1274,0.662,1275,0.662,1276,0.662,1277,0.662,1278,0.662,1279,0.662,1280,0.662,1281,0.662,1282,0.662,1283,0.662,1284,0.662,1285,0.662,1286,0.662,1287,0.662,1288,0.662,1289,0.662,1290,0.662,1291,0.662,1292,0.662,1293,0.662,1294,0.662,1295,0.662,1296,0.662,1297,0.662,1298,0.662,1299,0.662,1300,0.662,1301,0.662,1302,0.662,1303,0.662,1304,0.662,1305,0.662,1306,0.662,1307,0.662,1308,0.662,1309,0.662,1310,0.662,1311,0.662,1312,0.662,1313,0.662,1314,0.662,1315,0.662,1316,0.662,1317,0.662,1318,0.662,1319,0.662,1320,0.662,1321,0.662,1322,0.662,1323,0.662,1324,0.662,1325,0.662,1326,0.662,1327,0.662,1328,0.662,1329,0.662,1330,0.662,1331,0.662,1332,0.662,1333,0.662,1334,0.662,1335,0.662,1336,0.662,1337,0.662,1338,0.662,1339,0.662,1340,0.662,1341,0.662,1342,0.662,1343,0.662,1344,0.662,1345,0.662,1346,0.662,1347,0.662,1348,0.662,1349,0.662,1350,0.662,1351,0.662,1352,0.662,1353,0.662,1354,0.662,1355,0.662,1356,0.662,1357,0.662,1358,0.662,1359,0.662,1360,0.662,1361,0.662,1362,0.662,1363,0.662,1364,0.662,1365,0.662,1366,0.662,1367,0.662,1368,0.662,1369,0.662,1370,0.662,1371,0.662,1372,0.662,1373,0.662,1374,0.662,1375,0.662,1376,0.662,1377,0.662,1378,0.662,1379,0.662,1380,0.662,1381,0.662,1382,0.662,1383,0.662,1384,0.662,1385,0.662,1386,0.662,1387,0.662,1388,0.662,1389,0.662,1390,0.662,1391,0.662,1392,0.662,1393,0.662,1394,0.662,1395,0.662,1396,0.662,1397,0.662,1398,0.662,1399,0.662,1400,0.662,1401,0.662,1402,0.662,1403,0.662,1404,0.662,1405,0.662,1406,0.662,1407,0.662,1408,0.662,1409,0.662,1410,0.662,1411,0.662,1412,0.662,1413,0.662,1414,0.662,1415,0.662,1416,0.662,1417,0.662,1418,0.662,1419,0.662,1420,0.662,1421,0.662,1422,0.662,1423,0.662,1424,0.662,1425,0.662,1426,0.662,1427,0.662,1428,0.662,1429,0.662,1430,0.662,1431,0.662,1432,0.662,1433,0.662,1434,0.662,1435,0.662,1436,0.662,1437,0.662,1438,0.662,1439,0.662,1440,0.662,1441,0.662,1442,0.662,1443,0.662,1444,0.662,1445,0.662,1446,0.662,1447,0.662,1448,0.662,1449,0.662,1450,0.662,1451,0.662,1452,0.662,1453,0.662,1454,0.662,1455,0.662,1456,0.662,1457,0.662,1458,0.662,1459,0.662,1460,0.662,1461,0.662,1462,0.662,1463,0.662,1464,0.662,1465,2.529,1466,0.662,1467,0.662,1468,0.662,1469,0.662,1470,0.662,1471,0.662,1472,0.662,1473,0.662,1474,0.662,1475,0.662,1476,0.662,1477,0.662,1478,0.662,1479,0.662,1480,0.662,1481,0.662,1482,0.662,1483,0.662,1484,0.662,1485,0.662,1486,0.662,1487,0.662,1488,0.662,1489,0.662,1490,0.662,1491,0.662,1492,0.662,1493,0.662,1494,0.662,1495,0.662,1496,0.662,1497,0.662,1498,0.662,1499,0.662,1500,0.662,1501,0.662,1502,0.662,1503,0.662,1504,0.662,1505,0.662,1506,0.662,1507,0.662,1508,0.662,1509,0.662,1510,0.662,1511,0.662,1512,0.662,1513,0.662,1514,0.662,1515,0.662,1516,0.662,1517,0.662,1518,0.662,1519,0.662,1520,0.662,1521,0.662,1522,0.662,1523,0.662,1524,0.662,1525,0.662,1526,0.662,1527,0.662,1528,0.662,1529,0.662,1530,0.662,1531,0.662,1532,0.662,1533,0.662,1534,0.662,1535,0.662,1536,0.662,1537,0.662,1538,0.662,1539,0.662,1540,0.662,1541,0.662,1542,0.662,1543,0.662,1544,0.662,1545,0.662,1546,0.662,1547,0.662,1548,0.662,1549,0.662,1550,0.662,1551,0.662,1552,0.662,1553,0.662,1554,0.662,1555,0.662,1556,0.662,1557,0.662,1558,0.662,1559,0.662,1560,0.662,1561,0.662,1562,0.662,1563,0.662,1564,0.662,1565,0.662,1566,0.662,1567,3.523,1568,0.662,1569,0.662,1570,0.662,1571,0.662,1572,0.662,1573,0.662,1574,0.662,1575,0.662,1576,0.662,1577,0.662,1578,0.662,1579,0.662,1580,0.662,1581,0.662,1582,0.662,1583,0.662,1584,0.662,1585,0.662,1586,0.662,1587,0.662,1588,0.662,1589,0.662,1590,0.662,1591,0.662,1592,0.662,1593,0.662,1594,0.662,1595,0.662,1596,0.662,1597,0.662,1598,0.662,1599,0.662,1600,0.662,1601,0.662,1602,0.662,1603,0.662,1604,0.662,1605,0.662,1606,0.662,1607,0.662,1608,0.662,1609,0.662,1610,0.662,1611,0.662,1612,0.662,1613,0.662,1614,0.662,1615,0.662,1616,0.662,1617,0.662,1618,0.662,1619,0.662,1620,0.662,1621,1.188,1622,0.662,1623,0.662,1624,0.662,1625,0.662,1626,0.662,1627,0.662,1628,0.662,1629,0.662,1630,0.662,1631,0.662,1632,0.662,1633,0.662,1634,0.662,1635,0.662,1636,0.662,1637,0.662,1638,0.662,1639,0.662,1640,0.662,1641,0.662,1642,0.662,1643,0.662,1644,0.662,1645,0.662,1646,1.188,1647,0.662,1648,1.188,1649,0.662,1650,0.662,1651,0.662,1652,0.662,1653,0.662,1654,0.662,1655,0.662,1656,0.662,1657,0.662,1658,1.188,1659,0.662,1660,0.662,1661,0.662,1662,1.188,1663,0.662,1664,0.662,1665,0.662,1666,0.662,1667,0.662,1668,0.662,1669,0.662,1670,0.662,1671,0.662,1672,0.662,1673,0.662,1674,0.662,1675,0.662,1676,0.662,1677,0.662,1678,0.662,1679,0.662,1680,0.662,1681,0.662,1682,0.662,1683,0.662,1684,0.662,1685,1.188,1686,0.662,1687,0.662,1688,1.617,1689,1.617,1690,1.188,1691,0.662,1692,0.662,1693,0.662,1694,0.662,1695,0.662,1696,0.662,1697,0.662,1698,1.188,1699,1.188,1700,1.973,1701,1.188,1702,0.662,1703,1.188,1704,1.188,1705,0.662,1706,1.188,1707,1.188,1708,1.188,1709,1.188,1710,1.188,1711,1.188,1712,1.188,1713,0.662,1714,1.188,1715,0.662,1716,1.188,1717,1.188,1718,1.973,1719,1.188,1720,1.188,1721,2.529,1722,1.188,1723,1.188,1724,1.188,1725,1.188,1726,1.188,1727,1.188,1728,4.699,1729,1.188,1730,0.662,1731,1.188,1732,0.662,1733,1.188,1734,0.662,1735,1.188,1736,1.188,1737,0.662,1738,1.188,1739,1.188,1740,1.188,1741,1.188,1742,1.188,1743,1.188,1744,1.188,1745,1.188,1746,1.188,1747,0.662,1748,1.188,1749,1.188,1750,0.662,1751,0.662,1752,0.662,1753,0.662,1754,0.662,1755,0.662,1756,0.662,1757,0.662,1758,0.662,1759,0.662,1760,0.662,1761,0.662,1762,0.662,1763,0.662,1764,0.662,1765,0.662,1766,0.662,1767,0.662,1768,0.662,1769,0.662,1770,1.188,1771,0.662,1772,0.662,1773,0.662,1774,0.662,1775,1.188,1776,0.662,1777,0.662,1778,0.662,1779,0.662,1780,0.662,1781,0.662,1782,0.662,1783,0.662,1784,0.662,1785,0.662,1786,0.662,1787,0.662,1788,0.662,1789,0.662,1790,0.662,1791,0.662,1792,0.662,1793,0.662,1794,0.662,1795,0.662,1796,0.662,1797,0.662,1798,0.662,1799,0.662,1800,0.662,1801,0.662,1802,0.662,1803,0.662,1804,0.662,1805,0.662,1806,0.662,1807,0.662,1808,0.662,1809,0.662,1810,0.662,1811,0.662,1812,0.662,1813,0.662,1814,0.662,1815,0.662,1816,0.662,1817,0.662,1818,0.662,1819,0.662,1820,0.662,1821,0.662,1822,0.662,1823,0.662,1824,0.662,1825,0.662,1826,0.662,1827,0.662,1828,0.662,1829,0.662,1830,0.662,1831,0.662,1832,0.662,1833,0.662,1834,0.662,1835,0.662,1836,0.662,1837,0.662,1838,0.662,1839,0.662,1840,0.662,1841,0.662,1842,0.662,1843,0.662,1844,0.662,1845,0.662,1846,0.662,1847,0.662,1848,0.662,1849,0.662,1850,0.662,1851,0.662,1852,0.662,1853,0.662,1854,0.662,1855,0.662,1856,0.662,1857,0.662,1858,0.662,1859,0.662,1860,0.662,1861,0.662,1862,0.662,1863,0.662,1864,0.662,1865,0.662,1866,0.662,1867,0.662,1868,0.662,1869,0.662,1870,0.662,1871,0.662,1872,0.662,1873,0.662,1874,0.662,1875,0.662,1876,0.662,1877,0.662,1878,0.662,1879,0.662,1880,0.662,1881,0.662,1882,0.662,1883,0.662,1884,0.662,1885,0.662,1886,0.662,1887,0.662,1888,0.662,1889,0.662,1890,0.662,1891,0.662,1892,0.662,1893,0.662,1894,0.662,1895,0.662,1896,0.662,1897,0.662,1898,0.662,1899,0.662,1900,0.662,1901,0.662,1902,0.662,1903,0.662,1904,0.662,1905,0.662,1906,0.662,1907,0.662,1908,0.662,1909,0.662,1910,0.662,1911,0.662,1912,0.662,1913,0.662,1914,0.662,1915,0.662,1916,0.662,1917,0.662,1918,0.662,1919,0.662,1920,0.662,1921,0.662,1922,0.662,1923,0.662,1924,0.662,1925,0.662,1926,0.662,1927,0.662,1928,0.662,1929,0.662,1930,0.662,1931,0.662,1932,0.662,1933,0.662,1934,0.662,1935,0.662,1936,0.662,1937,0.662,1938,0.662,1939,0.662,1940,0.662,1941,0.662,1942,0.662,1943,0.662,1944,0.662,1945,0.662,1946,0.662,1947,0.662,1948,0.662,1949,0.662,1950,0.662,1951,0.662,1952,0.662,1953,0.662,1954,0.662,1955,0.662,1956,0.662,1957,0.662,1958,0.662,1959,0.662,1960,0.662,1961,0.662,1962,0.662,1963,0.662,1964,0.662,1965,0.662,1966,0.662,1967,0.662,1968,0.662,1969,0.662,1970,0.662,1971,0.662,1972,0.662,1973,0.662,1974,0.662,1975,0.662,1976,0.662,1977,0.662,1978,0.662,1979,0.662,1980,0.662,1981,0.662,1982,0.662,1983,0.662,1984,0.662,1985,0.662,1986,0.662,1987,0.662,1988,0.662,1989,0.662,1990,0.662,1991,0.662,1992,0.662,1993,0.662,1994,0.662,1995,0.662,1996,0.662,1997,0.662,1998,0.662,1999,0.662,2000,0.662,2001,0.662,2002,0.662,2003,0.662,2004,0.662,2005,0.662,2006,0.662,2007,0.662,2008,0.662,2009,0.662,2010,0.662,2011,0.662,2012,0.662,2013,0.662,2014,0.662,2015,0.662,2016,0.662,2017,0.662,2018,0.662,2019,0.662,2020,0.662,2021,0.662,2022,0.662,2023,0.662,2024,0.662,2025,0.662,2026,0.662,2027,0.662,2028,0.662,2029,0.662,2030,0.662,2031,0.662,2032,0.662,2033,0.662,2034,0.662,2035,0.662,2036,0.662,2037,0.662,2038,0.662,2039,0.662,2040,0.662,2041,0.662,2042,0.662,2043,0.662,2044,0.662,2045,0.662,2046,0.662,2047,0.662,2048,0.662,2049,0.662,2050,0.662,2051,0.662,2052,0.662,2053,0.662,2054,0.662,2055,0.662,2056,1.617,2057,0.662,2058,0.662,2059,0.662,2060,0.662,2061,0.662,2062,0.662,2063,0.662,2064,0.662,2065,0.662,2066,0.662,2067,0.662,2068,0.662,2069,0.662,2070,0.662,2071,0.662,2072,0.662,2073,0.662,2074,0.662,2075,0.662,2076,0.662,2077,0.662,2078,0.662,2079,0.662,2080,0.662,2081,0.662,2082,0.662,2083,0.662,2084,0.662,2085,0.662,2086,0.662,2087,0.662,2088,0.662,2089,0.662,2090,0.662,2091,0.662,2092,0.662,2093,0.662,2094,0.662,2095,0.662,2096,0.662,2097,0.662,2098,0.662,2099,0.662,2100,0.662,2101,0.662,2102,0.662,2103,0.662,2104,0.662,2105,0.662,2106,0.662,2107,0.662,2108,0.662,2109,0.662,2110,0.662,2111,0.662,2112,0.662,2113,0.662,2114,0.662,2115,0.662,2116,0.662,2117,0.662,2118,0.662,2119,0.662,2120,0.662,2121,0.662,2122,0.662,2123,1.188,2124,0.662,2125,0.662,2126,0.662,2127,0.662,2128,0.662,2129,0.662,2130,0.662,2131,0.662,2132,0.662,2133,0.662,2134,0.662,2135,1.617,2136,0.662,2137,0.662,2138,0.662,2139,0.662,2140,0.662,2141,0.662,2142,0.662,2143,0.662,2144,0.662,2145,0.662,2146,0.662,2147,0.662,2148,0.662,2149,0.662,2150,0.662,2151,0.662,2152,0.662,2153,0.662,2154,0.662,2155,0.662,2156,0.662,2157,0.662,2158,0.662,2159,0.662,2160,0.662,2161,0.662,2162,0.662,2163,0.662,2164,0.662,2165,0.662,2166,0.662,2167,0.662,2168,0.662,2169,0.662,2170,0.662,2171,0.662,2172,0.662,2173,0.662,2174,0.662,2175,0.662,2176,0.662,2177,0.662,2178,0.662,2179,0.662,2180,0.662,2181,0.662,2182,0.662,2183,0.662,2184,0.662,2185,0.662,2186,0.662,2187,0.662,2188,0.662,2189,0.662,2190,0.662,2191,0.662,2192,0.662,2193,0.662,2194,0.662,2195,0.662,2196,0.662,2197,0.662,2198,0.662,2199,0.662,2200,0.662,2201,0.662,2202,0.662,2203,0.662,2204,0.662,2205,0.662,2206,0.662,2207,0.662,2208,0.662,2209,0.662,2210,0.662,2211,0.662,2212,0.662,2213,0.662,2214,0.662,2215,0.662,2216,0.662,2217,0.662,2218,0.662,2219,0.662,2220,0.662,2221,0.662,2222,0.662,2223,0.662,2224,0.662,2225,0.662,2226,0.662,2227,0.662,2228,0.662,2229,0.662,2230,0.662,2231,0.662,2232,0.662,2233,0.662,2234,0.662,2235,0.662,2236,0.662,2237,0.662,2238,0.662,2239,0.662,2240,0.662,2241,0.662,2242,0.662,2243,0.662,2244,0.662,2245,0.662,2246,0.662,2247,0.662,2248,0.662,2249,0.662,2250,0.662,2251,0.662,2252,0.662,2253,0.662,2254,0.662,2255,0.662,2256,0.662,2257,0.662,2258,0.662,2259,0.662,2260,0.662,2261,0.662,2262,0.662,2263,0.662,2264,0.662,2265,0.662,2266,0.662,2267,0.662,2268,0.662,2269,0.662,2270,0.662,2271,0.662,2272,0.662,2273,0.662,2274,0.662,2275,0.662,2276,0.662,2277,0.662,2278,0.662,2279,0.662,2280,0.662,2281,0.662,2282,0.662,2283,0.662,2284,0.662,2285,0.662,2286,0.662,2287,0.662,2288,0.662,2289,0.662,2290,0.662,2291,0.662,2292,0.662,2293,0.662,2294,0.662,2295,0.662,2296,0.662,2297,0.662,2298,0.662,2299,0.662,2300,0.662,2301,0.662,2302,0.662,2303,0.662,2304,0.662,2305,1.188,2306,0.662,2307,0.662,2308,0.662,2309,0.662,2310,0.662,2311,0.662,2312,0.662,2313,0.662,2314,0.662,2315,0.662,2316,0.662,2317,0.662,2318,0.662,2319,0.662,2320,0.662,2321,0.662,2322,0.662,2323,0.662,2324,0.662,2325,0.662,2326,0.662,2327,0.662,2328,0.662,2329,0.662,2330,1.973,2331,0.662,2332,0.662,2333,0.662,2334,0.662,2335,0.662,2336,0.662,2337,0.662,2338,0.662,2339,0.662,2340,0.662,2341,0.662,2342,0.662,2343,0.662,2344,0.662,2345,0.662,2346,0.662,2347,0.662,2348,0.662,2349,0.662,2350,0.662,2351,0.662,2352,0.662,2353,0.662,2354,0.662,2355,0.662,2356,0.662,2357,0.662,2358,0.662,2359,0.662,2360,0.662,2361,0.662,2362,0.662,2363,0.662,2364,0.662,2365,0.662,2366,0.662,2367,0.662,2368,0.662,2369,0.662,2370,0.662,2371,0.662,2372,0.662,2373,0.662,2374,0.662,2375,0.662,2376,1.188,2377,0.662,2378,0.662,2379,0.662,2380,0.662,2381,0.662,2382,0.662,2383,0.662,2384,0.662,2385,0.662,2386,0.662,2387,0.662,2388,0.662,2389,0.662,2390,0.662,2391,0.662,2392,0.662,2393,0.662,2394,0.662,2395,1.188,2396,4.12,2397,0.662,2398,0.662,2399,0.662,2400,0.662,2401,0.662,2402,1.188,2403,0.662,2404,0.662,2405,0.662,2406,0.662,2407,0.662,2408,0.662,2409,0.662,2410,0.662,2411,0.662,2412,0.662,2413,0.662,2414,0.662,2415,0.662,2416,0.662,2417,0.662,2418,0.662,2419,0.662,2420,0.662,2421,0.662,2422,0.662,2423,0.662,2424,0.662,2425,0.662,2426,0.662,2427,0.662,2428,0.662,2429,0.662,2430,0.662,2431,0.662,2432,0.662,2433,0.662,2434,0.662,2435,0.662,2436,0.662,2437,0.662,2438,0.662,2439,0.662,2440,0.662,2441,0.662,2442,0.662,2443,1.188,2444,0.662,2445,0.662,2446,0.662,2447,0.662,2448,0.662,2449,0.662,2450,0.662,2451,0.662,2452,0.662,2453,0.662,2454,0.662,2455,0.662,2456,0.662,2457,0.662,2458,0.662,2459,0.662,2460,0.662,2461,0.662,2462,0.662,2463,0.662,2464,0.662,2465,0.662,2466,0.662,2467,1.188,2468,1.188,2469,0.662,2470,0.662,2471,0.662,2472,0.662,2473,0.662,2474,0.662,2475,0.662,2476,0.662,2477,0.662,2478,0.662,2479,0.662,2480,0.662,2481,0.662,2482,0.662,2483,0.662,2484,0.662,2485,0.662,2486,0.662,2487,0.662,2488,0.662,2489,0.662,2490,0.662,2491,0.662,2492,0.662,2493,0.662,2494,0.662,2495,1.617,2496,0.662,2497,0.662,2498,0.662,2499,0.662,2500,0.662,2501,1.188,2502,0.662,2503,0.662,2504,0.662,2505,0.662,2506,0.662,2507,0.662,2508,0.662,2509,0.662,2510,0.662,2511,0.662,2512,0.662,2513,0.662,2514,0.662,2515,0.662,2516,0.662,2517,0.662,2518,0.662,2519,0.662,2520,0.662,2521,0.662,2522,0.662,2523,0.662,2524,0.662,2525,0.662,2526,0.662,2527,0.662,2528,0.662,2529,0.662,2530,0.662,2531,0.662,2532,0.662,2533,0.662,2534,0.662,2535,0.662,2536,0.662,2537,0.662,2538,0.662,2539,0.662,2540,0.662,2541,0.662,2542,0.662,2543,0.662,2544,0.662,2545,0.662,2546,0.662,2547,0.662,2548,0.662,2549,0.662,2550,0.662,2551,0.662,2552,0.662,2553,0.662,2554,0.662,2555,0.662,2556,0.662,2557,0.662,2558,0.662,2559,0.662,2560,0.662,2561,0.662,2562,0.662,2563,0.662,2564,0.662,2565,0.662,2566,0.662,2567,0.662,2568,0.662,2569,0.662,2570,0.662,2571,0.662,2572,0.662,2573,0.662,2574,0.662,2575,0.662,2576,1.617,2577,0.662,2578,0.662,2579,0.662,2580,0.662,2581,0.662,2582,0.662,2583,0.662,2584,0.662,2585,0.662,2586,0.662,2587,0.662,2588,0.662,2589,0.662,2590,0.662,2591,0.662,2592,0.662,2593,0.662,2594,0.662,2595,0.662,2596,0.662,2597,0.662,2598,0.662,2599,0.662,2600,0.662,2601,0.662,2602,0.662,2603,0.662,2604,0.662,2605,0.662,2606,0.662,2607,0.662,2608,0.662,2609,0.662,2610,0.662,2611,0.662,2612,0.662,2613,0.662,2614,0.662,2615,0.662,2616,0.662,2617,0.662,2618,0.662,2619,0.662,2620,0.662,2621,0.662,2622,0.662,2623,0.662,2624,0.662,2625,0.662,2626,0.662,2627,0.662,2628,0.662,2629,0.662,2630,0.662,2631,0.662,2632,0.662,2633,0.662,2634,0.662,2635,0.662,2636,0.662,2637,0.662,2638,0.662,2639,0.662,2640,1.188,2641,0.662,2642,0.662,2643,0.662,2644,0.662,2645,0.662,2646,0.662,2647,0.662,2648,0.662,2649,0.662,2650,0.662,2651,0.662,2652,0.662,2653,0.662,2654,0.662,2655,0.662,2656,0.662,2657,0.662,2658,0.662,2659,0.662,2660,0.662,2661,0.662,2662,0.662,2663,0.662,2664,0.662,2665,0.662,2666,0.662,2667,0.662,2668,0.662,2669,0.662,2670,0.662,2671,0.662,2672,0.662,2673,0.662,2674,0.662,2675,0.662,2676,0.662,2677,0.662,2678,0.662,2679,0.662,2680,0.662,2681,0.662,2682,0.662,2683,0.662,2684,0.662,2685,0.662,2686,0.662,2687,0.662,2688,0.662,2689,0.662,2690,0.662,2691,0.662,2692,0.662,2693,0.662,2694,0.662,2695,0.662,2696,0.662,2697,0.662,2698,0.662,2699,0.662,2700,0.662,2701,0.662,2702,0.662,2703,0.662,2704,0.662,2705,0.662,2706,0.662,2707,0.662,2708,0.662,2709,0.662,2710,1.617,2711,0.662,2712,0.662,2713,0.662,2714,0.662,2715,0.662,2716,0.662,2717,0.662,2718,0.662,2719,0.662,2720,0.662,2721,0.662,2722,0.662,2723,0.662,2724,0.662,2725,0.662,2726,0.662,2727,0.662,2728,0.662,2729,0.662,2730,0.662,2731,0.662,2732,0.662,2733,0.662,2734,0.662,2735,0.662,2736,0.662,2737,0.662,2738,0.662,2739,0.662,2740,0.662,2741,0.662,2742,0.662,2743,1.188,2744,1.188,2745,1.188,2746,0.662,2747,0.662,2748,1.188,2749,1.188,2750,1.188,2751,0.662,2752,0.662,2753,0.662,2754,0.662,2755,0.662,2756,0.662,2757,1.188,2758,0.662,2759,0.662,2760,0.662,2761,0.662,2762,0.662,2763,0.662,2764,0.662,2765,0.662,2766,0.662,2767,0.662,2768,0.662,2769,0.662,2770,0.662,2771,0.662,2772,0.662,2773,0.662,2774,0.662,2775,0.662,2776,0.662,2777,0.662,2778,0.662,2779,0.662,2780,0.662,2781,0.662,2782,0.662,2783,0.662,2784,0.662,2785,0.662,2786,0.662,2787,0.662,2788,0.662,2789,0.662,2790,1.188,2791,0.662,2792,0.662,2793,0.662,2794,0.662,2795,0.662,2796,0.662,2797,0.662,2798,0.662,2799,0.662,2800,0.662,2801,0.662,2802,0.662,2803,0.662,2804,0.662,2805,0.662,2806,0.662,2807,0.662,2808,0.662,2809,0.662,2810,0.662,2811,0.662,2812,0.662,2813,0.662,2814,0.662,2815,0.662,2816,0.662,2817,0.662,2818,0.662,2819,0.662,2820,0.662,2821,0.662,2822,0.662,2823,0.662,2824,0.662,2825,0.662,2826,0.662,2827,0.662,2828,0.662,2829,0.662,2830,0.662,2831,0.662,2832,0.662,2833,0.662,2834,0.662,2835,0.662,2836,0.662,2837,0.662,2838,0.662,2839,0.662,2840,0.662,2841,0.662,2842,0.662,2843,0.662,2844,0.662,2845,0.662,2846,0.662,2847,0.662,2848,0.662,2849,0.662,2850,0.662,2851,0.662,2852,0.662,2853,0.662,2854,0.662,2855,0.662,2856,0.662,2857,0.662,2858,0.662,2859,0.662,2860,0.662,2861,0.662,2862,0.662,2863,0.662,2864,0.662,2865,0.662,2866,0.662,2867,0.662,2868,0.662,2869,0.662,2870,0.662,2871,0.662,2872,0.662,2873,0.662,2874,0.662,2875,0.662,2876,0.662,2877,0.662,2878,0.662,2879,0.662,2880,0.662,2881,1.188,2882,0.662,2883,0.662,2884,0.662,2885,0.662,2886,0.662,2887,0.662,2888,0.662,2889,0.662,2890,0.662,2891,0.662,2892,0.662,2893,0.662,2894,0.662,2895,0.662,2896,0.662]]],"invertedIndex":[["",{"_index":40,"title":{},"body":{"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"pipes/KeysPipe.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{},"contributing.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"properties.html":{},"miscellaneous/variables.html":{}}}],["0",{"_index":371,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"pipes/KeysPipe.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["0.12.0",{"_index":637,"title":{},"body":{"dependencies.html":{}}}],["0.6",{"_index":155,"title":{},"body":{"components/AppComponent.html":{}}}],["0/1",{"_index":592,"title":{},"body":{"coverage.html":{}}}],["0/10",{"_index":598,"title":{},"body":{"coverage.html":{}}}],["0/5",{"_index":589,"title":{},"body":{"coverage.html":{}}}],["0/9",{"_index":614,"title":{},"body":{"coverage.html":{}}}],["004|myst|tadeo",{"_index":2678,"title":{},"body":{"miscellaneous/variables.html":{}}}],["01c|gt",{"_index":1801,"title":{},"body":{"miscellaneous/variables.html":{}}}],["01d|f",{"_index":2086,"title":{},"body":{"miscellaneous/variables.html":{}}}],["02f|f",{"_index":2087,"title":{},"body":{"miscellaneous/variables.html":{}}}],["03e|sgpt12|sgpt13|sgpt114|sgpt121|sgpt122|sgpt123",{"_index":2200,"title":{},"body":{"miscellaneous/variables.html":{}}}],["05e|f",{"_index":2088,"title":{},"body":{"miscellaneous/variables.html":{}}}],["06c|lg",{"_index":2075,"title":{},"body":{"miscellaneous/variables.html":{}}}],["06d|\\bn",{"_index":2272,"title":{},"body":{"miscellaneous/variables.html":{}}}],["0704s|nt",{"_index":2745,"title":{},"body":{"miscellaneous/variables.html":{}}}],["08/11/2016",{"_index":431,"title":{},"body":{"classes/ReTree.html":{},"miscellaneous/variables.html":{}}}],["0806c|nt",{"_index":2748,"title":{},"body":{"miscellaneous/variables.html":{}}}],["08d",{"_index":2273,"title":{},"body":{"miscellaneous/variables.html":{}}}],["08|tb",{"_index":2477,"title":{},"body":{"miscellaneous/variables.html":{}}}],["09)|qualcore",{"_index":2478,"title":{},"body":{"miscellaneous/variables.html":{}}}],["0902s",{"_index":2752,"title":{},"body":{"miscellaneous/variables.html":{}}}],["0902s|nt",{"_index":2751,"title":{},"body":{"miscellaneous/variables.html":{}}}],["0907s|nt",{"_index":2750,"title":{},"body":{"miscellaneous/variables.html":{}}}],["0909t|nt",{"_index":2749,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1",{"_index":176,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"pipes/KeysPipe.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["1.3.3",{"_index":653,"title":{},"body":{"index.html":{}}}],["1.3.5",{"_index":655,"title":{},"body":{"index.html":{}}}],["1.4.1",{"_index":657,"title":{},"body":{"index.html":{}}}],["1.4.5",{"_index":659,"title":{},"body":{"index.html":{}}}],["1/1",{"_index":608,"title":{},"body":{"coverage.html":{}}}],["1/4",{"_index":616,"title":{},"body":{"coverage.html":{}}}],["10",{"_index":1721,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10)\\\\b",{"_index":2233,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10.0",{"_index":1770,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10.10",{"_index":1785,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10.11",{"_index":1786,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10.12",{"_index":1787,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10.13",{"_index":1788,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10.14",{"_index":1789,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10.15",{"_index":1790,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10.16",{"_index":1791,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10.3",{"_index":1777,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10.3|mac",{"_index":1776,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10.4",{"_index":1779,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10.4|mac",{"_index":1778,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10.5",{"_index":1780,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10.6",{"_index":1781,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10.7",{"_index":1782,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10.8",{"_index":1783,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10.9",{"_index":1784,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10.x",{"_index":660,"title":{},"body":{"index.html":{}}}],["100",{"_index":178,"title":{},"body":{"components/AppComponent.html":{},"coverage.html":{}}}],["1001",{"_index":2577,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1002|freetab",{"_index":2583,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1003",{"_index":2590,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1004|freetab",{"_index":2586,"title":{},"body":{"miscellaneous/variables.html":{}}}],["100px",{"_index":168,"title":{},"body":{"components/AppComponent.html":{}}}],["100|spx",{"_index":1667,"title":{},"body":{"miscellaneous/variables.html":{}}}],["100|tab07",{"_index":2128,"title":{},"body":{"miscellaneous/variables.html":{}}}],["100|tab09",{"_index":2149,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1010",{"_index":2790,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1014",{"_index":2575,"title":{},"body":{"miscellaneous/variables.html":{}}}],["101|masterchef)\\\\b",{"_index":2827,"title":{},"body":{"miscellaneous/variables.html":{}}}],["101|s7",{"_index":2258,"title":{},"body":{"miscellaneous/variables.html":{}}}],["101|tab07",{"_index":2129,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1020|tm",{"_index":2324,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1027",{"_index":2479,"title":{},"body":{"miscellaneous/variables.html":{}}}],["103|s7",{"_index":2259,"title":{},"body":{"miscellaneous/variables.html":{}}}],["104|s7",{"_index":2260,"title":{},"body":{"miscellaneous/variables.html":{}}}],["105|s7",{"_index":2261,"title":{},"body":{"miscellaneous/variables.html":{}}}],["106",{"_index":2262,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10\\.0",{"_index":882,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10d|m532|q572)\\b",{"_index":2089,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10e|viewpad",{"_index":2727,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10f|tb2",{"_index":2115,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10hd|\\\\btp750\\\\b|\\\\bqtaqz3\\\\b|wvt101|tm1088|kt107",{"_index":2896,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10pi|viewpad",{"_index":2726,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10px",{"_index":148,"title":{},"body":{"components/AppComponent.html":{}}}],["10s|viewpad",{"_index":2728,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10w32|tbl",{"_index":2869,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10wdkbo2013|tbl",{"_index":2861,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10wdkb|tbl",{"_index":2860,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10wkb|tbl",{"_index":2870,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10|dell",{"_index":2124,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10|hexen",{"_index":2692,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10|ideos",{"_index":2254,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10|memphis",{"_index":2693,"title":{},"body":{"miscellaneous/variables.html":{}}}],["10|nexo",{"_index":2849,"title":{},"body":{"miscellaneous/variables.html":{}}}],["11",{"_index":1700,"title":{},"body":{"miscellaneous/variables.html":{}}}],["11.x",{"_index":662,"title":{},"body":{"index.html":{}}}],["11_0",{"_index":1792,"title":{},"body":{"miscellaneous/variables.html":{}}}],["11|venue",{"_index":2120,"title":{},"body":{"miscellaneous/variables.html":{}}}],["12",{"_index":1737,"title":{},"body":{"miscellaneous/variables.html":{}}}],["12)\\b",{"_index":1669,"title":{},"body":{"miscellaneous/variables.html":{}}}],["12.x",{"_index":664,"title":{},"body":{"index.html":{}}}],["1207)\\b",{"_index":2878,"title":{},"body":{"miscellaneous/variables.html":{}}}],["120|spt",{"_index":1663,"title":{},"body":{"miscellaneous/variables.html":{}}}],["126se",{"_index":2369,"title":{},"body":{"miscellaneous/variables.html":{}}}],["13",{"_index":346,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"miscellaneous/variables.html":{}}}],["13.x",{"_index":666,"title":{},"body":{"index.html":{}}}],["1331|freetab",{"_index":2585,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1331|megapad",{"_index":2721,"title":{},"body":{"miscellaneous/variables.html":{}}}],["14",{"_index":1734,"title":{},"body":{"miscellaneous/variables.html":{}}}],["14.x",{"_index":668,"title":{},"body":{"index.html":{}}}],["140|spx",{"_index":1664,"title":{},"body":{"miscellaneous/variables.html":{}}}],["146se|tb",{"_index":2368,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1497",{"_index":2623,"title":{},"body":{"miscellaneous/variables.html":{}}}],["15",{"_index":1732,"title":{},"body":{"miscellaneous/variables.html":{}}}],["15.0.0",{"_index":625,"title":{},"body":{"dependencies.html":{}}}],["15.0.2",{"_index":619,"title":{},"body":{"dependencies.html":{}}}],["15.x",{"_index":670,"title":{},"body":{"index.html":{}}}],["150|tab07",{"_index":2130,"title":{},"body":{"miscellaneous/variables.html":{}}}],["150|tab08",{"_index":2145,"title":{},"body":{"miscellaneous/variables.html":{}}}],["150|tab10",{"_index":2152,"title":{},"body":{"miscellaneous/variables.html":{}}}],["151",{"_index":2131,"title":{},"body":{"miscellaneous/variables.html":{}}}],["152|tab07",{"_index":2133,"title":{},"body":{"miscellaneous/variables.html":{}}}],["16",{"_index":1730,"title":{},"body":{"miscellaneous/variables.html":{}}}],["17b|t",{"_index":2649,"title":{},"body":{"miscellaneous/variables.html":{}}}],["17p\\b",{"_index":2650,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1851|megapad",{"_index":2722,"title":{},"body":{"miscellaneous/variables.html":{}}}],["19300|sgh",{"_index":995,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1\\b",{"_index":2819,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1w\\b",{"_index":2841,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1|st702xx",{"_index":2376,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1|st70408",{"_index":2375,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1|vt10416",{"_index":2374,"title":{},"body":{"miscellaneous/variables.html":{}}}],["2",{"_index":813,"title":{},"body":{"overview.html":{},"miscellaneous/variables.html":{}}}],["2.0.5",{"_index":661,"title":{},"body":{"index.html":{}}}],["2.0|connect",{"_index":2482,"title":{},"body":{"miscellaneous/variables.html":{}}}],["2.0|me",{"_index":2484,"title":{},"body":{"miscellaneous/variables.html":{}}}],["2.1.0",{"_index":663,"title":{},"body":{"index.html":{}}}],["2.2.2",{"_index":629,"title":{},"body":{"dependencies.html":{}}}],["2.4.1",{"_index":635,"title":{},"body":{"dependencies.html":{}}}],["200)\\\\b",{"_index":2159,"title":{},"body":{"miscellaneous/variables.html":{}}}],["2000",{"_index":1709,"title":{},"body":{"miscellaneous/variables.html":{}}}],["2003",{"_index":1713,"title":{},"body":{"miscellaneous/variables.html":{}}}],["200|tab07",{"_index":2134,"title":{},"body":{"miscellaneous/variables.html":{}}}],["200|tab08",{"_index":2146,"title":{},"body":{"miscellaneous/variables.html":{}}}],["201",{"_index":2135,"title":{},"body":{"miscellaneous/variables.html":{}}}],["201c|s7",{"_index":2256,"title":{},"body":{"miscellaneous/variables.html":{}}}],["201|s7",{"_index":2264,"title":{},"body":{"miscellaneous/variables.html":{}}}],["201|tab10",{"_index":2153,"title":{},"body":{"miscellaneous/variables.html":{}}}],["201|tab274euk|tab275euk|tab374euk|tab462euk|tab474euk|tab9",{"_index":2158,"title":{},"body":{"miscellaneous/variables.html":{}}}],["2021",{"_index":747,"title":{},"body":{"license.html":{}}}],["202u|s7",{"_index":2257,"title":{},"body":{"miscellaneous/variables.html":{}}}],["2096|freetab",{"_index":2573,"title":{},"body":{"miscellaneous/variables.html":{}}}],["20px",{"_index":164,"title":{},"body":{"components/AppComponent.html":{}}}],["210|tab07",{"_index":2137,"title":{},"body":{"miscellaneous/variables.html":{}}}],["211",{"_index":2154,"title":{},"body":{"miscellaneous/variables.html":{}}}],["211|tab07",{"_index":2138,"title":{},"body":{"miscellaneous/variables.html":{}}}],["211|tab09",{"_index":2150,"title":{},"body":{"miscellaneous/variables.html":{}}}],["212|tab07",{"_index":2139,"title":{},"body":{"miscellaneous/variables.html":{}}}],["214|tab07",{"_index":2140,"title":{},"body":{"miscellaneous/variables.html":{}}}],["2151",{"_index":2723,"title":{},"body":{"miscellaneous/variables.html":{}}}],["21|hp",{"_index":2025,"title":{},"body":{"miscellaneous/variables.html":{}}}],["220|tab07",{"_index":2141,"title":{},"body":{"miscellaneous/variables.html":{}}}],["22q|t7",{"_index":2647,"title":{},"body":{"miscellaneous/variables.html":{}}}],["23",{"_index":599,"title":{},"body":{"coverage.html":{}}}],["25",{"_index":615,"title":{},"body":{"coverage.html":{}}}],["2520",{"_index":2195,"title":{},"body":{"miscellaneous/variables.html":{}}}],["26uc|sgh",{"_index":1250,"title":{},"body":{"miscellaneous/variables.html":{}}}],["2a|surftab",{"_index":2380,"title":{},"body":{"miscellaneous/variables.html":{}}}],["2g",{"_index":2483,"title":{},"body":{"miscellaneous/variables.html":{}}}],["2g|z99|z930|z999|z990|z909|z919|z900",{"_index":2282,"title":{},"body":{"miscellaneous/variables.html":{}}}],["2|cink",{"_index":1648,"title":{},"body":{"miscellaneous/variables.html":{}}}],["2|st10216",{"_index":2379,"title":{},"body":{"miscellaneous/variables.html":{}}}],["2|st80208|st97216|st70104",{"_index":2377,"title":{},"body":{"miscellaneous/variables.html":{}}}],["2|vt10416",{"_index":2378,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3",{"_index":1699,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3.x.x",{"_index":665,"title":{},"body":{"index.html":{}}}],["30|tab09",{"_index":2148,"title":{},"body":{"miscellaneous/variables.html":{}}}],["310|sp",{"_index":1660,"title":{},"body":{"miscellaneous/variables.html":{}}}],["340|xt",{"_index":1659,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3603p|nt",{"_index":2744,"title":{},"body":{"miscellaneous/variables.html":{}}}],["360|sp60|spt",{"_index":1661,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3702s|nt",{"_index":2743,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3702|nt",{"_index":2742,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3805c",{"_index":2747,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3805c|nt",{"_index":2746,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3ds|switch",{"_index":1681,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3g",{"_index":2443,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3ge|t720",{"_index":2776,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3g|\\\\bp70h\\\\b|p79hd",{"_index":2763,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3g|\\\\bp78hd\\\\b|\\\\ba78\\\\b|\\\\bp75\\\\b|g17s",{"_index":2767,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3g|\\\\bp79hd\\\\b|\\\\bp89s\\\\b|\\\\ba88\\\\b",{"_index":2765,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3g|\\\\bp85t\\\\b|\\\\bp90\\\\b",{"_index":2769,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3g|\\\\bp90hd\\\\b|p89",{"_index":2761,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3g|\\\\bx80h\\\\b|p98",{"_index":2759,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3g|\\\\bx89\\\\b|p80",{"_index":2758,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3g|g17h",{"_index":2768,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3g|g18d",{"_index":2764,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3g|nexo",{"_index":2854,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3g|tab07",{"_index":2136,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3g|tab08",{"_index":2147,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3g|visture",{"_index":2499,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3g|x98",{"_index":2762,"title":{},"body":{"miscellaneous/variables.html":{}}}],["3ix)|xcd28|xcd35|\\b001dl\\b|\\b101dl\\b|\\bgs01\\b",{"_index":980,"title":{},"body":{"miscellaneous/variables.html":{}}}],["4",{"_index":1726,"title":{},"body":{"miscellaneous/variables.html":{}}}],["4.0|winnt4.0|winnt|windows",{"_index":1773,"title":{},"body":{"miscellaneous/variables.html":{}}}],["4.18.2",{"_index":630,"title":{},"body":{"dependencies.html":{}}}],["4.90|windows",{"_index":1758,"title":{},"body":{"miscellaneous/variables.html":{}}}],["4.x.x",{"_index":667,"title":{},"body":{"index.html":{}}}],["4/17",{"_index":600,"title":{},"body":{"coverage.html":{}}}],["400|tab07",{"_index":2142,"title":{},"body":{"miscellaneous/variables.html":{}}}],["400|tab10",{"_index":2156,"title":{},"body":{"miscellaneous/variables.html":{}}}],["4052r",{"_index":1679,"title":{},"body":{"miscellaneous/variables.html":{}}}],["40px",{"_index":141,"title":{},"body":{"components/AppComponent.html":{}}}],["410|tab10",{"_index":2151,"title":{},"body":{"miscellaneous/variables.html":{}}}],["410|tab13",{"_index":2157,"title":{},"body":{"miscellaneous/variables.html":{}}}],["416|tb",{"_index":2367,"title":{},"body":{"miscellaneous/variables.html":{}}}],["430hd|tb",{"_index":2362,"title":{},"body":{"miscellaneous/variables.html":{}}}],["431hd|tb",{"_index":2361,"title":{},"body":{"miscellaneous/variables.html":{}}}],["434hd|tb",{"_index":2349,"title":{},"body":{"miscellaneous/variables.html":{}}}],["436|tb",{"_index":2366,"title":{},"body":{"miscellaneous/variables.html":{}}}],["446",{"_index":2365,"title":{},"body":{"miscellaneous/variables.html":{}}}],["470hd|tb",{"_index":2360,"title":{},"body":{"miscellaneous/variables.html":{}}}],["485",{"_index":2143,"title":{},"body":{"miscellaneous/variables.html":{}}}],["4\\b",{"_index":888,"title":{},"body":{"miscellaneous/variables.html":{}}}],["4gb",{"_index":2685,"title":{},"body":{"miscellaneous/variables.html":{}}}],["4gb|memphis",{"_index":2694,"title":{},"body":{"miscellaneous/variables.html":{}}}],["4gb|stone",{"_index":2687,"title":{},"body":{"miscellaneous/variables.html":{}}}],["4g|\\\\bp80\\\\b|\\\\bx90hd\\\\b|x98",{"_index":2755,"title":{},"body":{"miscellaneous/variables.html":{}}}],["4g|android.*\\bevo\\b|t",{"_index":971,"title":{},"body":{"miscellaneous/variables.html":{}}}],["4g|highway|getaway|stairway|darkside|darkfull|darknight|darkmoon|slide|wax",{"_index":1642,"title":{},"body":{"miscellaneous/variables.html":{}}}],["4g|pg41200|pg09410",{"_index":2048,"title":{},"body":{"miscellaneous/variables.html":{}}}],["4g|rainbow|bloom",{"_index":1643,"title":{},"body":{"miscellaneous/variables.html":{}}}],["4px",{"_index":159,"title":{},"body":{"components/AppComponent.html":{}}}],["4|nexus",{"_index":976,"title":{},"body":{"miscellaneous/variables.html":{}}}],["4|tagi",{"_index":2894,"title":{},"body":{"miscellaneous/variables.html":{}}}],["5",{"_index":97,"title":{},"body":{"components/AppComponent.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["5.0.0",{"_index":631,"title":{},"body":{"dependencies.html":{}}}],["5.0.1",{"_index":814,"title":{},"body":{"properties.html":{}}}],["5.0|windows",{"_index":1760,"title":{},"body":{"miscellaneous/variables.html":{}}}],["5.1|windows",{"_index":1761,"title":{},"body":{"miscellaneous/variables.html":{}}}],["5.2",{"_index":1762,"title":{},"body":{"miscellaneous/variables.html":{}}}],["5.x.x",{"_index":669,"title":{},"body":{"index.html":{}}}],["500hd|tb",{"_index":2359,"title":{},"body":{"miscellaneous/variables.html":{}}}],["501|rmt",{"_index":2637,"title":{},"body":{"miscellaneous/variables.html":{}}}],["504|tb",{"_index":2364,"title":{},"body":{"miscellaneous/variables.html":{}}}],["506|tb",{"_index":2363,"title":{},"body":{"miscellaneous/variables.html":{}}}],["527|tab",{"_index":2447,"title":{},"body":{"miscellaneous/variables.html":{}}}],["560|mtv",{"_index":2236,"title":{},"body":{"miscellaneous/variables.html":{}}}],["5|nexus",{"_index":977,"title":{},"body":{"miscellaneous/variables.html":{}}}],["5|spx",{"_index":1665,"title":{},"body":{"miscellaneous/variables.html":{}}}],["6",{"_index":644,"title":{},"body":{"index.html":{},"miscellaneous/variables.html":{}}}],["6.0",{"_index":1763,"title":{},"body":{"miscellaneous/variables.html":{}}}],["6.1",{"_index":1765,"title":{},"body":{"miscellaneous/variables.html":{}}}],["6.2",{"_index":1769,"title":{},"body":{"miscellaneous/variables.html":{}}}],["6.3",{"_index":1767,"title":{},"body":{"miscellaneous/variables.html":{}}}],["600px",{"_index":138,"title":{},"body":{"components/AppComponent.html":{}}}],["601|rmt",{"_index":2636,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7",{"_index":957,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7.4|freetab",{"_index":2570,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7.5",{"_index":1771,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7.5.7",{"_index":633,"title":{},"body":{"dependencies.html":{}}}],["7.5|freetab",{"_index":2574,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7.x",{"_index":654,"title":{},"body":{"index.html":{}}}],["7002|freetab",{"_index":2582,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7003|freetab",{"_index":2581,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7004|freetab",{"_index":2571,"title":{},"body":{"miscellaneous/variables.html":{}}}],["700hd|tb",{"_index":2358,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7010|tm",{"_index":2315,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7011|tm",{"_index":2314,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7016|tm",{"_index":2299,"title":{},"body":{"miscellaneous/variables.html":{}}}],["701|pad",{"_index":2702,"title":{},"body":{"miscellaneous/variables.html":{}}}],["701|rme",{"_index":2635,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7020|tm",{"_index":2313,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7021|tm",{"_index":2312,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7022|tm",{"_index":2311,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7023|tm",{"_index":2316,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7024|tm",{"_index":2300,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7025",{"_index":2317,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7026|tm",{"_index":2301,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7027w|tm",{"_index":2320,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7037w|tm",{"_index":2318,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7038w|tm",{"_index":2319,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7041|tm",{"_index":2302,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7043|tm",{"_index":2303,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7045|tm",{"_index":2296,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7047",{"_index":2304,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7055|tm",{"_index":2297,"title":{},"body":{"miscellaneous/variables.html":{}}}],["705a|rmt",{"_index":2634,"title":{},"body":{"miscellaneous/variables.html":{}}}],["705a|tb",{"_index":2339,"title":{},"body":{"miscellaneous/variables.html":{}}}],["707a|tb",{"_index":2338,"title":{},"body":{"miscellaneous/variables.html":{}}}],["709a|tb",{"_index":2340,"title":{},"body":{"miscellaneous/variables.html":{}}}],["70|79|80|90|97|101|familypad|)(b|c|)(g10",{"_index":2183,"title":{},"body":{"miscellaneous/variables.html":{}}}],["710hd|tb",{"_index":2348,"title":{},"body":{"miscellaneous/variables.html":{}}}],["710|b1",{"_index":2060,"title":{},"body":{"miscellaneous/variables.html":{}}}],["711",{"_index":2638,"title":{},"body":{"miscellaneous/variables.html":{}}}],["711a|tb",{"_index":2341,"title":{},"body":{"miscellaneous/variables.html":{}}}],["711|a1",{"_index":2061,"title":{},"body":{"miscellaneous/variables.html":{}}}],["712|pad",{"_index":2703,"title":{},"body":{"miscellaneous/variables.html":{}}}],["714|pad",{"_index":2704,"title":{},"body":{"miscellaneous/variables.html":{}}}],["715a|tb",{"_index":2337,"title":{},"body":{"miscellaneous/variables.html":{}}}],["716|pad",{"_index":2705,"title":{},"body":{"miscellaneous/variables.html":{}}}],["717|pad",{"_index":2706,"title":{},"body":{"miscellaneous/variables.html":{}}}],["718|pad",{"_index":2707,"title":{},"body":{"miscellaneous/variables.html":{}}}],["719a|tb",{"_index":2333,"title":{},"body":{"miscellaneous/variables.html":{}}}],["71|enjoy",{"_index":2231,"title":{},"body":{"miscellaneous/variables.html":{}}}],["720hd|tb",{"_index":2357,"title":{},"body":{"miscellaneous/variables.html":{}}}],["720|pad",{"_index":2708,"title":{},"body":{"miscellaneous/variables.html":{}}}],["721",{"_index":2709,"title":{},"body":{"miscellaneous/variables.html":{}}}],["721hd|tb",{"_index":2347,"title":{},"body":{"miscellaneous/variables.html":{}}}],["722hd|tb",{"_index":2356,"title":{},"body":{"miscellaneous/variables.html":{}}}],["722|pad",{"_index":2711,"title":{},"body":{"miscellaneous/variables.html":{}}}],["723a|tb",{"_index":2336,"title":{},"body":{"miscellaneous/variables.html":{}}}],["725a|tb",{"_index":2332,"title":{},"body":{"miscellaneous/variables.html":{}}}],["727a|tb",{"_index":2331,"title":{},"body":{"miscellaneous/variables.html":{}}}],["730hd|tb",{"_index":2355,"title":{},"body":{"miscellaneous/variables.html":{}}}],["73k|primo",{"_index":2219,"title":{},"body":{"miscellaneous/variables.html":{}}}],["73l|primo",{"_index":2220,"title":{},"body":{"miscellaneous/variables.html":{}}}],["73|primo",{"_index":2226,"title":{},"body":{"miscellaneous/variables.html":{}}}],["740hd|tb",{"_index":2354,"title":{},"body":{"miscellaneous/variables.html":{}}}],["750hd",{"_index":2353,"title":{},"body":{"miscellaneous/variables.html":{}}}],["75|primo",{"_index":2224,"title":{},"body":{"miscellaneous/variables.html":{}}}],["760hd|tb",{"_index":2352,"title":{},"body":{"miscellaneous/variables.html":{}}}],["76|primo",{"_index":2225,"title":{},"body":{"miscellaneous/variables.html":{}}}],["770hd|tb",{"_index":2346,"title":{},"body":{"miscellaneous/variables.html":{}}}],["771a",{"_index":2329,"title":{},"body":{"miscellaneous/variables.html":{}}}],["772a|tm",{"_index":2295,"title":{},"body":{"miscellaneous/variables.html":{}}}],["77|primo",{"_index":2222,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7800|freetab",{"_index":2572,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7801",{"_index":2584,"title":{},"body":{"miscellaneous/variables.html":{}}}],["780hd|tb",{"_index":2345,"title":{},"body":{"miscellaneous/variables.html":{}}}],["790hd|tb",{"_index":2344,"title":{},"body":{"miscellaneous/variables.html":{}}}],["790|pad",{"_index":2712,"title":{},"body":{"miscellaneous/variables.html":{}}}],["790|rm",{"_index":2630,"title":{},"body":{"miscellaneous/variables.html":{}}}],["792|pad",{"_index":2713,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7e|viewsonic",{"_index":2731,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7|8|10)|hp",{"_index":2020,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7|cream|cream",{"_index":2670,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7|dell",{"_index":2122,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7|enjoy",{"_index":2232,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7|essentia|galatea|fusion|onix",{"_index":2666,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7|kandy|scape|saphyr",{"_index":2673,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7|landa|titan|scooby|deox|stella|themis|argon",{"_index":2667,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7|myst|tab7",{"_index":2677,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7|neron",{"_index":2672,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7|rebel|biox|rebel",{"_index":2674,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7|sygnus|hexen|finity",{"_index":2669,"title":{},"body":{"miscellaneous/variables.html":{}}}],["7|windows",{"_index":1764,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8",{"_index":1718,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8.1",{"_index":1772,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8.1|windows",{"_index":1766,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8.x",{"_index":656,"title":{},"body":{"index.html":{}}}],["8001|freetab",{"_index":2578,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8002|freetab",{"_index":2587,"title":{},"body":{"miscellaneous/variables.html":{}}}],["800ng|endeavour",{"_index":2789,"title":{},"body":{"miscellaneous/variables.html":{}}}],["800|sp",{"_index":1662,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8014|freetab",{"_index":2588,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8041|tm",{"_index":2306,"title":{},"body":{"miscellaneous/variables.html":{}}}],["805a|tb",{"_index":2335,"title":{},"body":{"miscellaneous/variables.html":{}}}],["807a|tb",{"_index":2328,"title":{},"body":{"miscellaneous/variables.html":{}}}],["80|xt",{"_index":1657,"title":{},"body":{"miscellaneous/variables.html":{}}}],["81",{"_index":2227,"title":{},"body":{"miscellaneous/variables.html":{}}}],["810|\\\\ba3",{"_index":2065,"title":{},"body":{"miscellaneous/variables.html":{}}}],["810|a1",{"_index":2062,"title":{},"body":{"miscellaneous/variables.html":{}}}],["810|ctp",{"_index":2506,"title":{},"body":{"miscellaneous/variables.html":{}}}],["811|a1",{"_index":2063,"title":{},"body":{"miscellaneous/variables.html":{}}}],["818|ctp",{"_index":2507,"title":{},"body":{"miscellaneous/variables.html":{}}}],["81l|primo",{"_index":2221,"title":{},"body":{"miscellaneous/variables.html":{}}}],["823a|tb",{"_index":2334,"title":{},"body":{"miscellaneous/variables.html":{}}}],["828|ctp",{"_index":2508,"title":{},"body":{"miscellaneous/variables.html":{}}}],["830)\\\\b|w3",{"_index":2064,"title":{},"body":{"miscellaneous/variables.html":{}}}],["838|ctp",{"_index":2509,"title":{},"body":{"miscellaneous/variables.html":{}}}],["840hd|tb",{"_index":2351,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8504f",{"_index":2117,"title":{},"body":{"miscellaneous/variables.html":{}}}],["850m|yt3",{"_index":2102,"title":{},"body":{"miscellaneous/variables.html":{}}}],["860hd|tb",{"_index":2350,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8703f|tab2a7",{"_index":2114,"title":{},"body":{"miscellaneous/variables.html":{}}}],["878g|rmd",{"_index":2632,"title":{},"body":{"miscellaneous/variables.html":{}}}],["880hd|tb",{"_index":2343,"title":{},"body":{"miscellaneous/variables.html":{}}}],["888|ctp",{"_index":2510,"title":{},"body":{"miscellaneous/variables.html":{}}}],["890hd",{"_index":2342,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8gb|andromeda|silken|x2|andromeda",{"_index":2688,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8gb|myst|draco",{"_index":2676,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8gb|onix",{"_index":2695,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8g|tblt79|tbl",{"_index":2867,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8w16|tbl",{"_index":2868,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8|planet|triton|unique",{"_index":2691,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8|slate",{"_index":2024,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8|sp",{"_index":1666,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8|spx",{"_index":1668,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8|venue",{"_index":2121,"title":{},"body":{"miscellaneous/variables.html":{}}}],["8|windows",{"_index":1768,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9",{"_index":945,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9,7|touch",{"_index":2690,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9.]+|tolino",{"_index":2643,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9.x",{"_index":658,"title":{},"body":{"index.html":{}}}],["9000|freetab",{"_index":2569,"title":{},"body":{"miscellaneous/variables.html":{}}}],["900|f160|f180k|f180l|f180s|730|855|l160|ls740|ls840|ls970",{"_index":1598,"title":{},"body":{"miscellaneous/variables.html":{}}}],["900|hp",{"_index":2022,"title":{},"body":{"miscellaneous/variables.html":{}}}],["900|pad",{"_index":2714,"title":{},"body":{"miscellaneous/variables.html":{}}}],["90|enjoy",{"_index":2230,"title":{},"body":{"miscellaneous/variables.html":{}}}],["91|primo",{"_index":2229,"title":{},"body":{"miscellaneous/variables.html":{}}}],["930|sx",{"_index":1658,"title":{},"body":{"miscellaneous/variables.html":{}}}],["93|primo",{"_index":2223,"title":{},"body":{"miscellaneous/variables.html":{}}}],["95",{"_index":1702,"title":{},"body":{"miscellaneous/variables.html":{}}}],["95|win95|windows_95",{"_index":1755,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9702|freetab",{"_index":2580,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9704|freetab",{"_index":2589,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9706|freetab",{"_index":2579,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9715d|pad",{"_index":2715,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9716dr|pad",{"_index":2716,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9718dr|pad",{"_index":2717,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9719qr",{"_index":2718,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9720qr|telepad1030|telepad1032|telepad730|telepad731|telepad732|telepad735q|telepad830|telepad9730",{"_index":2719,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9720|tm",{"_index":2321,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9725|tm",{"_index":2322,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9737w|tm",{"_index":2323,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9738w|tm",{"_index":2325,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9740|tm",{"_index":2326,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9741|tm",{"_index":2307,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9743w|tb",{"_index":2327,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9747|tm",{"_index":2308,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9748|tm",{"_index":2309,"title":{},"body":{"miscellaneous/variables.html":{}}}],["974r|rmt",{"_index":2633,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9750|tm",{"_index":2298,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9751|tm",{"_index":2310,"title":{},"body":{"miscellaneous/variables.html":{}}}],["978|ctp",{"_index":2511,"title":{},"body":{"miscellaneous/variables.html":{}}}],["97g4|an10g2|an7bg3|an7fg3|an8g3|an8cg3|an7g3|an9g3|an7dg3|an7dg3st|an7dg3childpad|an10bg3|an10bg3dt|an9g2",{"_index":2163,"title":{},"body":{"miscellaneous/variables.html":{}}}],["97r|archos5|\\\\barchos",{"_index":2182,"title":{},"body":{"miscellaneous/variables.html":{}}}],["98",{"_index":1705,"title":{},"body":{"miscellaneous/variables.html":{}}}],["980|ctp",{"_index":2512,"title":{},"body":{"miscellaneous/variables.html":{}}}],["987|ctp",{"_index":2513,"title":{},"body":{"miscellaneous/variables.html":{}}}],["988|ctp",{"_index":2514,"title":{},"body":{"miscellaneous/variables.html":{}}}],["989",{"_index":2515,"title":{},"body":{"miscellaneous/variables.html":{}}}],["98|win98",{"_index":1759,"title":{},"body":{"miscellaneous/variables.html":{}}}],["997|rmd",{"_index":2631,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9]+|family",{"_index":2626,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9]+|smarttabii10|smarttabii7|vf",{"_index":2622,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9]+|tablc7|looney",{"_index":2618,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9]{0,2",{"_index":956,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9]{0,2}.?[0",{"_index":955,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9]{1,2}.?[0",{"_index":954,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9]{3,4",{"_index":1606,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9]{4}.[0",{"_index":953,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9_",{"_index":1794,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9x",{"_index":1757,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9x\\b",{"_index":1693,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9|dps",{"_index":2494,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9|neon",{"_index":2683,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9|t9w|amity",{"_index":2684,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]?3g|primus",{"_index":2606,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]?70c|onyx",{"_index":2596,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]?78e|luna",{"_index":2595,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]?79hd|emerald",{"_index":2594,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]?94",{"_index":2605,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]?94hd",{"_index":2607,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]?evo",{"_index":2610,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]?hd|orin",{"_index":2600,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]?m9|primus",{"_index":2604,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]?qs|android.*\\\\bq8\\\\b|sirius",{"_index":2609,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]?qs|sirius",{"_index":2611,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]?qs|spirit",{"_index":2612,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]?s)\\\\b",{"_index":2613,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]?s|diamond",{"_index":2593,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]?s|magnet",{"_index":2603,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]?s|onyx",{"_index":2597,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]?s|otis",{"_index":2601,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]?s|speedstar",{"_index":2602,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]?z",{"_index":2598,"title":{},"body":{"miscellaneous/variables.html":{}}}],["_]mini|evolio",{"_index":2795,"title":{},"body":{"miscellaneous/variables.html":{}}}],["__buttons",{"_index":179,"title":{},"body":{"components/AppComponent.html":{}}}],["__input",{"_index":175,"title":{},"body":{"components/AppComponent.html":{}}}],["__non_webpack_require__",{"_index":595,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["__non_webpack_require__.main",{"_index":827,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a01l|bah",{"_index":2266,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a101|tab",{"_index":2558,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a1021|tab",{"_index":2531,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a103|tab",{"_index":2559,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a104.2|r105bk|m713g|a972bk|tab",{"_index":2561,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a1042",{"_index":2566,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a104|tab",{"_index":2560,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a107|sgh",{"_index":1251,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a10\\\\b|\\\\ba3",{"_index":2066,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a117|sgh",{"_index":1252,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a11\\\\b",{"_index":2067,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a120|sph",{"_index":1463,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a1260|a1680|a555|a853",{"_index":983,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a127|sgh",{"_index":1253,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a1301|tx",{"_index":2437,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a137",{"_index":1254,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a157|sgh",{"_index":1256,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a167|sgh",{"_index":1257,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a177|sgh",{"_index":1258,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a187|sgh",{"_index":1259,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a197|sgh",{"_index":1260,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a1_07|ct704|ct1002|\\\\bm721\\\\b|rk30sdk|\\\\bevotab\\\\b|m758a|et904|alumium10|smartfren",{"_index":2891,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a1|a10",{"_index":2099,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a20\\\\b|\\\\ba3",{"_index":2069,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a227|sgh",{"_index":1261,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a237|sgh",{"_index":1262,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a257|sgh",{"_index":1263,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a30",{"_index":2070,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a310f|gt",{"_index":1591,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a310|sch",{"_index":1183,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a400",{"_index":1464,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a420|sph",{"_index":1466,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a437|sgh",{"_index":1264,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a460|sph",{"_index":1467,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a500|sph",{"_index":1468,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a517|sgh",{"_index":1265,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a530|sch",{"_index":1184,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a560|sph",{"_index":1469,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a570|sch",{"_index":1185,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a597",{"_index":1266,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a600s|vega",{"_index":1636,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a600|sph",{"_index":1470,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a610|sch",{"_index":1186,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a620|sph",{"_index":1471,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a630",{"_index":1187,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a630k|im",{"_index":1635,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a637|sgh",{"_index":1267,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a650s|im",{"_index":1634,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a650|sch",{"_index":1189,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a657|sgh",{"_index":1268,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a660|sph",{"_index":1472,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a667|sgh",{"_index":1269,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a687|sgh",{"_index":1270,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a690l",{"_index":1632,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a690s|im",{"_index":1633,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a697|sgh",{"_index":1271,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a700|sph",{"_index":1473,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a707|sgh",{"_index":1272,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a710k|im",{"_index":1631,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a717|sgh",{"_index":1273,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a71|b1",{"_index":2059,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a720l|im",{"_index":1630,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a725l|im",{"_index":1622,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a727|sgh",{"_index":1274,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a730s|im",{"_index":1629,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a737|sgh",{"_index":1275,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a73|tab",{"_index":2551,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a740s|im",{"_index":1628,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a740|sph",{"_index":1474,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a741l|tab",{"_index":2528,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a741|tab",{"_index":2527,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a747|sgh",{"_index":1276,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a750k|im",{"_index":1627,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a760s|im",{"_index":1626,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a760|sph",{"_index":1475,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a767",{"_index":1277,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a770k|im",{"_index":1625,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a775c|im",{"_index":1624,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a777|sgh",{"_index":1278,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a78",{"_index":2652,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a780l|im",{"_index":1623,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a7842|tab",{"_index":2526,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a790",{"_index":1476,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a790|sch",{"_index":1190,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a795|sch",{"_index":1191,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a797|sgh",{"_index":1279,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a800s|im",{"_index":1619,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a800|sph",{"_index":1477,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a810k|im",{"_index":1617,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a810s|im",{"_index":1618,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a817|sgh",{"_index":1280,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a820l|im",{"_index":1616,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a820|sph",{"_index":1478,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a827|sgh",{"_index":1281,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a830k|im",{"_index":1614,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a830l|im",{"_index":1613,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a830s|im",{"_index":1615,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a837|sgh",{"_index":1282,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a840s|im",{"_index":1612,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a840|sph",{"_index":1479,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a847|sgh",{"_index":1283,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a850s|im",{"_index":1611,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a850|sch",{"_index":1192,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a855|a953|a955|a956|motorola.*electrify|motorola.*i1|i867|i940|mb200|mb300|mb501|mb502|mb508|mb511",{"_index":984,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a867|sgh",{"_index":1284,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a870|sch",{"_index":1193,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a877|sgh",{"_index":1285,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a880|sph",{"_index":1480,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a887|sgh",{"_index":1286,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a890|sch",{"_index":1194,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a897|sgh",{"_index":1287,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a900|sph",{"_index":1481,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a927",{"_index":1288,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a93.2|tab",{"_index":2553,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a930|sch",{"_index":1195,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a93|tab",{"_index":2552,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a940|sph",{"_index":1482,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a950|sch",{"_index":1196,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a960|sph",{"_index":1483,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a970|sch",{"_index":1197,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a971|tab",{"_index":2562,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a975|tab",{"_index":2525,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a990|sch",{"_index":1198,"title":{},"body":{"miscellaneous/variables.html":{}}}],["above",{"_index":778,"title":{},"body":{"license.html":{}}}],["absolute",{"_index":147,"title":{},"body":{"components/AppComponent.html":{}}}],["ac7",{"_index":2866,"title":{},"body":{"miscellaneous/variables.html":{}}}],["accessible",{"_index":298,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["accessors",{"_index":30,"title":{},"body":{"components/AppComponent.html":{}}}],["acertablet",{"_index":2055,"title":{},"body":{"miscellaneous/variables.html":{}}}],["action",{"_index":802,"title":{},"body":{"license.html":{}}}],["active",{"_index":546,"title":{},"body":{"contributing.html":{}}}],["actual",{"_index":364,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["actual_component",{"_index":190,"title":{},"body":{"components/AppComponent.html":{}}}],["add",{"_index":571,"title":{},"body":{"contributing.html":{}}}],["advantablet",{"_index":2383,"title":{},"body":{"miscellaneous/variables.html":{}}}],["agains",{"_index":540,"title":{},"body":{"contributing.html":{}}}],["agent",{"_index":110,"title":{},"body":{"components/AppComponent.html":{},"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["age|line|advance|feel|follow|like|link|live|think",{"_index":2824,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ahsan",{"_index":329,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"license.html":{},"properties.html":{}}}],["ahsanayaz",{"_index":430,"title":{},"body":{"classes/ReTree.html":{},"miscellaneous/variables.html":{}}}],["ainoltablet",{"_index":2191,"title":{},"body":{"miscellaneous/variables.html":{}}}],["air",{"_index":2757,"title":{},"body":{"miscellaneous/variables.html":{}}}],["air|fine8",{"_index":2418,"title":{},"body":{"miscellaneous/variables.html":{}}}],["air|x98",{"_index":2756,"title":{},"body":{"miscellaneous/variables.html":{}}}],["alcatel",{"_index":935,"title":{},"body":{"miscellaneous/variables.html":{}}}],["alcatel|mobile",{"_index":1677,"title":{},"body":{"miscellaneous/variables.html":{}}}],["align",{"_index":162,"title":{},"body":{"components/AppComponent.html":{}}}],["allfinetablet",{"_index":2414,"title":{},"body":{"miscellaneous/variables.html":{}}}],["allview.*(viva|alldro|city|speed|all",{"_index":2178,"title":{},"body":{"miscellaneous/variables.html":{}}}],["allviewtablet",{"_index":2177,"title":{},"body":{"miscellaneous/variables.html":{}}}],["already",{"_index":523,"title":{},"body":{"contributing.html":{}}}],["amazing",{"_index":736,"title":{},"body":{"index.html":{}}}],["amoi",{"_index":938,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ampetablet",{"_index":2651,"title":{},"body":{"miscellaneous/variables.html":{}}}],["and/or",{"_index":770,"title":{},"body":{"license.html":{}}}],["android",{"_index":367,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["android.*(\\bmid\\b|mid",{"_index":2235,"title":{},"body":{"miscellaneous/variables.html":{}}}],["android.*(at100|at105|at200|at205|at270|at275|at300|at305|at1s5|at500|at570|at700|at830)|toshiba.*folio",{"_index":2072,"title":{},"body":{"miscellaneous/variables.html":{}}}],["android.*(k8gt|u9gt|u10gt|u16gt|u17gt|u18gt|u19gt|u20gt|u23gt|u30gt)|cube",{"_index":2207,"title":{},"body":{"miscellaneous/variables.html":{}}}],["android.*(rk2818|rk2808a|rk2918|rk3066)|rk2738|rk2808a",{"_index":2242,"title":{},"body":{"miscellaneous/variables.html":{}}}],["android.*\\b(a39|a37|a34|st8|st10|st7|smart",{"_index":2411,"title":{},"body":{"miscellaneous/variables.html":{}}}],["android.*\\b(f",{"_index":2085,"title":{},"body":{"miscellaneous/variables.html":{}}}],["android.*\\bg1\\b",{"_index":2407,"title":{},"body":{"miscellaneous/variables.html":{}}}],["android.*\\bnabi",{"_index":2286,"title":{},"body":{"miscellaneous/variables.html":{}}}],["android.*\\boyo\\b|life.*(p9212|p9514|p9516|s9512)|lifetab",{"_index":2161,"title":{},"body":{"miscellaneous/variables.html":{}}}],["android.*nexus[\\s]+(7|9|10",{"_index":1796,"title":{},"body":{"miscellaneous/variables.html":{}}}],["android.*nook|nookcolor|nook",{"_index":2052,"title":{},"body":{"miscellaneous/variables.html":{}}}],["android.*pixel",{"_index":1798,"title":{},"body":{"miscellaneous/variables.html":{}}}],["android_9",{"_index":1749,"title":{},"body":{"miscellaneous/variables.html":{}}}],["angular",{"_index":96,"title":{},"body":{"components/AppComponent.html":{},"index.html":{},"properties.html":{}}}],["angular/animations",{"_index":618,"title":{},"body":{"dependencies.html":{}}}],["angular/cli",{"_index":718,"title":{},"body":{"index.html":{}}}],["angular/common",{"_index":212,"title":{},"body":{"modules/AppModule.html":{},"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"dependencies.html":{},"index.html":{}}}],["angular/compiler",{"_index":620,"title":{},"body":{"dependencies.html":{}}}],["angular/core",{"_index":75,"title":{},"body":{"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"pipes/KeysPipe.html":{},"injectables/UniversalDeviceDetectorService.html":{},"dependencies.html":{},"index.html":{}}}],["angular/forms",{"_index":621,"title":{},"body":{"dependencies.html":{}}}],["angular/platform",{"_index":207,"title":{},"body":{"modules/AppModule.html":{},"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"dependencies.html":{}}}],["angular/router",{"_index":623,"title":{},"body":{"dependencies.html":{}}}],["angular2",{"_index":738,"title":{},"body":{"index.html":{}}}],["angular5",{"_index":816,"title":{},"body":{"properties.html":{}}}],["angular6",{"_index":817,"title":{},"body":{"properties.html":{}}}],["angular7",{"_index":818,"title":{},"body":{"properties.html":{}}}],["angular8",{"_index":819,"title":{},"body":{"properties.html":{}}}],["aoctablet",{"_index":2804,"title":{},"body":{"miscellaneous/variables.html":{}}}],["aot",{"_index":99,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["app",{"_index":13,"title":{},"body":{"components/AppComponent.html":{},"coverage.html":{},"miscellaneous/functions.html":{},"index.html":{}}}],["app.component",{"_index":209,"title":{},"body":{"modules/AppModule.html":{},"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["app.component.html",{"_index":18,"title":{},"body":{"components/AppComponent.html":{}}}],["app.component.scss",{"_index":16,"title":{},"body":{"components/AppComponent.html":{}}}],["app.module",{"_index":253,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["app.server.module.ts",{"_index":701,"title":{},"body":{"index.html":{}}}],["appcomponent",{"_index":1,"title":{"components/AppComponent.html":{}},"body":{"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"coverage.html":{},"overview.html":{}}}],["appid",{"_index":217,"title":{},"body":{"modules/AppModule.html":{}}}],["apple",{"_index":908,"title":{},"body":{"miscellaneous/variables.html":{}}}],["apple_tv",{"_index":907,"title":{},"body":{"miscellaneous/variables.html":{}}}],["appletv\\/4.1",{"_index":950,"title":{},"body":{"miscellaneous/variables.html":{}}}],["apply",{"_index":122,"title":{},"body":{"components/AppComponent.html":{}}}],["applydevice",{"_index":27,"title":{},"body":{"components/AppComponent.html":{}}}],["applydevice(useragent",{"_index":45,"title":{},"body":{"components/AppComponent.html":{}}}],["appmodule",{"_index":194,"title":{"modules/AppModule.html":{}},"body":{"modules/AppModule.html":{},"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"modules.html":{},"overview.html":{}}}],["apppage",{"_index":220,"title":{"classes/AppPage.html":{}},"body":{"classes/AppPage.html":{},"coverage.html":{}}}],["appropriate",{"_index":117,"title":{},"body":{"components/AppComponent.html":{}}}],["appservermodule",{"_index":246,"title":{"modules/AppServerModule.html":{}},"body":{"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"modules.html":{},"overview.html":{}}}],["archostablet",{"_index":2180,"title":{},"body":{"miscellaneous/variables.html":{}}}],["aria_mini_wifi|aria",{"_index":2794,"title":{},"body":{"miscellaneous/variables.html":{}}}],["arising",{"_index":806,"title":{},"body":{"license.html":{}}}],["arm;.*(tablet|armbjs",{"_index":2016,"title":{},"body":{"miscellaneous/variables.html":{}}}],["arnovatablet",{"_index":2162,"title":{},"body":{"miscellaneous/variables.html":{}}}],["array.isarray(regex",{"_index":451,"title":{},"body":{"classes/ReTree.html":{}}}],["array.isarray(regex.and",{"_index":444,"title":{},"body":{"classes/ReTree.html":{}}}],["array.isarray(regex.or",{"_index":447,"title":{},"body":{"classes/ReTree.html":{}}}],["as40w|at",{"_index":1672,"title":{},"body":{"miscellaneous/variables.html":{}}}],["as45q2|at",{"_index":1674,"title":{},"body":{"miscellaneous/variables.html":{}}}],["as50hd|at",{"_index":1671,"title":{},"body":{"miscellaneous/variables.html":{}}}],["as50q",{"_index":1676,"title":{},"body":{"miscellaneous/variables.html":{}}}],["as55hd|at",{"_index":1673,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ask",{"_index":529,"title":{},"body":{"contributing.html":{}}}],["assigned",{"_index":550,"title":{},"body":{"contributing.html":{}}}],["associated",{"_index":758,"title":{},"body":{"license.html":{}}}],["asus",{"_index":922,"title":{},"body":{"miscellaneous/variables.html":{}}}],["asus.*galaxy|padfone.*mobile",{"_index":1605,"title":{},"body":{"miscellaneous/variables.html":{}}}],["asustablet",{"_index":2027,"title":{},"body":{"miscellaneous/variables.html":{}}}],["audiosonictablet",{"_index":2645,"title":{},"body":{"miscellaneous/variables.html":{}}}],["author",{"_index":328,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"contributing.html":{},"properties.html":{}}}],["authors",{"_index":796,"title":{},"body":{"license.html":{}}}],["available",{"_index":85,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["avio|nexo",{"_index":2850,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ayaz",{"_index":330,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"license.html":{},"properties.html":{}}}],["a|e1",{"_index":2391,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a|t1",{"_index":2392,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a|t3a|t4i)\\\\b",{"_index":2393,"title":{},"body":{"miscellaneous/variables.html":{}}}],["a|t4|e1",{"_index":2386,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b(a100|a101|a110|a200|a210|a211|a500|a501|a510|a511|a700|a701|w500|w500p|w501",{"_index":2057,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b(diamond|space|brooklyn|neo|fly|manhattan|funk|evolution|sky|gocar|iron|genius",{"_index":2822,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b(e3a|t3x|t5c|t5b|t3e|t3c|t3b|t1j|t1f|t2a|t1h|t1i|e1c|t1",{"_index":2384,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b(f3000|a3300|jxd5000|jxd3000|jxd2000|jxd300b|jxd300|s5800|s7800|s602b|s5110b|s7300",{"_index":2660,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b(f5281|e2371)\\b",{"_index":2880,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b(idx10|idx9|idx8|idx7|idxd7|idxd8|idsq8|idsq7|idsq8|idsd10|idnd7|3ts804h|idsq11|idj7|ids10)\\b",{"_index":2792,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b(pi2010|pi3000|pi3100|pi3105|pi3110|pi3205|pi3210|pi3900|pi4010|pi7000|pi7100)\\b",{"_index":2205,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b(primo",{"_index":2218,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b(ptbl10ceu|ptbl10c|ptbl72bc|ptbl72bceu|ptbl7ceu|ptbl7c|ptbl92bc|ptbl92bceu|ptbl9ceu|ptbl9cuk|ptbl9c)\\b",{"_index":2382,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b(sp",{"_index":1656,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b(tb",{"_index":2877,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b100|sgh",{"_index":1289,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b130|sgh",{"_index":1290,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b200|sgh",{"_index":1291,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b2100|gt",{"_index":998,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b220|sgh",{"_index":1292,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b24d|at",{"_index":1670,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b26d|at",{"_index":1675,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b2700|gt",{"_index":999,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b2710",{"_index":1000,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b3210|gt",{"_index":1002,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b3310|gt",{"_index":1003,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b3410|gt",{"_index":1004,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b3730|gt",{"_index":1005,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b3740|gt",{"_index":1006,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b4g\\\\b",{"_index":2783,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b5510|gt",{"_index":1007,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b5512|gt",{"_index":1008,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b5722|gt",{"_index":1009,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b6520|gt",{"_index":1010,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b7300|gt",{"_index":1011,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b7320",{"_index":1012,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b7330|gt",{"_index":1013,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b7350|gt",{"_index":1014,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b7510|gt",{"_index":1015,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b7610|gt",{"_index":1556,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b7722|gt",{"_index":1016,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b7800|gt",{"_index":1017,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b8000|b8080",{"_index":2107,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ba10h\\\\b|\\\\bp89\\\\b|\\\\bp78s\\\\b|\\\\bg18\\\\b|\\\\bp85\\\\b|\\\\ba70h\\\\b|\\\\ba70\\\\b|\\\\bg17\\\\b|\\\\bp18\\\\b|\\\\ba80s\\\\b",{"_index":2771,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ba10t\\\\b|\\\\bp76a\\\\b|\\\\bp76t\\\\b|\\\\bp76e\\\\b|\\\\bp85hd\\\\b|\\\\bp85a\\\\b|\\\\bp86\\\\b|\\\\bp75hd\\\\b|\\\\bp76v\\\\b|\\\\ba12\\\\b",{"_index":2773,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ba11s\\\\b|\\\\bp88hd\\\\b|\\\\ba80h\\\\b|\\\\bp76s\\\\b|\\\\bp76h\\\\b|\\\\bp98\\\\b|\\\\ba10hd\\\\b|\\\\bp78\\\\b|\\\\bp88\\\\b|\\\\ba11\\\\b",{"_index":2772,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ba3",{"_index":2068,"title":{},"body":{"miscellaneous/variables.html":{}}}],["back",{"_index":581,"title":{},"body":{"contributing.html":{}}}],["badges",{"_index":156,"title":{},"body":{"components/AppComponent.html":{}}}],["bandroid\\b",{"_index":1685,"title":{},"body":{"miscellaneous/variables.html":{}}}],["based",{"_index":108,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["bblackberry\\b|\\bbb10\\b|rim[0",{"_index":1683,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bc",{"_index":2646,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bchrome\\/([\\d\\.]+)\\b",{"_index":833,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bchrome\\b",{"_index":864,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bcrios\\/([\\d\\.]+)\\b",{"_index":834,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bcrios\\b",{"_index":865,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bcrkey\\b",{"_index":948,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bcros\\b",{"_index":947,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bedg(?:e|a|ios)\\/([\\d\\.]+)\\b",{"_index":849,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bedg(e|a|ios)\\b",{"_index":868,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bedg\\/([\\d\\.]+)\\b",{"_index":851,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bedg\\/\\b",{"_index":869,"title":{},"body":{"miscellaneous/variables.html":{}}}],["before",{"_index":532,"title":{},"body":{"contributing.html":{}}}],["bfban\\/messengerforios\\b",{"_index":892,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bfirefox",{"_index":1684,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bfirefox\\/([\\d\\.]+)\\b",{"_index":837,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bfirefox\\b",{"_index":872,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bfxios\\/([\\d\\.]+)\\b",{"_index":838,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bfxios\\b",{"_index":873,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bgoogletv\\b",{"_index":951,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bheadlesschrome\\/([\\d\\.]+)\\b",{"_index":835,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bheadlesschrome\\b",{"_index":866,"title":{},"body":{"miscellaneous/variables.html":{}}}],["biemobile\\b",{"_index":1697,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bionic|\\\\bdroid\\\\b.*build|android.*xoom|hri39|mot",{"_index":982,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bipad\\b",{"_index":962,"title":{},"body":{"miscellaneous/variables.html":{}}}],["biphone\\b",{"_index":961,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bipod\\b",{"_index":963,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bl",{"_index":2074,"title":{},"body":{"miscellaneous/variables.html":{}}}],["blackberry",{"_index":899,"title":{},"body":{"miscellaneous/variables.html":{}}}],["blackberrytablet",{"_index":2039,"title":{},"body":{"miscellaneous/variables.html":{}}}],["blaupunkttablet",{"_index":2787,"title":{},"body":{"miscellaneous/variables.html":{}}}],["blinux\\b",{"_index":1694,"title":{},"body":{"miscellaneous/variables.html":{}}}],["block",{"_index":134,"title":{},"body":{"components/AppComponent.html":{}}}],["bmac",{"_index":959,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bmi",{"_index":2839,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bmobile\\b",{"_index":946,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bmozilla\\/5.0",{"_index":886,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bmpg7\\\\b|mpdcg75|mpdcg71|mpdc1006|mp101dc|mpdc9000|mpdc905|mpdc706hd|mpdc706|mpdc705|mpdc110",{"_index":2810,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bmsie",{"_index":845,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bmsie\\b",{"_index":878,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bmt8125|mt8389|mt8135|mt8377\\b",{"_index":2517,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bn",{"_index":2271,"title":{},"body":{"miscellaneous/variables.html":{}}}],["boda",{"_index":2175,"title":{},"body":{"miscellaneous/variables.html":{}}}],["boilerplate",{"_index":740,"title":{},"body":{"index.html":{}}}],["boing|arrow|draco",{"_index":2680,"title":{},"body":{"miscellaneous/variables.html":{}}}],["book",{"_index":902,"title":{},"body":{"miscellaneous/variables.html":{}}}],["boolean",{"_index":89,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["bootstrap",{"_index":205,"title":{},"body":{"modules/AppModule.html":{},"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["bopr\\/([\\d\\.]+)\\b",{"_index":843,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bopr\\b",{"_index":867,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bp10hd\\\\b|\\\\bp19hd\\\\b|g18",{"_index":2766,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bp11\\\\b|\\\\bp98t\\\\b|\\\\bp98hd\\\\b|\\\\bg18d\\\\b|\\\\bp85s\\\\b|\\\\bp11hd\\\\b|\\\\bp88s\\\\b|\\\\ba80hd\\\\b|\\\\ba80se\\\\b",{"_index":2770,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bp72\\\\b|\\\\bt720se\\\\b|\\\\bc520ti\\\\b|\\\\bt760\\\\b|\\\\bt720ve\\\\b|t720",{"_index":2775,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bp75a\\\\b|\\\\ba15\\\\b|\\\\bp76ti\\\\b|\\\\bp81hd\\\\b|\\\\ba10\\\\b|\\\\bt760ve\\\\b|\\\\bt720hd\\\\b|\\\\bp76\\\\b|\\\\bp73\\\\b|\\\\bp71\\\\b",{"_index":2774,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bq1078|bc1003|bc1077|rk9702|bc9730|bc9001|it9001|bc7008|bc7010|bc708|bc728|bc7012|bc7030|bc7027|bc7026",{"_index":2429,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bqtablet",{"_index":2246,"title":{},"body":{"miscellaneous/variables.html":{}}}],["branch",{"_index":542,"title":{},"body":{"contributing.html":{}}}],["broncho.*(n701|n708|n802|a710",{"_index":2277,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bronchotablet",{"_index":2276,"title":{},"body":{"miscellaneous/variables.html":{}}}],["browse",{"_index":811,"title":{},"body":{"modules.html":{}}}],["browser",{"_index":58,"title":{},"body":{"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"dependencies.html":{},"index.html":{},"modules.html":{},"miscellaneous/variables.html":{}}}],["browser.get",{"_index":238,"title":{},"body":{"classes/AppPage.html":{}}}],["browser/animations",{"_index":214,"title":{},"body":{"modules/AppModule.html":{}}}],["browser_version",{"_index":61,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["browser_versions_re",{"_index":602,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["browser_versions_re_map",{"_index":603,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["browser_versions_re_map[key",{"_index":831,"title":{},"body":{"miscellaneous/variables.html":{}}}],["browsermodule",{"_index":206,"title":{},"body":{"modules/AppModule.html":{}}}],["browsermodule.withservertransition",{"_index":216,"title":{},"body":{"modules/AppModule.html":{}}}],["browsers",{"_index":338,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["browsers_re",{"_index":604,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["browser|bnrv200|bnrv200a|bntv250|bntv250a|bntv400|bntv600|logicpd",{"_index":2053,"title":{},"body":{"miscellaneous/variables.html":{}}}],["brv:([\\d\\.]+\\w?)\\b",{"_index":847,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bsafari\\/([\\d\\.]+)\\b",{"_index":841,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bsamsungbrowser\\/([\\d\\.]+)\\b",{"_index":853,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bsamsungbrowser\\b",{"_index":870,"title":{},"body":{"miscellaneous/variables.html":{}}}],["btrident\\b",{"_index":879,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bucbrowser\\/([\\d\\.]+)\\b",{"_index":855,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bucbrowser\\b",{"_index":871,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bug",{"_index":497,"title":{},"body":{"contributing.html":{}}}],["bugs",{"_index":485,"title":{},"body":{"contributing.html":{},"properties.html":{}}}],["build",{"_index":716,"title":{},"body":{"index.html":{},"miscellaneous/variables.html":{}}}],["buildrun",{"_index":717,"title":{},"body":{"index.html":{}}}],["build|\\barc\\b",{"_index":2290,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bunix\\b",{"_index":1695,"title":{},"body":{"miscellaneous/variables.html":{}}}],["button",{"_index":180,"title":{},"body":{"components/AppComponent.html":{}}}],["bversion\\/([\\d\\.]+)\\b",{"_index":840,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bvita\\b",{"_index":1682,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bwin",{"_index":1692,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bwindows",{"_index":875,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bwindows|(win\\d\\d)\\b",{"_index":1691,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bx89hd\\\\b|p98",{"_index":2760,"title":{},"body":{"miscellaneous/variables.html":{}}}],["bxiaomi\\b",{"_index":958,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b|t1",{"_index":2389,"title":{},"body":{"miscellaneous/variables.html":{}}}],["b|t2ci",{"_index":2387,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c",{"_index":746,"title":{},"body":{"license.html":{},"miscellaneous/variables.html":{}}}],["c100|sgh",{"_index":1293,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c101|gt",{"_index":1553,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c110|sgh",{"_index":1294,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c120|sgh",{"_index":1295,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c130|sgh",{"_index":1296,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c140|sgh",{"_index":1297,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c160|sgh",{"_index":1298,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c170",{"_index":1299,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c180|sgh",{"_index":1300,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c200|sgh",{"_index":1301,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c207|sgh",{"_index":1302,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c210|sgh",{"_index":1303,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c225|sgh",{"_index":1304,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c230|sgh",{"_index":1305,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3010|gt",{"_index":1018,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3011|gt",{"_index":1019,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3060|gt",{"_index":1020,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3200|gt",{"_index":1021,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3212i",{"_index":1023,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3212|gt",{"_index":1022,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3222|gt",{"_index":1025,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3262|gt",{"_index":1024,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3300k|gt",{"_index":1027,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3300|gt",{"_index":1026,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3303k|gt",{"_index":1029,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3303|gt",{"_index":1028,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3310|gt",{"_index":1030,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3322|gt",{"_index":1031,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3330|gt",{"_index":1032,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3350|gt",{"_index":1033,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3500",{"_index":1034,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3510|gt",{"_index":1035,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3530|gt",{"_index":1036,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3630|gt",{"_index":1037,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c3780|gt",{"_index":1038,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c395|e739bk|e960|l55c|l75c|ls696|ls860|p769bk|p350|p500|p509|p870|un272|us730|vs840|vs950|ln272|ln510",{"_index":1600,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c417|sgh",{"_index":1306,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c450|sgh",{"_index":1307,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c5010|gt",{"_index":1039,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c5212|gt",{"_index":1040,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c6620|gt",{"_index":1041,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c6625|gt",{"_index":1042,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c6712|gt",{"_index":1043,"title":{},"body":{"miscellaneous/variables.html":{}}}],["c800|c900|e400|e610|e900|e",{"_index":1597,"title":{},"body":{"miscellaneous/variables.html":{}}}],["cam|aurix|mint|amity",{"_index":2681,"title":{},"body":{"miscellaneous/variables.html":{}}}],["cam|stone",{"_index":2686,"title":{},"body":{"miscellaneous/variables.html":{}}}],["captiva",{"_index":2739,"title":{},"body":{"miscellaneous/variables.html":{}}}],["captivatablet",{"_index":2738,"title":{},"body":{"miscellaneous/variables.html":{}}}],["carbon|gamepad)\\\\b",{"_index":2190,"title":{},"body":{"miscellaneous/variables.html":{}}}],["catch",{"_index":83,"title":{},"body":{"components/AppComponent.html":{}}}],["cd",{"_index":721,"title":{},"body":{"index.html":{}}}],["cdm8992|txt8045|adr8995|is11pt|p2030|p6010|p8000|pt002|is06|cdm8999|p9050|pt001|txt8040|p2020|p9020",{"_index":1638,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ce",{"_index":1707,"title":{},"body":{"miscellaneous/variables.html":{}}}],["celkontablet",{"_index":2812,"title":{},"body":{"miscellaneous/variables.html":{}}}],["center",{"_index":163,"title":{},"body":{"components/AppComponent.html":{}}}],["change",{"_index":726,"title":{},"body":{"index.html":{}}}],["change_log.md",{"_index":728,"title":{},"body":{"index.html":{}}}],["changelog",{"_index":627,"title":{},"body":{"dependencies.html":{}}}],["changelog.md",{"_index":566,"title":{},"body":{"contributing.html":{}}}],["changes",{"_index":569,"title":{},"body":{"contributing.html":{}}}],["changjiatablet",{"_index":2430,"title":{},"body":{"miscellaneous/variables.html":{}}}],["charge",{"_index":753,"title":{},"body":{"license.html":{}}}],["check",{"_index":291,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["child",{"_index":182,"title":{},"body":{"components/AppComponent.html":{}}}],["chrome",{"_index":832,"title":{},"body":{"miscellaneous/variables.html":{}}}],["chrome_book",{"_index":901,"title":{},"body":{"miscellaneous/variables.html":{}}}],["chrome_os",{"_index":1690,"title":{},"body":{"miscellaneous/variables.html":{}}}],["chromecast",{"_index":906,"title":{},"body":{"miscellaneous/variables.html":{}}}],["chromium",{"_index":858,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ci",{"_index":545,"title":{},"body":{"contributing.html":{}}}],["cink",{"_index":1651,"title":{},"body":{"miscellaneous/variables.html":{}}}],["claim",{"_index":799,"title":{},"body":{"license.html":{}}}],["class",{"_index":79,"title":{"classes/AppPage.html":{},"classes/ReTree.html":{}},"body":{"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"pipes/KeysPipe.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{},"coverage.html":{},"index.html":{}}}],["classes",{"_index":221,"title":{},"body":{"classes/AppPage.html":{},"classes/ReTree.html":{},"overview.html":{}}}],["cli",{"_index":628,"title":{},"body":{"dependencies.html":{}}}],["close",{"_index":481,"title":{},"body":{"contributing.html":{}}}],["cluster_appmodule",{"_index":197,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_bootstrap",{"_index":198,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_declarations",{"_index":199,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appservermodule",{"_index":247,"title":{},"body":{"modules/AppServerModule.html":{},"overview.html":{}}}],["cluster_appservermodule_bootstrap",{"_index":249,"title":{},"body":{"modules/AppServerModule.html":{}}}],["cluster_appservermodule_imports",{"_index":248,"title":{},"body":{"modules/AppServerModule.html":{}}}],["cobalt",{"_index":2184,"title":{},"body":{"miscellaneous/variables.html":{}}}],["cobytablet",{"_index":2209,"title":{},"body":{"miscellaneous/variables.html":{}}}],["column",{"_index":171,"title":{},"body":{"components/AppComponent.html":{}}}],["comment",{"_index":556,"title":{},"body":{"contributing.html":{}}}],["commonmodule",{"_index":211,"title":{},"body":{"modules/AppModule.html":{}}}],["community",{"_index":582,"title":{},"body":{"contributing.html":{}}}],["compares",{"_index":397,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["compatible",{"_index":100,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["component",{"_index":0,"title":{"components/AppComponent.html":{}},"body":{"components/AppComponent.html":{},"coverage.html":{},"index.html":{},"overview.html":{}}}],["component_template",{"_index":188,"title":{},"body":{"components/AppComponent.html":{}}}],["components",{"_index":2,"title":{},"body":{"components/AppComponent.html":{}}}],["concorde",{"_index":2519,"title":{},"body":{"miscellaneous/variables.html":{}}}],["concordetablet",{"_index":2518,"title":{},"body":{"miscellaneous/variables.html":{}}}],["conditions",{"_index":777,"title":{},"body":{"license.html":{}}}],["connection",{"_index":807,"title":{},"body":{"license.html":{}}}],["console.log('hello",{"_index":681,"title":{},"body":{"index.html":{}}}],["console.log('ua",{"_index":84,"title":{},"body":{"components/AppComponent.html":{}}}],["console.log(isdesktopdevice",{"_index":690,"title":{},"body":{"index.html":{}}}],["console.log(ismobile",{"_index":684,"title":{},"body":{"index.html":{}}}],["console.log(istablet",{"_index":689,"title":{},"body":{"index.html":{}}}],["console.log(this.deviceinfo",{"_index":683,"title":{},"body":{"index.html":{}}}],["const",{"_index":319,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"pipes/KeysPipe.html":{},"index.html":{}}}],["constants",{"_index":311,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["constants.browser_versions_re[this.browser",{"_index":375,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["constants.browsers.unknown",{"_index":373,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["constants.desktop_devices.indexof(this.device",{"_index":409,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["constants.devices.unknown",{"_index":407,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["constants.general.uknown",{"_index":385,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["constants.mobiles_re[mobile",{"_index":402,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["constants.tablets_re[ipad",{"_index":348,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["constants.tablets_re[mobile",{"_index":406,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["constants[`${mapping.const}_re`][item",{"_index":354,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["constants[mapping.const].android",{"_index":363,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["constants[mapping.const].unknown",{"_index":369,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["constants[mapping.const][item",{"_index":343,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["constants[mapping.const][key",{"_index":358,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["constructor",{"_index":34,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["constructor(@inject(platform_id",{"_index":264,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["constructor(deviceservice",{"_index":35,"title":{},"body":{"components/AppComponent.html":{}}}],["constructor(platformid",{"_index":280,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["constructor(private",{"_index":80,"title":{},"body":{"components/AppComponent.html":{}}}],["container",{"_index":142,"title":{},"body":{"components/AppComponent.html":{}}}],["content",{"_index":173,"title":{},"body":{"components/AppComponent.html":{}}}],["contract",{"_index":803,"title":{},"body":{"license.html":{}}}],["contribute",{"_index":474,"title":{},"body":{"contributing.html":{}}}],["contributing",{"_index":473,"title":{"contributing.html":{}},"body":{}}],["conventional",{"_index":626,"title":{},"body":{"dependencies.html":{}}}],["copies",{"_index":772,"title":{},"body":{"license.html":{}}}],["copy",{"_index":756,"title":{},"body":{"license.html":{}}}],["copyright",{"_index":745,"title":{},"body":{"license.html":{}}}],["correct",{"_index":694,"title":{},"body":{"index.html":{}}}],["coverage",{"_index":586,"title":{"coverage.html":{}},"body":{"coverage.html":{}}}],["create",{"_index":478,"title":{},"body":{"contributing.html":{}}}],["created",{"_index":429,"title":{},"body":{"classes/ReTree.html":{},"miscellaneous/variables.html":{}}}],["creator",{"_index":739,"title":{},"body":{"index.html":{}}}],["credits",{"_index":730,"title":{},"body":{"index.html":{}}}],["crestatablet",{"_index":2504,"title":{},"body":{"miscellaneous/variables.html":{}}}],["crios).)*\\safari\\b",{"_index":874,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ct695|ct888|ct[\\s]?910|ct7",{"_index":2813,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ctp",{"_index":2505,"title":{},"body":{"miscellaneous/variables.html":{}}}],["cubetablet",{"_index":2206,"title":{},"body":{"miscellaneous/variables.html":{}}}],["current",{"_index":286,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["currentvalue",{"_index":360,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["cursor",{"_index":145,"title":{},"body":{"components/AppComponent.html":{}}}],["d.ts",{"_index":709,"title":{},"body":{"index.html":{}}}],["d307|sgh",{"_index":1308,"title":{},"body":{"miscellaneous/variables.html":{}}}],["d347|sgh",{"_index":1309,"title":{},"body":{"miscellaneous/variables.html":{}}}],["d357",{"_index":1310,"title":{},"body":{"miscellaneous/variables.html":{}}}],["d407|sgh",{"_index":1311,"title":{},"body":{"miscellaneous/variables.html":{}}}],["d415|sgh",{"_index":1312,"title":{},"body":{"miscellaneous/variables.html":{}}}],["d600|sph",{"_index":1484,"title":{},"body":{"miscellaneous/variables.html":{}}}],["d700|sph",{"_index":1485,"title":{},"body":{"miscellaneous/variables.html":{}}}],["d710|sph",{"_index":1486,"title":{},"body":{"miscellaneous/variables.html":{}}}],["d720",{"_index":1487,"title":{},"body":{"miscellaneous/variables.html":{}}}],["d780|sgh",{"_index":1313,"title":{},"body":{"miscellaneous/variables.html":{}}}],["d807|sgh",{"_index":1314,"title":{},"body":{"miscellaneous/variables.html":{}}}],["d980|sgh",{"_index":1315,"title":{},"body":{"miscellaneous/variables.html":{}}}],["d\\.]+\\w?)\\b",{"_index":846,"title":{},"body":{"miscellaneous/variables.html":{}}}],["damages",{"_index":800,"title":{},"body":{"license.html":{}}}],["danewtablet",{"_index":2291,"title":{},"body":{"miscellaneous/variables.html":{}}}],["danytechtablet",{"_index":2394,"title":{},"body":{"miscellaneous/variables.html":{}}}],["darwin",{"_index":1775,"title":{},"body":{"miscellaneous/variables.html":{}}}],["deal",{"_index":759,"title":{},"body":{"license.html":{}}}],["dealings",{"_index":808,"title":{},"body":{"license.html":{}}}],["declarations",{"_index":204,"title":{},"body":{"modules/AppModule.html":{}}}],["default",{"_index":47,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"pipes/KeysPipe.html":{},"injectables/UniversalDeviceDetectorService.html":{},"miscellaneous/variables.html":{}}}],["defined",{"_index":37,"title":{},"body":{"components/AppComponent.html":{},"classes/AppPage.html":{},"injectables/DeviceDetectorService.html":{},"pipes/KeysPipe.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["dell",{"_index":918,"title":{},"body":{"miscellaneous/variables.html":{}}}],["delltablet",{"_index":2118,"title":{},"body":{"miscellaneous/variables.html":{}}}],["demo",{"_index":111,"title":{},"body":{"components/AppComponent.html":{},"classes/AppPage.html":{},"index.html":{}}}],["demoapp",{"_index":135,"title":{},"body":{"components/AppComponent.html":{}}}],["dependencies",{"_index":196,"title":{"dependencies.html":{}},"body":{"modules/AppModule.html":{},"modules/AppServerModule.html":{},"dependencies.html":{},"index.html":{},"overview.html":{}}}],["deprecated",{"_index":645,"title":{},"body":{"index.html":{}}}],["desc",{"_index":331,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["description",{"_index":428,"title":{},"body":{"classes/ReTree.html":{}}}],["desktop",{"_index":126,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"miscellaneous/enumerations.html":{},"index.html":{}}}],["desktop_devices",{"_index":605,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["details",{"_index":118,"title":{},"body":{"components/AppComponent.html":{},"contributing.html":{}}}],["detection",{"_index":695,"title":{},"body":{"index.html":{},"properties.html":{}}}],["detector",{"_index":77,"title":{},"body":{"components/AppComponent.html":{},"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"dependencies.html":{},"index.html":{},"properties.html":{}}}],["detector.constants",{"_index":312,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["detector.constants.ts",{"_index":601,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["detector.git",{"_index":824,"title":{},"body":{"properties.html":{}}}],["detector.git/issues",{"_index":821,"title":{},"body":{"properties.html":{}}}],["detector.service.ts",{"_index":276,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"coverage.html":{},"miscellaneous/enumerations.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["detector.service.ts:135",{"_index":282,"title":{},"body":{"injectables/DeviceDetectorService.html":{}}}],["detector.service.ts:155",{"_index":290,"title":{},"body":{"injectables/DeviceDetectorService.html":{}}}],["detector.service.ts:171",{"_index":294,"title":{},"body":{"injectables/DeviceDetectorService.html":{}}}],["detector.service.ts:191",{"_index":285,"title":{},"body":{"injectables/DeviceDetectorService.html":{}}}],["detector.service.ts:37",{"_index":308,"title":{},"body":{"injectables/DeviceDetectorService.html":{}}}],["detector.service.ts:38",{"_index":309,"title":{},"body":{"injectables/DeviceDetectorService.html":{}}}],["detector.service.ts:39",{"_index":304,"title":{},"body":{"injectables/DeviceDetectorService.html":{}}}],["detector.service.ts:40",{"_index":300,"title":{},"body":{"injectables/DeviceDetectorService.html":{}}}],["detector.service.ts:41",{"_index":302,"title":{},"body":{"injectables/DeviceDetectorService.html":{}}}],["detector.service.ts:42",{"_index":305,"title":{},"body":{"injectables/DeviceDetectorService.html":{}}}],["detector.service.ts:43",{"_index":301,"title":{},"body":{"injectables/DeviceDetectorService.html":{}}}],["detector.service.ts:44",{"_index":307,"title":{},"body":{"injectables/DeviceDetectorService.html":{}}}],["detector.service.ts:45",{"_index":303,"title":{},"body":{"injectables/DeviceDetectorService.html":{}}}],["detector.service.ts:46",{"_index":281,"title":{},"body":{"injectables/DeviceDetectorService.html":{}}}],["detector.service.ts:59",{"_index":296,"title":{},"body":{"injectables/DeviceDetectorService.html":{}}}],["detector/src/lib/device",{"_index":275,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"coverage.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/variables.html":{}}}],["detector/src/lib/retree.ts",{"_index":427,"title":{},"body":{"classes/ReTree.html":{},"coverage.html":{}}}],["detector/src/lib/retree.ts:30",{"_index":436,"title":{},"body":{"classes/ReTree.html":{}}}],["detector/src/lib/retree.ts:5",{"_index":433,"title":{},"body":{"classes/ReTree.html":{}}}],["detector/src/lib/retree.ts:8",{"_index":439,"title":{},"body":{"classes/ReTree.html":{}}}],["developers",{"_index":518,"title":{},"body":{"contributing.html":{}}}],["development",{"_index":705,"title":{},"body":{"index.html":{}}}],["device",{"_index":59,"title":{},"body":{"components/AppComponent.html":{},"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/enumerations.html":{},"index.html":{},"properties.html":{},"miscellaneous/variables.html":{}}}],["devicedetectorservice",{"_index":36,"title":{"injectables/DeviceDetectorService.html":{}},"body":{"components/AppComponent.html":{},"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"coverage.html":{},"index.html":{}}}],["devicedetectorservice:135",{"_index":456,"title":{},"body":{"injectables/UniversalDeviceDetectorService.html":{}}}],["devicedetectorservice:155",{"_index":458,"title":{},"body":{"injectables/UniversalDeviceDetectorService.html":{}}}],["devicedetectorservice:171",{"_index":459,"title":{},"body":{"injectables/UniversalDeviceDetectorService.html":{}}}],["devicedetectorservice:191",{"_index":457,"title":{},"body":{"injectables/UniversalDeviceDetectorService.html":{}}}],["devicedetectorservice:37",{"_index":469,"title":{},"body":{"injectables/UniversalDeviceDetectorService.html":{}}}],["devicedetectorservice:38",{"_index":470,"title":{},"body":{"injectables/UniversalDeviceDetectorService.html":{}}}],["devicedetectorservice:39",{"_index":466,"title":{},"body":{"injectables/UniversalDeviceDetectorService.html":{}}}],["devicedetectorservice:40",{"_index":461,"title":{},"body":{"injectables/UniversalDeviceDetectorService.html":{}}}],["devicedetectorservice:41",{"_index":463,"title":{},"body":{"injectables/UniversalDeviceDetectorService.html":{}}}],["devicedetectorservice:42",{"_index":467,"title":{},"body":{"injectables/UniversalDeviceDetectorService.html":{}}}],["devicedetectorservice:43",{"_index":462,"title":{},"body":{"injectables/UniversalDeviceDetectorService.html":{}}}],["devicedetectorservice:44",{"_index":468,"title":{},"body":{"injectables/UniversalDeviceDetectorService.html":{}}}],["devicedetectorservice:45",{"_index":464,"title":{},"body":{"injectables/UniversalDeviceDetectorService.html":{}}}],["devicedetectorservice:46",{"_index":465,"title":{},"body":{"injectables/UniversalDeviceDetectorService.html":{}}}],["devicedetectorservice:59",{"_index":460,"title":{},"body":{"injectables/UniversalDeviceDetectorService.html":{}}}],["deviceinfo",{"_index":21,"title":{"interfaces/DeviceInfo.html":{}},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"coverage.html":{},"index.html":{}}}],["devices",{"_index":115,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["devices.asus",{"_index":897,"title":{},"body":{"miscellaneous/variables.html":{}}}],["devices.chrome_book",{"_index":894,"title":{},"body":{"miscellaneous/variables.html":{}}}],["devices.dell",{"_index":896,"title":{},"body":{"miscellaneous/variables.html":{}}}],["devices.mac",{"_index":895,"title":{},"body":{"miscellaneous/variables.html":{}}}],["devices.ps4",{"_index":893,"title":{},"body":{"miscellaneous/variables.html":{}}}],["devices.unknown",{"_index":898,"title":{},"body":{"miscellaneous/variables.html":{}}}],["devices_re",{"_index":606,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["deviceservice",{"_index":44,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["devicetype",{"_index":62,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"miscellaneous/enumerations.html":{}}}],["devicetype.desktop",{"_index":392,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["devicetype.mobile",{"_index":390,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["devicetype.tablet",{"_index":388,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["devicetype.unknown",{"_index":393,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["devs",{"_index":561,"title":{},"body":{"contributing.html":{}}}],["different",{"_index":114,"title":{},"body":{"components/AppComponent.html":{}}}],["digmatablet",{"_index":2791,"title":{},"body":{"miscellaneous/variables.html":{}}}],["direction",{"_index":170,"title":{},"body":{"components/AppComponent.html":{}}}],["directive",{"_index":186,"title":{},"body":{"components/AppComponent.html":{}}}],["directives",{"_index":189,"title":{},"body":{"components/AppComponent.html":{}}}],["display",{"_index":133,"title":{},"body":{"components/AppComponent.html":{}}}],["distribute",{"_index":768,"title":{},"body":{"license.html":{}}}],["docs",{"_index":536,"title":{},"body":{"contributing.html":{},"index.html":{}}}],["docs/readme",{"_index":510,"title":{},"body":{"contributing.html":{}}}],["documentation",{"_index":493,"title":{},"body":{"contributing.html":{},"coverage.html":{},"license.html":{}}}],["dom",{"_index":7,"title":{},"body":{"components/AppComponent.html":{}}}],["don't",{"_index":527,"title":{},"body":{"contributing.html":{}}}],["dp8d",{"_index":2658,"title":{},"body":{"miscellaneous/variables.html":{}}}],["dps",{"_index":2492,"title":{},"body":{"miscellaneous/variables.html":{}}}],["dpstablet",{"_index":2491,"title":{},"body":{"miscellaneous/variables.html":{}}}],["dream",{"_index":2493,"title":{},"body":{"miscellaneous/variables.html":{}}}],["dslide.*\\b(700|701r|702|703r|704|802|970|971|972|973|974|1010|1012)\\b",{"_index":2292,"title":{},"body":{"miscellaneous/variables.html":{}}}],["dual",{"_index":2495,"title":{},"body":{"miscellaneous/variables.html":{}}}],["dynamic",{"_index":622,"title":{},"body":{"dependencies.html":{}}}],["d|o1",{"_index":2390,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e",{"_index":2174,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e100|sch",{"_index":1529,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e100|viewpad",{"_index":2730,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1050|gt",{"_index":1044,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e105|sgh",{"_index":1316,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1070",{"_index":1045,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1075|gt",{"_index":1046,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1080|gt",{"_index":1047,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1081|gt",{"_index":1048,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1085|gt",{"_index":1049,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1087|gt",{"_index":1050,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1100|gt",{"_index":1051,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1107|gt",{"_index":1052,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1110|gt",{"_index":1053,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1120|gt",{"_index":1054,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1125|gt",{"_index":1055,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1130",{"_index":1056,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1160|gt",{"_index":1057,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1170|gt",{"_index":1058,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1175|gt",{"_index":1059,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1180|gt",{"_index":1060,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1182|gt",{"_index":1061,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1200|gt",{"_index":1062,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1210|gt",{"_index":1063,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1225|gt",{"_index":1064,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1230|gt",{"_index":1065,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e1390|gt",{"_index":1066,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e140k|shv",{"_index":1851,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e140l|shv",{"_index":1852,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e140s|shv",{"_index":1853,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e150s|shv",{"_index":1854,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e160k|sch",{"_index":1580,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e200|sgh",{"_index":1317,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e2100",{"_index":1067,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e2120|gt",{"_index":1068,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e2121|gt",{"_index":1069,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e2152|gt",{"_index":1070,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e2220|gt",{"_index":1071,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e2222|gt",{"_index":1072,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e2230|gt",{"_index":1073,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e2232|gt",{"_index":1074,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e2250|gt",{"_index":1075,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e230k|shv",{"_index":1855,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e230l",{"_index":1856,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e230s|shw",{"_index":1858,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e2370|gt",{"_index":1076,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e2550|gt",{"_index":1077,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e2652",{"_index":1078,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e315|sgh",{"_index":1318,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e316|sgh",{"_index":1319,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e317|sgh",{"_index":1320,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e3210|gt",{"_index":1079,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e3213|gt",{"_index":1080,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e335",{"_index":1321,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e590|sgh",{"_index":1322,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e635|sgh",{"_index":1323,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e704|\\bivorys\\b|e",{"_index":2801,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e715|sgh",{"_index":1324,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e72|viewpad7|viewpad",{"_index":2729,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e890|sgh",{"_index":1325,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e\\\\b|xt1068|xt1092|xt1052",{"_index":990,"title":{},"body":{"miscellaneous/variables.html":{}}}],["each",{"_index":652,"title":{},"body":{"index.html":{}}}],["earlier",{"_index":648,"title":{},"body":{"index.html":{}}}],["ebodatablet",{"_index":2173,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ebrd1102|ebrd1201|sgp351|sgp341|sgp511|sgp512|sgp521|sgp541|sgp551|sgp621|sgp641|sgp612|sot31|sgp771|sgp611",{"_index":2202,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ecstablet",{"_index":2614,"title":{},"body":{"miscellaneous/variables.html":{}}}],["edge",{"_index":857,"title":{},"body":{"miscellaneous/variables.html":{}}}],["element",{"_index":185,"title":{},"body":{"components/AppComponent.html":{},"classes/AppPage.html":{}}}],["element(by.css('app",{"_index":239,"title":{},"body":{"classes/AppPage.html":{}}}],["element.all(by.css('app",{"_index":242,"title":{},"body":{"classes/AppPage.html":{}}}],["elementarrayfinder",{"_index":230,"title":{},"body":{"classes/AppPage.html":{}}}],["elitepad",{"_index":2021,"title":{},"body":{"miscellaneous/variables.html":{}}}],["end",{"_index":174,"title":{},"body":{"components/AppComponent.html":{}}}],["endeavour",{"_index":2788,"title":{},"body":{"miscellaneous/variables.html":{}}}],["engine",{"_index":624,"title":{},"body":{"dependencies.html":{}}}],["engine/tokens",{"_index":259,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["enhance",{"_index":483,"title":{},"body":{"contributing.html":{}}}],["ensure",{"_index":692,"title":{},"body":{"index.html":{}}}],["enum",{"_index":314,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["enumerations",{"_index":639,"title":{"miscellaneous/enumerations.html":{}},"body":{"miscellaneous/enumerations.html":{}}}],["epicfunction",{"_index":680,"title":{},"body":{"index.html":{}}}],["essentielbtablet",{"_index":2624,"title":{},"body":{"miscellaneous/variables.html":{}}}],["etc",{"_index":688,"title":{},"body":{"index.html":{}}}],["event",{"_index":795,"title":{},"body":{"license.html":{}}}],["evo",{"_index":2046,"title":{},"body":{"miscellaneous/variables.html":{}}}],["evoliotablet",{"_index":2793,"title":{},"body":{"miscellaneous/variables.html":{}}}],["evo|nexo",{"_index":2853,"title":{},"body":{"miscellaneous/variables.html":{}}}],["example",{"_index":700,"title":{},"body":{"index.html":{}}}],["examples",{"_index":492,"title":{},"body":{"contributing.html":{}}}],["exec",{"_index":432,"title":{},"body":{"classes/ReTree.html":{}}}],["exec(str",{"_index":434,"title":{},"body":{"classes/ReTree.html":{}}}],["existing",{"_index":521,"title":{},"body":{"contributing.html":{}}}],["explain",{"_index":514,"title":{},"body":{"contributing.html":{}}}],["export",{"_index":78,"title":{},"body":{"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"pipes/KeysPipe.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["express",{"_index":260,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"dependencies.html":{},"index.html":{},"license.html":{}}}],["express.express",{"_index":643,"title":{},"body":{"miscellaneous/functions.html":{}}}],["expressjs",{"_index":699,"title":{},"body":{"index.html":{}}}],["extends",{"_index":263,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["ezee[_']?(tab|go)[0",{"_index":2617,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e|m]10|m8))|maxwell.*lite|maxwell.*plus",{"_index":2249,"title":{},"body":{"miscellaneous/variables.html":{}}}],["e|t5",{"_index":2385,"title":{},"body":{"miscellaneous/variables.html":{}}}],["f300|sgh",{"_index":1326,"title":{},"body":{"miscellaneous/variables.html":{}}}],["f480|sgh",{"_index":1327,"title":{},"body":{"miscellaneous/variables.html":{}}}],["fa",{"_index":165,"title":{},"body":{"components/AppComponent.html":{}}}],["false",{"_index":292,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["far",{"_index":513,"title":{},"body":{"contributing.html":{}}}],["fast",{"_index":741,"title":{},"body":{"index.html":{}}}],["fb",{"_index":860,"title":{},"body":{"miscellaneous/variables.html":{}}}],["fb_messanger",{"_index":859,"title":{},"body":{"miscellaneous/variables.html":{}}}],["feature",{"_index":501,"title":{},"body":{"contributing.html":{}}}],["feedback",{"_index":498,"title":{},"body":{"contributing.html":{}}}],["file",{"_index":9,"title":{},"body":{"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"pipes/KeysPipe.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{},"contributing.html":{},"coverage.html":{}}}],["files",{"_index":710,"title":{},"body":{"index.html":{},"license.html":{}}}],["finally",{"_index":574,"title":{},"body":{"contributing.html":{}}}],["fine7",{"_index":2415,"title":{},"body":{"miscellaneous/variables.html":{}}}],["firefox",{"_index":836,"title":{},"body":{"miscellaneous/variables.html":{}}}],["firefox_os",{"_index":900,"title":{},"body":{"miscellaneous/variables.html":{}}}],["first",{"_index":181,"title":{},"body":{"components/AppComponent.html":{},"contributing.html":{}}}],["fitness",{"_index":791,"title":{},"body":{"license.html":{}}}],["five|cink",{"_index":1645,"title":{},"body":{"miscellaneous/variables.html":{}}}],["fix",{"_index":484,"title":{},"body":{"contributing.html":{}}}],["flex",{"_index":169,"title":{},"body":{"components/AppComponent.html":{}}}],["fly",{"_index":930,"title":{},"body":{"miscellaneous/variables.html":{}}}],["flyer|htc",{"_index":2043,"title":{},"body":{"miscellaneous/variables.html":{}}}],["flytablet",{"_index":2243,"title":{},"body":{"miscellaneous/variables.html":{}}}],["fl|f|hv|h|)|tb",{"_index":2108,"title":{},"body":{"miscellaneous/variables.html":{}}}],["following",{"_index":703,"title":{},"body":{"index.html":{},"license.html":{}}}],["font",{"_index":166,"title":{},"body":{"components/AppComponent.html":{}}}],["fork",{"_index":482,"title":{},"body":{"contributing.html":{}}}],["found",{"_index":365,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"contributing.html":{}}}],["free",{"_index":752,"title":{},"body":{"license.html":{}}}],["freedom|chicago|cleveland|baltimore",{"_index":2825,"title":{},"body":{"miscellaneous/variables.html":{}}}],["freetab",{"_index":2576,"title":{},"body":{"miscellaneous/variables.html":{}}}],["free|nexo",{"_index":2851,"title":{},"body":{"miscellaneous/variables.html":{}}}],["fujitsutablet",{"_index":2084,"title":{},"body":{"miscellaneous/variables.html":{}}}],["funbook|micromax.*\\b(p250|p560|p360|p362|p600|p300|p350|p500|p275)\\b",{"_index":2409,"title":{},"body":{"miscellaneous/variables.html":{}}}],["function",{"_index":591,"title":{},"body":{"coverage.html":{}}}],["functions",{"_index":641,"title":{"miscellaneous/functions.html":{}},"body":{"miscellaneous/functions.html":{}}}],["furnished",{"_index":775,"title":{},"body":{"license.html":{}}}],["fx2",{"_index":2697,"title":{},"body":{"miscellaneous/variables.html":{}}}],["fx2tablet",{"_index":2696,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g",{"_index":720,"title":{},"body":{"index.html":{},"miscellaneous/variables.html":{}}}],["g1|me",{"_index":2487,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g1|z520m|android",{"_index":972,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g3|genius",{"_index":2397,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g4|genius",{"_index":2400,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g7105|sm",{"_index":1548,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g9006v|sm",{"_index":1561,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g9008v|sm",{"_index":1562,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g9009d|sm",{"_index":1563,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g900a|sm",{"_index":1564,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g900d|sm",{"_index":1565,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g900f",{"_index":1566,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g900h|sm",{"_index":1568,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g900i|sm",{"_index":1569,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g900j|sm",{"_index":1570,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g900k|sm",{"_index":1571,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g900l|sm",{"_index":1572,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g900m|sm",{"_index":1573,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g900p|sm",{"_index":1574,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g900r4|sm",{"_index":1575,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g900s|sm",{"_index":1576,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g900t|sm",{"_index":1577,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g900v",{"_index":1578,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g900w8|shv",{"_index":1579,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g903f|sm",{"_index":1594,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g920f|sm",{"_index":1587,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g920v|sm",{"_index":1588,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g9250|gt",{"_index":994,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g930f",{"_index":1589,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g9350|sm",{"_index":1585,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g950f|sm",{"_index":992,"title":{},"body":{"miscellaneous/variables.html":{}}}],["g955f|sm",{"_index":993,"title":{},"body":{"miscellaneous/variables.html":{}}}],["galapadtablet",{"_index":2406,"title":{},"body":{"miscellaneous/variables.html":{}}}],["gcta722|tab",{"_index":2542,"title":{},"body":{"miscellaneous/variables.html":{}}}],["general",{"_index":607,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["general.uknown",{"_index":863,"title":{},"body":{"miscellaneous/variables.html":{}}}],["general.uknown.tolowercase",{"_index":1750,"title":{},"body":{"miscellaneous/variables.html":{}}}],["generate",{"_index":706,"title":{},"body":{"index.html":{}}}],["generator",{"_index":743,"title":{},"body":{"index.html":{}}}],["generic",{"_index":941,"title":{},"body":{"miscellaneous/variables.html":{}}}],["generic_phone",{"_index":940,"title":{},"body":{"miscellaneous/variables.html":{}}}],["generictablet",{"_index":2887,"title":{},"body":{"miscellaneous/variables.html":{}}}],["genius",{"_index":2395,"title":{},"body":{"miscellaneous/variables.html":{}}}],["genius|fine7",{"_index":2416,"title":{},"body":{"miscellaneous/variables.html":{}}}],["getdemoheadingtext",{"_index":223,"title":{},"body":{"classes/AppPage.html":{}}}],["getdeviceinfo",{"_index":28,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["getdeviceinfoelements",{"_index":224,"title":{},"body":{"classes/AppPage.html":{}}}],["getisdesktop",{"_index":72,"title":{},"body":{"components/AppComponent.html":{}}}],["getismobile",{"_index":68,"title":{},"body":{"components/AppComponent.html":{}}}],["getistablet",{"_index":70,"title":{},"body":{"components/AppComponent.html":{}}}],["getparagraphtext",{"_index":225,"title":{},"body":{"classes/AppPage.html":{}}}],["getting",{"_index":471,"title":{"contributing.html":{},"index.html":{},"license.html":{}},"body":{}}],["gh|iowa|boston|seattle|phoenix|dallas|in",{"_index":2826,"title":{},"body":{"miscellaneous/variables.html":{}}}],["giii|genius",{"_index":2404,"title":{},"body":{"miscellaneous/variables.html":{}}}],["gii|genius",{"_index":2403,"title":{},"body":{"miscellaneous/variables.html":{}}}],["github",{"_index":143,"title":{},"body":{"components/AppComponent.html":{}}}],["go",{"_index":519,"title":{},"body":{"contributing.html":{}}}],["goclevertablet",{"_index":2522,"title":{},"body":{"miscellaneous/variables.html":{}}}],["going",{"_index":558,"title":{},"body":{"contributing.html":{}}}],["good",{"_index":553,"title":{},"body":{"contributing.html":{}}}],["google",{"_index":911,"title":{},"body":{"miscellaneous/variables.html":{}}}],["google_tv",{"_index":910,"title":{},"body":{"miscellaneous/variables.html":{}}}],["googletablet",{"_index":1797,"title":{},"body":{"miscellaneous/variables.html":{}}}],["go|nexo",{"_index":2852,"title":{},"body":{"miscellaneous/variables.html":{}}}],["granted",{"_index":751,"title":{},"body":{"license.html":{}}}],["gt",{"_index":1001,"title":{},"body":{"miscellaneous/variables.html":{}}}],["gutablet",{"_index":2435,"title":{},"body":{"miscellaneous/variables.html":{}}}],["h1')).gettext",{"_index":245,"title":{},"body":{"classes/AppPage.html":{}}}],["hack",{"_index":344,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["halley|flame|saphyr",{"_index":2689,"title":{},"body":{"miscellaneous/variables.html":{}}}],["hasn't",{"_index":522,"title":{},"body":{"contributing.html":{}}}],["hcl.*tablet|connect",{"_index":2481,"title":{},"body":{"miscellaneous/variables.html":{}}}],["hcltablet",{"_index":2480,"title":{},"body":{"miscellaneous/variables.html":{}}}],["hd)?|visture",{"_index":2501,"title":{},"body":{"miscellaneous/variables.html":{}}}],["hd|i75",{"_index":2498,"title":{},"body":{"miscellaneous/variables.html":{}}}],["heading",{"_index":240,"title":{},"body":{"classes/AppPage.html":{}}}],["help",{"_index":480,"title":{},"body":{"contributing.html":{}}}],["helper",{"_index":704,"title":{},"body":{"index.html":{}}}],["helping",{"_index":526,"title":{},"body":{"contributing.html":{}}}],["helps",{"_index":101,"title":{},"body":{"components/AppComponent.html":{},"contributing.html":{},"index.html":{}}}],["here",{"_index":121,"title":{},"body":{"components/AppComponent.html":{},"contributing.html":{}}}],["hereby",{"_index":750,"title":{},"body":{"license.html":{}}}],["hisensetablet",{"_index":2879,"title":{},"body":{"miscellaneous/variables.html":{}}}],["holders",{"_index":797,"title":{},"body":{"license.html":{}}}],["holds",{"_index":702,"title":{},"body":{"index.html":{}}}],["home",{"_index":674,"title":{},"body":{"index.html":{}}}],["home.component.html",{"_index":676,"title":{},"body":{"index.html":{}}}],["home.component.scss",{"_index":675,"title":{},"body":{"index.html":{}}}],["homecomponent",{"_index":677,"title":{},"body":{"index.html":{}}}],["honeywell",{"_index":936,"title":{},"body":{"miscellaneous/variables.html":{}}}],["host",{"_index":130,"title":{},"body":{"components/AppComponent.html":{}}}],["hover",{"_index":153,"title":{},"body":{"components/AppComponent.html":{}}}],["hp",{"_index":2018,"title":{},"body":{"miscellaneous/variables.html":{}}}],["hptablet",{"_index":2017,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ht7s3|hudl",{"_index":2882,"title":{},"body":{"miscellaneous/variables.html":{}}}],["htc",{"_index":914,"title":{},"body":{"miscellaneous/variables.html":{}}}],["htc_flyer_p512|htc",{"_index":2042,"title":{},"body":{"miscellaneous/variables.html":{}}}],["htctablet",{"_index":2041,"title":{},"body":{"miscellaneous/variables.html":{}}}],["htc|htc.*(sensation|evo|vision|explorer|6800|8100|8900|a7272|s510e|c110e|legend|desire|t8282)|apx515ckt|qtek9090|apa9292kt|hd_mini|sensation.*z710e|pg86100|z715e|desire.*(a8181|hd)|adr6200|adr6400l|adr6425|001ht|inspire",{"_index":970,"title":{},"body":{"miscellaneous/variables.html":{}}}],["html",{"_index":184,"title":{},"body":{"components/AppComponent.html":{}}}],["http",{"_index":678,"title":{},"body":{"index.html":{}}}],["https://github.com/ahsanayaz/ngx",{"_index":820,"title":{},"body":{"properties.html":{}}}],["https://github.com/koderlabs/ngx",{"_index":823,"title":{},"body":{"properties.html":{}}}],["huaweitablet",{"_index":2250,"title":{},"body":{"miscellaneous/variables.html":{}}}],["hub2",{"_index":2885,"title":{},"body":{"miscellaneous/variables.html":{}}}],["hudl",{"_index":2881,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i.e",{"_index":742,"title":{},"body":{"index.html":{}}}],["i100",{"_index":1199,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i110|sch",{"_index":1200,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i200|sgh",{"_index":1328,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i300|sgh",{"_index":1329,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i300|sph",{"_index":1488,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i317|sgh",{"_index":1536,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i320|sgh",{"_index":1330,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i325|sph",{"_index":1489,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i330|sph",{"_index":1490,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i337|bgt",{"_index":996,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i350|sph",{"_index":1491,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i400|sch",{"_index":1201,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i405|sch",{"_index":1202,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i467|xe500|sm",{"_index":1904,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i497|sph",{"_index":1833,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i500|sch",{"_index":1203,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i500|sph",{"_index":1492,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i510|sch",{"_index":1204,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i515|sch",{"_index":1205,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i535|sm",{"_index":1533,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i5500|gt",{"_index":1081,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i5503|gt",{"_index":1082,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i550|sgh",{"_index":1331,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i5510|gt",{"_index":1557,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i5700|gt",{"_index":1083,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i577",{"_index":1332,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i5800|gt",{"_index":1084,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i5801|gt",{"_index":1085,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i600|sch",{"_index":1206,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i600|sgh",{"_index":1333,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i600|sph",{"_index":1493,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i607|sgh",{"_index":1334,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i617|sgh",{"_index":1335,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i627|sgh",{"_index":1336,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i637|sgh",{"_index":1337,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i6410|gt",{"_index":1086,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i6420|gt",{"_index":1087,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i677|sgh",{"_index":1338,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i700|sgh",{"_index":1339,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i700|sph",{"_index":1494,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i705",{"_index":1836,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i70|tab",{"_index":2543,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i7110|gt",{"_index":1088,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i717|sgh",{"_index":1340,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i71|tab",{"_index":2544,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i720|tab",{"_index":2534,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i721",{"_index":2541,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i727|sgh",{"_index":1341,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i730|sch",{"_index":1207,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i7410",{"_index":1089,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i747m|sgh",{"_index":1342,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i7500|gt",{"_index":1090,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i760|sch",{"_index":1208,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i770|sch",{"_index":1209,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i777",{"_index":1343,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i780|sgh",{"_index":1344,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i8000|gt",{"_index":1091,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i800|sch",{"_index":1814,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i8150|gt",{"_index":1092,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i815|sch",{"_index":1815,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i8160|gt",{"_index":1093,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i8190|gt",{"_index":1094,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i8262|gt",{"_index":1539,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i827|sgh",{"_index":1345,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i830",{"_index":1210,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i8320|gt",{"_index":1095,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i8330|gt",{"_index":1096,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i8350|gt",{"_index":1097,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i847|sgh",{"_index":1346,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i8510|gt",{"_index":1546,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i8530|gt",{"_index":1098,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i857|sgh",{"_index":1347,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i8700|gt",{"_index":1099,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i8703",{"_index":1100,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i8750|sm",{"_index":1560,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i8910|gt",{"_index":1101,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i896|sgh",{"_index":1348,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i897|sgh",{"_index":1349,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9000|gt",{"_index":1102,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9001|gt",{"_index":1103,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9003|gt",{"_index":1104,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i900|sgh",{"_index":1350,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9010|gt",{"_index":1105,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9020|gt",{"_index":1106,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9023|gt",{"_index":1107,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i905",{"_index":1816,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9070|gt",{"_index":1108,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i907|sgh",{"_index":1351,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9082|gt",{"_index":1109,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i909|gt",{"_index":1530,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9100|gt",{"_index":1110,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9103",{"_index":1111,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9105|gt",{"_index":1545,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i910|sch",{"_index":1211,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i915|gt",{"_index":1837,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i917|sgh",{"_index":1352,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9190|sm",{"_index":1592,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9195|sm",{"_index":1552,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9200x|gt",{"_index":1907,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9200|gt",{"_index":1881,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9205|sm",{"_index":1584,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i920|sch",{"_index":1212,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i921|tab",{"_index":2532,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9220|gt",{"_index":1112,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9228|sch",{"_index":1878,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i925",{"_index":1880,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9250|gt",{"_index":1113,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i927|sgh",{"_index":1353,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9295|gt",{"_index":1551,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9300|gt",{"_index":1114,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9305|gt",{"_index":1115,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i937",{"_index":1354,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9500|gt",{"_index":1116,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i9505|gt",{"_index":1117,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i957|sgh",{"_index":1817,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i959|sch",{"_index":1213,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i987|sgh",{"_index":1818,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i997|sgh",{"_index":1355,"title":{},"body":{"miscellaneous/variables.html":{}}}],["i_mobile",{"_index":932,"title":{},"body":{"miscellaneous/variables.html":{}}}],["icon",{"_index":160,"title":{},"body":{"components/AppComponent.html":{}}}],["iconbittablet",{"_index":2740,"title":{},"body":{"miscellaneous/variables.html":{}}}],["idea",{"_index":554,"title":{},"body":{"contributing.html":{}}}],["identifier",{"_index":587,"title":{},"body":{"coverage.html":{}}}],["identify",{"_index":102,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["ie",{"_index":844,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ii",{"_index":2402,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ijoytablet",{"_index":2663,"title":{},"body":{"miscellaneous/variables.html":{}}}],["im",{"_index":1621,"title":{},"body":{"miscellaneous/variables.html":{}}}],["img",{"_index":150,"title":{},"body":{"components/AppComponent.html":{}}}],["imobiletablet",{"_index":2639,"title":{},"body":{"miscellaneous/variables.html":{}}}],["implement",{"_index":535,"title":{},"body":{"contributing.html":{}}}],["implements",{"_index":419,"title":{},"body":{"pipes/KeysPipe.html":{}}}],["implied",{"_index":787,"title":{},"body":{"license.html":{}}}],["import",{"_index":74,"title":{},"body":{"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"pipes/KeysPipe.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["important",{"_index":515,"title":{},"body":{"contributing.html":{}}}],["imports",{"_index":215,"title":{},"body":{"modules/AppModule.html":{},"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["improve",{"_index":491,"title":{},"body":{"contributing.html":{}}}],["improves",{"_index":516,"title":{},"body":{"contributing.html":{}}}],["included",{"_index":781,"title":{},"body":{"license.html":{}}}],["including",{"_index":762,"title":{},"body":{"license.html":{}}}],["index",{"_index":19,"title":{"index.html":{}},"body":{"components/AppComponent.html":{},"classes/AppPage.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["info",{"_index":3,"title":{},"body":{"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"pipes/KeysPipe.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["info.key",{"_index":128,"title":{},"body":{"components/AppComponent.html":{}}}],["info.value",{"_index":129,"title":{},"body":{"components/AppComponent.html":{}}}],["information",{"_index":104,"title":{},"body":{"components/AppComponent.html":{},"classes/AppPage.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"contributing.html":{},"index.html":{}}}],["inherited",{"_index":455,"title":{},"body":{"injectables/UniversalDeviceDetectorService.html":{}}}],["initial",{"_index":333,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["initiated",{"_index":335,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["inject",{"_index":254,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["inject(request",{"_index":266,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["injectable",{"_index":255,"title":{"injectables/DeviceDetectorService.html":{},"injectables/UniversalDeviceDetectorService.html":{}},"body":{"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"coverage.html":{},"index.html":{}}}],["injectables",{"_index":273,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"injectables/UniversalDeviceDetectorService.html":{},"overview.html":{}}}],["inm8002kp|inm1010fp|inm805nd|intenso",{"_index":2165,"title":{},"body":{"miscellaneous/variables.html":{}}}],["input",{"_index":177,"title":{},"body":{"components/AppComponent.html":{}}}],["inq",{"_index":939,"title":{},"body":{"miscellaneous/variables.html":{}}}],["inspired",{"_index":731,"title":{},"body":{"index.html":{}}}],["install",{"_index":672,"title":{},"body":{"index.html":{}}}],["installation",{"_index":671,"title":{},"body":{"index.html":{}}}],["installed",{"_index":719,"title":{},"body":{"index.html":{}}}],["instanceof",{"_index":441,"title":{},"body":{"classes/ReTree.html":{}}}],["instead",{"_index":366,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["intensotablet",{"_index":2164,"title":{},"body":{"miscellaneous/variables.html":{}}}],["interface",{"_index":313,"title":{"interfaces/DeviceInfo.html":{}},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"coverage.html":{},"overview.html":{}}}],["interfaces",{"_index":410,"title":{},"body":{"interfaces/DeviceInfo.html":{}}}],["ios",{"_index":345,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"miscellaneous/variables.html":{}}}],["ipad",{"_index":320,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"coverage.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["ipad|ipad.*mobile",{"_index":1795,"title":{},"body":{"miscellaneous/variables.html":{}}}],["iphone",{"_index":685,"title":{},"body":{"index.html":{},"miscellaneous/variables.html":{}}}],["ipod",{"_index":913,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ips10",{"_index":2472,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ips10|tab",{"_index":2471,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ips9|tab",{"_index":2467,"title":{},"body":{"miscellaneous/variables.html":{}}}],["iq230|iq444|iq450|iq440|iq442|iq441|iq245|iq256|iq236|iq255|iq235|iq245|iq275|iq240|iq285|iq280|iq270|iq260|iq250",{"_index":1640,"title":{},"body":{"miscellaneous/variables.html":{}}}],["iq310|fly",{"_index":2244,"title":{},"body":{"miscellaneous/variables.html":{}}}],["iq|i",{"_index":1654,"title":{},"body":{"miscellaneous/variables.html":{}}}],["irutablet",{"_index":2167,"title":{},"body":{"miscellaneous/variables.html":{}}}],["isdesktop",{"_index":33,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["isdesktop(useragent",{"_index":284,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["isdesktopdevice",{"_index":682,"title":{},"body":{"index.html":{}}}],["ismobile",{"_index":31,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["ismobile(useragent",{"_index":289,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["isplatformbrowser",{"_index":310,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["isplatformbrowser(this.platformid",{"_index":323,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["isplatformserver",{"_index":261,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["isplatformserver(platformid",{"_index":268,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["issue",{"_index":503,"title":{},"body":{"contributing.html":{}}}],["issues",{"_index":479,"title":{},"body":{"contributing.html":{}}}],["istablet",{"_index":32,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["istablet(useragent",{"_index":293,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["it's",{"_index":552,"title":{},"body":{"contributing.html":{}}}],["item",{"_index":244,"title":{},"body":{"classes/AppPage.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"classes/ReTree.html":{}}}],["itunes",{"_index":949,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ivory|\\be",{"_index":2802,"title":{},"body":{"miscellaneous/variables.html":{}}}],["j120f|sm",{"_index":1586,"title":{},"body":{"miscellaneous/variables.html":{}}}],["j150|sgh",{"_index":1356,"title":{},"body":{"miscellaneous/variables.html":{}}}],["j200|sgh",{"_index":1357,"title":{},"body":{"miscellaneous/variables.html":{}}}],["j330f",{"_index":1595,"title":{},"body":{"miscellaneous/variables.html":{}}}],["j500fn|sm",{"_index":1593,"title":{},"body":{"miscellaneous/variables.html":{}}}],["jaytechtablet",{"_index":2784,"title":{},"body":{"miscellaneous/variables.html":{}}}],["jetstream|htc",{"_index":2044,"title":{},"body":{"miscellaneous/variables.html":{}}}],["jones|tablet",{"_index":2679,"title":{},"body":{"miscellaneous/variables.html":{}}}],["joy|fine11",{"_index":2421,"title":{},"body":{"miscellaneous/variables.html":{}}}],["js",{"_index":707,"title":{},"body":{"index.html":{}}}],["js.map",{"_index":708,"title":{},"body":{"index.html":{}}}],["jupiter",{"_index":2845,"title":{},"body":{"miscellaneous/variables.html":{}}}],["justify",{"_index":172,"title":{},"body":{"components/AppComponent.html":{}}}],["jxdtablet",{"_index":2659,"title":{},"body":{"miscellaneous/variables.html":{}}}],["k010",{"_index":2033,"title":{},"body":{"miscellaneous/variables.html":{}}}],["k011",{"_index":2034,"title":{},"body":{"miscellaneous/variables.html":{}}}],["k017",{"_index":2035,"title":{},"body":{"miscellaneous/variables.html":{}}}],["k01e",{"_index":2036,"title":{},"body":{"miscellaneous/variables.html":{}}}],["k1|)|thinkpad",{"_index":2100,"title":{},"body":{"miscellaneous/variables.html":{}}}],["karbonntablet",{"_index":2410,"title":{},"body":{"miscellaneous/variables.html":{}}}],["key",{"_index":422,"title":{},"body":{"pipes/KeysPipe.html":{},"miscellaneous/variables.html":{}}}],["keys",{"_index":414,"title":{},"body":{"pipes/KeysPipe.html":{}}}],["keys.push",{"_index":424,"title":{},"body":{"pipes/KeysPipe.html":{}}}],["keyspipe",{"_index":200,"title":{"pipes/KeysPipe.html":{}},"body":{"modules/AppModule.html":{},"pipes/KeysPipe.html":{},"coverage.html":{},"overview.html":{}}}],["keywords",{"_index":815,"title":{},"body":{"properties.html":{}}}],["kfapwa|wfjwae|kfsawa|kfsawi|kfaswi|kfarwi|kffowi|kfgiwi|kfmewi)\\\\b|android.*silk\\/[0",{"_index":2014,"title":{},"body":{"miscellaneous/variables.html":{}}}],["kiddo|nexo",{"_index":2856,"title":{},"body":{"miscellaneous/variables.html":{}}}],["kind",{"_index":786,"title":{},"body":{"license.html":{}}}],["kindle",{"_index":2012,"title":{},"body":{"miscellaneous/variables.html":{}}}],["king|cink",{"_index":1652,"title":{},"body":{"miscellaneous/variables.html":{}}}],["kobo",{"_index":2288,"title":{},"body":{"miscellaneous/variables.html":{}}}],["kobotablet",{"_index":2287,"title":{},"body":{"miscellaneous/variables.html":{}}}],["kocasotablet",{"_index":2876,"title":{},"body":{"miscellaneous/variables.html":{}}}],["l09|bah",{"_index":2267,"title":{},"body":{"miscellaneous/variables.html":{}}}],["l170|sgh",{"_index":1358,"title":{},"body":{"miscellaneous/variables.html":{}}}],["l700|sgh",{"_index":1359,"title":{},"body":{"miscellaneous/variables.html":{}}}],["l700|sph",{"_index":1495,"title":{},"body":{"miscellaneous/variables.html":{}}}],["landscape",{"_index":318,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"miscellaneous/enumerations.html":{}}}],["landscape)').matches",{"_index":382,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["later",{"_index":297,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["latest",{"_index":570,"title":{},"body":{"contributing.html":{},"index.html":{}}}],["lavatablet",{"_index":2799,"title":{},"body":{"miscellaneous/variables.html":{}}}],["lc11|sch",{"_index":1214,"title":{},"body":{"miscellaneous/variables.html":{}}}],["leadertablet",{"_index":2858,"title":{},"body":{"miscellaneous/variables.html":{}}}],["leave",{"_index":555,"title":{},"body":{"contributing.html":{}}}],["left",{"_index":158,"title":{},"body":{"components/AppComponent.html":{}}}],["legend",{"_index":183,"title":{},"body":{"components/AppComponent.html":{}}}],["length",{"_index":969,"title":{},"body":{"miscellaneous/variables.html":{}}}],["lenovotablet",{"_index":2096,"title":{},"body":{"miscellaneous/variables.html":{}}}],["lg",{"_index":920,"title":{},"body":{"miscellaneous/variables.html":{}}}],["lgtablet",{"_index":2073,"title":{},"body":{"miscellaneous/variables.html":{}}}],["liability",{"_index":801,"title":{},"body":{"license.html":{}}}],["liable",{"_index":798,"title":{},"body":{"license.html":{}}}],["library",{"_index":517,"title":{},"body":{"contributing.html":{},"index.html":{}}}],["license",{"_index":585,"title":{"license.html":{}},"body":{"contributing.html":{},"index.html":{},"license.html":{},"properties.html":{}}}],["limitation",{"_index":763,"title":{},"body":{"license.html":{}}}],["limited",{"_index":788,"title":{},"body":{"license.html":{}}}],["line",{"_index":968,"title":{},"body":{"miscellaneous/variables.html":{}}}],["line:max",{"_index":967,"title":{},"body":{"miscellaneous/variables.html":{}}}],["links",{"_index":583,"title":{},"body":{"contributing.html":{}}}],["lint",{"_index":712,"title":{},"body":{"index.html":{}}}],["lintto",{"_index":714,"title":{},"body":{"index.html":{}}}],["linux",{"_index":1688,"title":{},"body":{"miscellaneous/variables.html":{}}}],["live",{"_index":649,"title":{},"body":{"index.html":{}}}],["livingstone|cervantes|avant|aquaris",{"_index":2248,"title":{},"body":{"miscellaneous/variables.html":{}}}],["localhost:4200",{"_index":725,"title":{},"body":{"index.html":{}}}],["lock",{"_index":502,"title":{},"body":{"contributing.html":{}}}],["log",{"_index":727,"title":{},"body":{"index.html":{}}}],["logo",{"_index":144,"title":{},"body":{"components/AppComponent.html":{}}}],["loox|xeno10|odys",{"_index":2736,"title":{},"body":{"miscellaneous/variables.html":{}}}],["lot",{"_index":577,"title":{},"body":{"contributing.html":{}}}],["ls670|ls855|lw690|mn270|mn510|p509|p769|p930|un200|un270|un510|un610|us670|us740|us760|ux265|ux840|vn271",{"_index":1601,"title":{},"body":{"miscellaneous/variables.html":{}}}],["lu6200|ms690|ms695|ms770|ms840|ms870|ms910|p500|p700|p705|vm696|as680|as695|ax840|c729|e970|gs505|272",{"_index":1599,"title":{},"body":{"miscellaneous/variables.html":{}}}],["lumia",{"_index":925,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m",{"_index":2829,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m100|sph",{"_index":1496,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m110|sgh",{"_index":1360,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m110|sph",{"_index":1462,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m150|sgh",{"_index":1361,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m180k|shw",{"_index":1859,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m180l|sm",{"_index":1860,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m180s|shw",{"_index":1863,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m180w|shw",{"_index":1864,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m1|nibiru",{"_index":2844,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m200|sgh",{"_index":1362,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m220|sph",{"_index":1497,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m240",{"_index":1498,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m300w|shw",{"_index":1865,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m300|sph",{"_index":1499,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m305w|shw",{"_index":1866,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m305|sph",{"_index":1500,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m320|sph",{"_index":1501,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m330|sph",{"_index":1502,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m350|sph",{"_index":1503,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m3510|gt",{"_index":1118,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m360|sph",{"_index":1504,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m370|sph",{"_index":1505,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m380k|shw",{"_index":1867,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m380s|shw",{"_index":1868,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m380w",{"_index":1869,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m380|sph",{"_index":1506,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m430w|shw",{"_index":1871,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m480k|shw",{"_index":1872,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m480s|shw",{"_index":1873,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m480w|shw",{"_index":1874,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m485w|shw",{"_index":1875,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m486w|shw",{"_index":1876,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m500w|gt",{"_index":1877,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m510|sph",{"_index":1507,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m540|sph",{"_index":1508,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m550",{"_index":1509,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m560|sph",{"_index":1510,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m5650|gt",{"_index":1119,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m570|sph",{"_index":1511,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m580|sph",{"_index":1512,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m610|sph",{"_index":1513,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m620|sph",{"_index":1514,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m630|sph",{"_index":1515,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m702pro",{"_index":2168,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m721|tab",{"_index":2530,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m723g",{"_index":2529,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m7500|gt",{"_index":1120,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m7600|gt",{"_index":1121,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m7603",{"_index":1122,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m800|sph",{"_index":1516,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m810|sph",{"_index":1517,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m813g|tab",{"_index":2540,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m850|sph",{"_index":1518,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m8800|gt",{"_index":1123,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m8910|gt",{"_index":1124,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m9002|q702|kf026",{"_index":2438,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m900|sph",{"_index":1519,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m910",{"_index":1520,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m920|sph",{"_index":1521,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m930|sph",{"_index":1522,"title":{},"body":{"miscellaneous/variables.html":{}}}],["mac",{"_index":904,"title":{},"body":{"miscellaneous/variables.html":{}}}],["macintel",{"_index":350,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["macintosh",{"_index":905,"title":{},"body":{"miscellaneous/variables.html":{}}}],["macosx",{"_index":1748,"title":{},"body":{"miscellaneous/variables.html":{}}}],["macosx_10",{"_index":1739,"title":{},"body":{"miscellaneous/variables.html":{}}}],["macosx_11",{"_index":1738,"title":{},"body":{"miscellaneous/variables.html":{}}}],["macosx_11_0",{"_index":1727,"title":{},"body":{"miscellaneous/variables.html":{}}}],["macosx_12",{"_index":1736,"title":{},"body":{"miscellaneous/variables.html":{}}}],["macosx_13",{"_index":1735,"title":{},"body":{"miscellaneous/variables.html":{}}}],["macosx_14",{"_index":1733,"title":{},"body":{"miscellaneous/variables.html":{}}}],["macosx_15",{"_index":1731,"title":{},"body":{"miscellaneous/variables.html":{}}}],["macosx_16",{"_index":1729,"title":{},"body":{"miscellaneous/variables.html":{}}}],["macosx_2",{"_index":1747,"title":{},"body":{"miscellaneous/variables.html":{}}}],["macosx_3",{"_index":1746,"title":{},"body":{"miscellaneous/variables.html":{}}}],["macosx_4",{"_index":1745,"title":{},"body":{"miscellaneous/variables.html":{}}}],["macosx_5",{"_index":1744,"title":{},"body":{"miscellaneous/variables.html":{}}}],["macosx_6",{"_index":1743,"title":{},"body":{"miscellaneous/variables.html":{}}}],["macosx_7",{"_index":1742,"title":{},"body":{"miscellaneous/variables.html":{}}}],["macosx_8",{"_index":1741,"title":{},"body":{"miscellaneous/variables.html":{}}}],["macosx_9",{"_index":1740,"title":{},"body":{"miscellaneous/variables.html":{}}}],["magictab|stream|tb",{"_index":2476,"title":{},"body":{"miscellaneous/variables.html":{}}}],["mainmodule",{"_index":596,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["mainmodule.filename",{"_index":828,"title":{},"body":{"miscellaneous/variables.html":{}}}],["make",{"_index":505,"title":{},"body":{"contributing.html":{},"index.html":{}}}],["manually",{"_index":698,"title":{},"body":{"index.html":{}}}],["many",{"_index":475,"title":{},"body":{"contributing.html":{}}}],["map(key",{"_index":357,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["mapping.prop",{"_index":361,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["mappings",{"_index":336,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["mappings.foreach(mapping",{"_index":340,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["margin",{"_index":157,"title":{},"body":{"components/AppComponent.html":{}}}],["master",{"_index":541,"title":{},"body":{"contributing.html":{}}}],["match",{"_index":399,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["matching",{"_index":192,"title":{},"body":{"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"pipes/KeysPipe.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{},"contributing.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"properties.html":{},"miscellaneous/variables.html":{}}}],["max",{"_index":136,"title":{},"body":{"components/AppComponent.html":{}}}],["mb520|mb525|mb526|mb611|mb612|mb632|mb810|mb855|mb860|mb861|mb865|mb870|me501|me502|me511|me525|me600",{"_index":985,"title":{},"body":{"miscellaneous/variables.html":{}}}],["me560cg|me372cg|me302kl",{"_index":2032,"title":{},"body":{"miscellaneous/variables.html":{}}}],["me572c|me103k|me170c|me171c|\\\\bme70c\\\\b|me581c",{"_index":2037,"title":{},"body":{"miscellaneous/variables.html":{}}}],["me581cl|me8510c|me181c|p01y|po1ma|p01z|\\\\bp027\\\\b|\\\\bp024\\\\b|\\\\bp00c\\\\b",{"_index":2038,"title":{},"body":{"miscellaneous/variables.html":{}}}],["me632|me722|me811|me860|me863|me865|mt620|mt710|mt716|mt720|mt810|mt870|mt917|motorola.*titanium|wx435",{"_index":986,"title":{},"body":{"miscellaneous/variables.html":{}}}],["means",{"_index":576,"title":{},"body":{"contributing.html":{}}}],["mediacomtablet",{"_index":2828,"title":{},"body":{"miscellaneous/variables.html":{}}}],["mediatektablet",{"_index":2516,"title":{},"body":{"miscellaneous/variables.html":{}}}],["mediontablet",{"_index":2160,"title":{},"body":{"miscellaneous/variables.html":{}}}],["megafon",{"_index":2170,"title":{},"body":{"miscellaneous/variables.html":{}}}],["megafontablet",{"_index":2169,"title":{},"body":{"miscellaneous/variables.html":{}}}],["merchantability",{"_index":790,"title":{},"body":{"license.html":{}}}],["merge",{"_index":766,"title":{},"body":{"license.html":{}}}],["messanger",{"_index":861,"title":{},"body":{"miscellaneous/variables.html":{}}}],["metadata",{"_index":11,"title":{},"body":{"components/AppComponent.html":{},"pipes/KeysPipe.html":{}}}],["methods",{"_index":26,"title":{},"body":{"components/AppComponent.html":{},"classes/AppPage.html":{},"injectables/DeviceDetectorService.html":{},"pipes/KeysPipe.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["mi",{"_index":943,"title":{},"body":{"miscellaneous/variables.html":{}}}],["mi_se_9",{"_index":942,"title":{},"body":{"miscellaneous/variables.html":{}}}],["micromax",{"_index":926,"title":{},"body":{"miscellaneous/variables.html":{}}}],["micromax.*\\b(a210|a92|a88|a72|a111|a110q|a115|a116|a110|a90s|a26|a51|a35|a54|a25|a27|a89|a68|a65|a57|a90)\\b",{"_index":1607,"title":{},"body":{"miscellaneous/variables.html":{}}}],["micromaxtablet",{"_index":2408,"title":{},"body":{"miscellaneous/variables.html":{}}}],["mid125|mid810|mid732|mid120|mid930|mid800|mid731|mid900|mid100|mid820|mid735|mid980|mid130|mid833|mid737",{"_index":2214,"title":{},"body":{"miscellaneous/variables.html":{}}}],["mid7127|mid8042|mid8048|mid8127|mid9042|mid9740|mid9742|mid7022|mid7010",{"_index":2211,"title":{},"body":{"miscellaneous/variables.html":{}}}],["mid960|mid135|mid860|mid736|mid140|mid930|mid835|mid733|mid4x10",{"_index":2215,"title":{},"body":{"miscellaneous/variables.html":{}}}],["midtablet",{"_index":2212,"title":{},"body":{"miscellaneous/variables.html":{}}}],["miscellaneous",{"_index":638,"title":{"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}},"body":{"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["mit",{"_index":744,"title":{},"body":{"index.html":{},"license.html":{},"properties.html":{}}}],["mitablet",{"_index":2838,"title":{},"body":{"miscellaneous/variables.html":{}}}],["mobi",{"_index":2857,"title":{},"body":{"miscellaneous/variables.html":{}}}],["mobile",{"_index":124,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"miscellaneous/enumerations.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["mobile\\b",{"_index":1696,"title":{},"body":{"miscellaneous/variables.html":{}}}],["mobiles_re",{"_index":609,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["modecomtablet",{"_index":2567,"title":{},"body":{"miscellaneous/variables.html":{}}}],["modify",{"_index":765,"title":{},"body":{"license.html":{}}}],["module",{"_index":193,"title":{"modules/AppModule.html":{},"modules/AppServerModule.html":{}},"body":{}}],["modulefilename",{"_index":597,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["modules",{"_index":195,"title":{"modules.html":{}},"body":{"modules/AppModule.html":{},"modules/AppServerModule.html":{},"modules.html":{},"overview.html":{}}}],["more",{"_index":531,"title":{},"body":{"contributing.html":{}}}],["more|fine10",{"_index":2420,"title":{},"body":{"miscellaneous/variables.html":{}}}],["motorola",{"_index":919,"title":{},"body":{"miscellaneous/variables.html":{}}}],["motorolatablet",{"_index":2049,"title":{},"body":{"miscellaneous/variables.html":{}}}],["mozilla\\/5\\.0",{"_index":880,"title":{},"body":{"miscellaneous/variables.html":{}}}],["mpdc100|mpdc99|mpdc97|mpdc88|mpdc8|mpdc77|mp709|mid701|mid711|mid170|mpdc703|mpqc1010",{"_index":2811,"title":{},"body":{"miscellaneous/variables.html":{}}}],["mpi10c3g|m",{"_index":2830,"title":{},"body":{"miscellaneous/variables.html":{}}}],["mpmantablet",{"_index":2806,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ms",{"_index":856,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ms323|m257",{"_index":1603,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ms_edge",{"_index":848,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ms_edge_chromium",{"_index":850,"title":{},"body":{"miscellaneous/variables.html":{}}}],["msitablet",{"_index":2216,"title":{},"body":{"miscellaneous/variables.html":{}}}],["muhammad",{"_index":748,"title":{},"body":{"license.html":{},"properties.html":{}}}],["mw0811|mw0812|mw0922|mtk8382|mw1031|mw0831|mw0821|mw0931|mw0712",{"_index":2805,"title":{},"body":{"miscellaneous/variables.html":{}}}],["m|tab",{"_index":2444,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n100|sph",{"_index":1523,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n105|sgh",{"_index":1363,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n150|sch",{"_index":1215,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n200|sph",{"_index":1524,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n240|sph",{"_index":1525,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n300|sch",{"_index":1216,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n300|sph",{"_index":1526,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n400|sph",{"_index":1527,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n500|sgh",{"_index":1364,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n5100|gt",{"_index":1848,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n5105|gt",{"_index":1849,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n5110x|gt",{"_index":1908,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n5110|shv",{"_index":1850,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n5120|sm",{"_index":1909,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n600",{"_index":1365,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n620|sgh",{"_index":1366,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n625|sgh",{"_index":1367,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n7000|gt",{"_index":1125,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n700|sgh",{"_index":1368,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n7100",{"_index":1531,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n7105|sch",{"_index":1532,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n710|sgh",{"_index":1369,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n8000|gt",{"_index":1831,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n8005|gt",{"_index":1843,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n8010|gt",{"_index":1842,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n8013|gt",{"_index":1838,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n8020|gt",{"_index":1844,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n9005|gt",{"_index":1549,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n900a|sm",{"_index":1534,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n900t|sgh",{"_index":1535,"title":{},"body":{"miscellaneous/variables.html":{}}}],["n910c|sm",{"_index":1590,"title":{},"body":{"miscellaneous/variables.html":{}}}],["nabitablet",{"_index":2285,"title":{},"body":{"miscellaneous/variables.html":{}}}],["name",{"_index":41,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"pipes/KeysPipe.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["navi",{"_index":2442,"title":{},"body":{"miscellaneous/variables.html":{}}}],["navigateto",{"_index":226,"title":{},"body":{"classes/AppPage.html":{}}}],["navigator",{"_index":403,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["navigator.maxtouchpoints",{"_index":351,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["navigator.platform",{"_index":349,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["nectablet",{"_index":2270,"title":{},"body":{"miscellaneous/variables.html":{}}}],["need",{"_index":697,"title":{},"body":{"index.html":{}}}],["needed",{"_index":573,"title":{},"body":{"contributing.html":{}}}],["needs",{"_index":737,"title":{},"body":{"index.html":{}}}],["neon|xsk",{"_index":2187,"title":{},"body":{"miscellaneous/variables.html":{}}}],["new",{"_index":306,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{},"contributing.html":{},"coverage.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["nexo",{"_index":2847,"title":{},"body":{"miscellaneous/variables.html":{}}}],["nexotablet",{"_index":2846,"title":{},"body":{"miscellaneous/variables.html":{}}}],["next",{"_index":966,"title":{},"body":{"miscellaneous/variables.html":{}}}],["nexus",{"_index":916,"title":{},"body":{"miscellaneous/variables.html":{}}}],["nexus_phone",{"_index":915,"title":{},"body":{"miscellaneous/variables.html":{}}}],["nexustablet",{"_index":917,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ng",{"_index":722,"title":{},"body":{"index.html":{}}}],["ngmodule",{"_index":208,"title":{},"body":{"modules/AppModule.html":{},"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["nguniversal/express",{"_index":258,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"dependencies.html":{},"index.html":{}}}],["ngx",{"_index":76,"title":{},"body":{"components/AppComponent.html":{},"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"dependencies.html":{},"index.html":{},"properties.html":{}}}],["nibiru",{"_index":2843,"title":{},"body":{"miscellaneous/variables.html":{}}}],["nibirutablet",{"_index":2842,"title":{},"body":{"miscellaneous/variables.html":{}}}],["nintendo",{"_index":937,"title":{},"body":{"miscellaneous/variables.html":{}}}],["noderequire",{"_index":826,"title":{},"body":{"miscellaneous/variables.html":{}}}],["nofilter",{"_index":420,"title":{},"body":{"pipes/KeysPipe.html":{}}}],["nokia",{"_index":924,"title":{},"body":{"miscellaneous/variables.html":{}}}],["nokia_lumia",{"_index":923,"title":{},"body":{"miscellaneous/variables.html":{}}}],["nokialumiatablet",{"_index":2194,"title":{},"body":{"miscellaneous/variables.html":{}}}],["noninfringement",{"_index":794,"title":{},"body":{"license.html":{}}}],["nooktablet",{"_index":2051,"title":{},"body":{"miscellaneous/variables.html":{}}}],["noopanimationsmodule",{"_index":213,"title":{},"body":{"modules/AppModule.html":{}}}],["note",{"_index":2640,"title":{},"body":{"miscellaneous/variables.html":{}}}],["notice",{"_index":779,"title":{},"body":{"license.html":{}}}],["nova|nexo",{"_index":2848,"title":{},"body":{"miscellaneous/variables.html":{}}}],["novo7|novo8|novo10|novo7aurora|novo7basic|novo7paladin|novo9",{"_index":2192,"title":{},"body":{"miscellaneous/variables.html":{}}}],["npm",{"_index":584,"title":{},"body":{"contributing.html":{},"index.html":{}}}],["nt",{"_index":881,"title":{},"body":{"miscellaneous/variables.html":{}}}],["null",{"_index":55,"title":{},"body":{"components/AppComponent.html":{},"classes/ReTree.html":{},"index.html":{}}}],["obj",{"_index":355,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"miscellaneous/variables.html":{}}}],["obj[browsers[key",{"_index":830,"title":{},"body":{"miscellaneous/variables.html":{}}}],["obj[constants[mapping.const][item",{"_index":352,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["obj[key",{"_index":1752,"title":{},"body":{"miscellaneous/variables.html":{}}}],["object",{"_index":283,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"miscellaneous/variables.html":{}}}],["object.keys(browser_versions_re_map).reduce((obj",{"_index":829,"title":{},"body":{"miscellaneous/variables.html":{}}}],["object.keys(constants.mobiles_re).find(mobile",{"_index":400,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["object.keys(constants.tablets_re).find(mobile",{"_index":405,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["object.keys(constants[mapping.const",{"_index":356,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["object.keys(constants[mapping.const]).reduce((obj",{"_index":342,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["object.keys(os_versions_re_map).reduce((obj",{"_index":1751,"title":{},"body":{"miscellaneous/variables.html":{}}}],["obtaining",{"_index":755,"title":{},"body":{"license.html":{}}}],["octa|mp10",{"_index":2808,"title":{},"body":{"miscellaneous/variables.html":{}}}],["octa|mpqc1114|mpqc1004|mpqc994|mpqc974|mpqc973|mpqc804|mpqc784|mpqc780",{"_index":2809,"title":{},"body":{"miscellaneous/variables.html":{}}}],["odystablet",{"_index":2735,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ondatablet",{"_index":2778,"title":{},"body":{"miscellaneous/variables.html":{}}}],["one",{"_index":549,"title":{},"body":{"contributing.html":{},"miscellaneous/variables.html":{}}}],["one|nexus",{"_index":974,"title":{},"body":{"miscellaneous/variables.html":{}}}],["opacity",{"_index":154,"title":{},"body":{"components/AppComponent.html":{}}}],["open",{"_index":112,"title":{},"body":{"components/AppComponent.html":{},"contributing.html":{}}}],["opened",{"_index":524,"title":{},"body":{"contributing.html":{}}}],["opera",{"_index":842,"title":{},"body":{"miscellaneous/variables.html":{}}}],["opera\\b",{"_index":877,"title":{},"body":{"miscellaneous/variables.html":{}}}],["optional",{"_index":43,"title":{},"body":{"components/AppComponent.html":{},"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"pipes/KeysPipe.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["orientation",{"_index":63,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["orientationtype",{"_index":316,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"miscellaneous/enumerations.html":{}}}],["orientationtype.landscape",{"_index":383,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["orientationtype.portrait",{"_index":384,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["orin",{"_index":2599,"title":{},"body":{"miscellaneous/variables.html":{}}}],["os",{"_index":57,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"coverage.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["os\\b",{"_index":960,"title":{},"body":{"miscellaneous/variables.html":{}}}],["os\\s*[0",{"_index":1793,"title":{},"body":{"miscellaneous/variables.html":{}}}],["os_re",{"_index":610,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["os_version",{"_index":60,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["os_versions",{"_index":339,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["os_versions_re",{"_index":611,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["os_versions_re_map",{"_index":612,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["os_versions_re_map[key",{"_index":1753,"title":{},"body":{"miscellaneous/variables.html":{}}}],["others",{"_index":496,"title":{},"body":{"contributing.html":{}}}],["otherwise",{"_index":805,"title":{},"body":{"license.html":{}}}],["out",{"_index":202,"title":{},"body":{"modules/AppModule.html":{},"modules/AppServerModule.html":{},"contributing.html":{},"license.html":{},"overview.html":{}}}],["overmaxtablet",{"_index":2473,"title":{},"body":{"miscellaneous/variables.html":{}}}],["overview",{"_index":812,"title":{"overview.html":{}},"body":{"overview.html":{}}}],["p",{"_index":2446,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p1000|gt",{"_index":1802,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p1000|p300|s18|s6600|s9100)\\\\b",{"_index":2662,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p1003|gt",{"_index":1803,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p100|gt",{"_index":1822,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p1010|gt",{"_index":1804,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p1013|gt",{"_index":1845,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p1025|tab",{"_index":2458,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p107|sgh",{"_index":1370,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p1101|mtv",{"_index":2239,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p1325|tab",{"_index":2460,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p2000|p7040|p7000|c790",{"_index":1639,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p207|sgh",{"_index":1371,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p300|sgh",{"_index":1372,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p3100|gt",{"_index":1823,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p3105|gt",{"_index":1805,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p3108|gt",{"_index":1824,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p310|sgh",{"_index":1373,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p3110|gt",{"_index":1825,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p3113|gt",{"_index":1839,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p3113|sm",{"_index":1969,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p350",{"_index":2000,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p355m|sm",{"_index":2002,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p500|sgh",{"_index":1834,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p506|tab",{"_index":2441,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p5100",{"_index":1826,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p5110|gt",{"_index":1827,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p5113|gt",{"_index":1840,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p517|tab",{"_index":2445,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p5200|gt",{"_index":1882,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p520|sgh",{"_index":1374,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p5210x|sm",{"_index":1884,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p5210|gt",{"_index":1883,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p5220|gt",{"_index":1906,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p550",{"_index":1962,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p555m|sm",{"_index":2001,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p580|sm",{"_index":1998,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p585m|sm",{"_index":1886,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p585y|sm",{"_index":2010,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p600",{"_index":1893,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p6000|sm",{"_index":1902,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p600x|sm",{"_index":1930,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p601|sm",{"_index":1894,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p605v|sm",{"_index":1924,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p605|sm",{"_index":1895,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p607t|sm",{"_index":1956,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p615|sm",{"_index":1896,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p6200|gt",{"_index":1828,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p6201",{"_index":1846,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p6210",{"_index":1806,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p6800|gt",{"_index":1807,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p6810|gt",{"_index":1808,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p701|tab",{"_index":2448,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p703|tab",{"_index":2449,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p709|sch",{"_index":1581,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p7100|gt",{"_index":1809,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p715a|htc",{"_index":2045,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p721|tab",{"_index":2450,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p729|sm",{"_index":1582,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p7300|gt",{"_index":1810,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p7310|gt",{"_index":1811,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p731n",{"_index":2451,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p7320|gt",{"_index":1829,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p735|sgh",{"_index":1375,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p739|sch",{"_index":1879,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p741|tab",{"_index":2452,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p7500|gt",{"_index":1812,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p7501|gt",{"_index":1847,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p7503|sm",{"_index":1936,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p7510|sch",{"_index":1813,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p7511|gt",{"_index":1830,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p777",{"_index":1376,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p8110|gt",{"_index":1841,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p825|tab",{"_index":2453,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p8510|sgh",{"_index":1832,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p9000|sm",{"_index":1966,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p900x|sm",{"_index":1931,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p900|sm",{"_index":1897,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p901|sm",{"_index":1898,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p905v|sm",{"_index":1925,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p905|sm",{"_index":1910,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p905|tab",{"_index":2454,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p907a|sm",{"_index":1949,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p925|tab",{"_index":2455,"title":{},"body":{"miscellaneous/variables.html":{}}}],["p9|tecno",{"_index":2657,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pa762",{"_index":2786,"title":{},"body":{"miscellaneous/variables.html":{}}}],["package",{"_index":580,"title":{"dependencies.html":{},"properties.html":{}},"body":{"contributing.html":{},"index.html":{}}}],["pad",{"_index":2710,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pad10",{"_index":2699,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pad7|fx2",{"_index":2698,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pad\\b|\\bhm",{"_index":2840,"title":{},"body":{"miscellaneous/variables.html":{}}}],["padding",{"_index":139,"title":{},"body":{"components/AppComponent.html":{}}}],["page",{"_index":113,"title":{},"body":{"components/AppComponent.html":{},"contributing.html":{}}}],["palm",{"_index":927,"title":{},"body":{"miscellaneous/variables.html":{}}}],["palmsource|palm",{"_index":1608,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pantech",{"_index":929,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pantech.*p4100",{"_index":2275,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pantechtablet",{"_index":2274,"title":{},"body":{"miscellaneous/variables.html":{}}}],["parameters",{"_index":39,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"pipes/KeysPipe.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["particular",{"_index":792,"title":{},"body":{"license.html":{}}}],["pass",{"_index":544,"title":{},"body":{"contributing.html":{}}}],["paste",{"_index":120,"title":{},"body":{"components/AppComponent.html":{}}}],["pc",{"_index":2893,"title":{},"body":{"miscellaneous/variables.html":{}}}],["peax",{"_index":1647,"title":{},"body":{"miscellaneous/variables.html":{}}}],["peax|cink",{"_index":1646,"title":{},"body":{"miscellaneous/variables.html":{}}}],["permission",{"_index":749,"title":{},"body":{"license.html":{}}}],["permit",{"_index":773,"title":{},"body":{"license.html":{}}}],["person",{"_index":754,"title":{},"body":{"license.html":{}}}],["persons",{"_index":774,"title":{},"body":{"license.html":{}}}],["philipstablet",{"_index":2204,"title":{},"body":{"miscellaneous/variables.html":{}}}],["phone",{"_index":687,"title":{},"body":{"index.html":{},"miscellaneous/variables.html":{}}}],["phone\\b",{"_index":876,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pi1045|tab",{"_index":2459,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pipe",{"_index":411,"title":{"pipes/KeysPipe.html":{}},"body":{"pipes/KeysPipe.html":{},"coverage.html":{},"overview.html":{}}}],["pipes",{"_index":412,"title":{},"body":{"pipes/KeysPipe.html":{}}}],["pipes/keys.pipe",{"_index":210,"title":{},"body":{"modules/AppModule.html":{}}}],["pipetransform",{"_index":418,"title":{},"body":{"pipes/KeysPipe.html":{}}}],["pixel",{"_index":973,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pl1015|tab",{"_index":2457,"title":{},"body":{"miscellaneous/variables.html":{}}}],["planning",{"_index":525,"title":{},"body":{"contributing.html":{}}}],["platform_id",{"_index":256,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["platformid",{"_index":265,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["platinum",{"_index":2189,"title":{},"body":{"miscellaneous/variables.html":{}}}],["play(s|s)tation",{"_index":890,"title":{},"body":{"miscellaneous/variables.html":{}}}],["playbook|rim",{"_index":2040,"title":{},"body":{"miscellaneous/variables.html":{}}}],["playstation",{"_index":887,"title":{},"body":{"miscellaneous/variables.html":{}}}],["playstation.*(portable|vita",{"_index":2371,"title":{},"body":{"miscellaneous/variables.html":{}}}],["playstationtablet",{"_index":2370,"title":{},"body":{"miscellaneous/variables.html":{}}}],["please",{"_index":537,"title":{},"body":{"contributing.html":{},"index.html":{}}}],["plt7033|plt7033d|plt7035|plt7035d|plt7044k|plt7045k|plt7045kb|plt7071kg|plt7072|plt7223g|plt7225g",{"_index":2425,"title":{},"body":{"miscellaneous/variables.html":{}}}],["plt7777g|plt7810k|plt7849g|plt7851g|plt7852g|plt8015|plt8031|plt8034|plt8036|plt8080k|plt8082|plt8088",{"_index":2426,"title":{},"body":{"miscellaneous/variables.html":{}}}],["plt8223g|plt8234g|plt8235g|plt8816k|plt9011|plt9045k|plt9233g|plt9735|plt9760g|plt9770g)\\\\b",{"_index":2427,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pmp5297c|pmp5297c_quad|pmp812e|pmp812e3g|pmp812f|pmp810e|pmp880td|pmt3017|pmt3037|pmt3047|pmt3057|pmt7008",{"_index":2094,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pmp5597d|pmp5597|pmp7100d|per3464|per3274|per3574|per3884|per5274|per5474|pmp5097cpro|pmp5097|pmp7380d",{"_index":2093,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pmp5770d|pmp3970b|pmp3870c|pmp5580c|pmp5880d|pmp5780d|pmp5588c|pmp7280c|pmp7280c3g|pmp7280|pmp7880d",{"_index":2092,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pmt5887|pmt5001|pmt5002",{"_index":2095,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pnd530",{"_index":2240,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pnd531|mtv",{"_index":2238,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pocketbook",{"_index":2875,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pocketbooktablet",{"_index":2874,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pointer",{"_index":146,"title":{},"body":{"components/AppComponent.html":{}}}],["pointofviewtablet",{"_index":2439,"title":{},"body":{"miscellaneous/variables.html":{}}}],["pop|mint|epsilon|broadway|jump|hop|legend|new",{"_index":2823,"title":{},"body":{"miscellaneous/variables.html":{}}}],["portions",{"_index":783,"title":{},"body":{"license.html":{}}}],["portrait",{"_index":317,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"miscellaneous/enumerations.html":{}}}],["position",{"_index":131,"title":{},"body":{"components/AppComponent.html":{}}}],["positivotablet",{"_index":2283,"title":{},"body":{"miscellaneous/variables.html":{}}}],["powered",{"_index":98,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["pr",{"_index":534,"title":{},"body":{"contributing.html":{}}}],["pr945|tab",{"_index":2456,"title":{},"body":{"miscellaneous/variables.html":{}}}],["prestigiotablet",{"_index":2090,"title":{},"body":{"miscellaneous/variables.html":{}}}],["previousvalue",{"_index":362,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["primo",{"_index":2228,"title":{},"body":{"miscellaneous/variables.html":{}}}],["primus",{"_index":2608,"title":{},"body":{"miscellaneous/variables.html":{}}}],["private",{"_index":322,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"index.html":{}}}],["processing",{"_index":107,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["project",{"_index":477,"title":{},"body":{"contributing.html":{}}}],["projects/.../device",{"_index":640,"title":{},"body":{"miscellaneous/enumerations.html":{},"miscellaneous/variables.html":{}}}],["projects/.../server.ts",{"_index":642,"title":{},"body":{"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["projects/demo/e2e/src/app.po.ts",{"_index":222,"title":{},"body":{"classes/AppPage.html":{},"coverage.html":{}}}],["projects/demo/e2e/src/app.po.ts:13",{"_index":229,"title":{},"body":{"classes/AppPage.html":{}}}],["projects/demo/e2e/src/app.po.ts:17",{"_index":231,"title":{},"body":{"classes/AppPage.html":{}}}],["projects/demo/e2e/src/app.po.ts:5",{"_index":232,"title":{},"body":{"classes/AppPage.html":{}}}],["projects/demo/e2e/src/app.po.ts:9",{"_index":227,"title":{},"body":{"classes/AppPage.html":{}}}],["projects/demo/server.ts",{"_index":590,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["projects/demo/src/app/app.component.ts",{"_index":10,"title":{},"body":{"components/AppComponent.html":{},"coverage.html":{}}}],["projects/demo/src/app/app.component.ts:10",{"_index":64,"title":{},"body":{"components/AppComponent.html":{}}}],["projects/demo/src/app/app.component.ts:11",{"_index":56,"title":{},"body":{"components/AppComponent.html":{}}}],["projects/demo/src/app/app.component.ts:12",{"_index":67,"title":{},"body":{"components/AppComponent.html":{}}}],["projects/demo/src/app/app.component.ts:13",{"_index":65,"title":{},"body":{"components/AppComponent.html":{}}}],["projects/demo/src/app/app.component.ts:14",{"_index":38,"title":{},"body":{"components/AppComponent.html":{}}}],["projects/demo/src/app/app.component.ts:24",{"_index":53,"title":{},"body":{"components/AppComponent.html":{}}}],["projects/demo/src/app/app.component.ts:28",{"_index":69,"title":{},"body":{"components/AppComponent.html":{}}}],["projects/demo/src/app/app.component.ts:32",{"_index":71,"title":{},"body":{"components/AppComponent.html":{}}}],["projects/demo/src/app/app.component.ts:36",{"_index":73,"title":{},"body":{"components/AppComponent.html":{}}}],["projects/demo/src/app/app.component.ts:40",{"_index":46,"title":{},"body":{"components/AppComponent.html":{}}}],["projects/demo/src/app/app.component.ts:45",{"_index":54,"title":{},"body":{"components/AppComponent.html":{}}}],["projects/demo/src/app/app.module.ts",{"_index":203,"title":{},"body":{"modules/AppModule.html":{}}}],["projects/demo/src/app/pipes/keys.pipe.ts",{"_index":413,"title":{},"body":{"pipes/KeysPipe.html":{},"coverage.html":{}}}],["projects/demo/src/app/pipes/keys.pipe.ts:7",{"_index":417,"title":{},"body":{"pipes/KeysPipe.html":{}}}],["projects/demo/src/app/server.ts",{"_index":250,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"coverage.html":{}}}],["projects/demo/src/app/server.ts:13",{"_index":454,"title":{},"body":{"injectables/UniversalDeviceDetectorService.html":{}}}],["projects/ngx",{"_index":274,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"classes/ReTree.html":{},"coverage.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/variables.html":{}}}],["promise",{"_index":234,"title":{},"body":{"classes/AppPage.html":{}}}],["prop",{"_index":337,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["properties",{"_index":20,"title":{"properties.html":{}},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{},"properties.html":{}}}],["property",{"_index":127,"title":{},"body":{"components/AppComponent.html":{}}}],["props",{"_index":416,"title":{},"body":{"pipes/KeysPipe.html":{}}}],["props.indexof(key",{"_index":426,"title":{},"body":{"pipes/KeysPipe.html":{}}}],["props.length",{"_index":421,"title":{},"body":{"pipes/KeysPipe.html":{}}}],["propstoshow",{"_index":22,"title":{},"body":{"components/AppComponent.html":{}}}],["proscantablet",{"_index":2423,"title":{},"body":{"miscellaneous/variables.html":{}}}],["protab2",{"_index":2466,"title":{},"body":{"miscellaneous/variables.html":{}}}],["protab25xxl",{"_index":2469,"title":{},"body":{"miscellaneous/variables.html":{}}}],["protab25|tab",{"_index":2462,"title":{},"body":{"miscellaneous/variables.html":{}}}],["protab26",{"_index":2470,"title":{},"body":{"miscellaneous/variables.html":{}}}],["protab26xl|tab",{"_index":2465,"title":{},"body":{"miscellaneous/variables.html":{}}}],["protab26|tab",{"_index":2463,"title":{},"body":{"miscellaneous/variables.html":{}}}],["protab27|tab",{"_index":2464,"title":{},"body":{"miscellaneous/variables.html":{}}}],["protab30",{"_index":2468,"title":{},"body":{"miscellaneous/variables.html":{}}}],["protab[0",{"_index":2461,"title":{},"body":{"miscellaneous/variables.html":{}}}],["protractor",{"_index":233,"title":{},"body":{"classes/AppPage.html":{}}}],["provide",{"_index":271,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"contributing.html":{},"index.html":{}}}],["provided",{"_index":784,"title":{},"body":{"license.html":{}}}],["providedin",{"_index":321,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["providers",{"_index":219,"title":{},"body":{"modules/AppModule.html":{},"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["pro|flash|smoke|mini",{"_index":979,"title":{},"body":{"miscellaneous/variables.html":{}}}],["prs",{"_index":539,"title":{},"body":{"contributing.html":{}}}],["ps4",{"_index":885,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ptl21|pt003|p8010|adr910l|p6030|p6020|p9070|p4100|p9060|p5000",{"_index":1637,"title":{},"body":{"miscellaneous/variables.html":{}}}],["public",{"_index":278,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["publish",{"_index":767,"title":{},"body":{"license.html":{}}}],["pull",{"_index":487,"title":{},"body":{"contributing.html":{}}}],["purpose",{"_index":793,"title":{},"body":{"license.html":{}}}],["pyleaudiotablet",{"_index":2381,"title":{},"body":{"miscellaneous/variables.html":{}}}],["q105|sgh",{"_index":1377,"title":{},"body":{"miscellaneous/variables.html":{}}}],["q3|genius",{"_index":2399,"title":{},"body":{"miscellaneous/variables.html":{}}}],["q4|genius",{"_index":2401,"title":{},"body":{"miscellaneous/variables.html":{}}}],["qc|t",{"_index":2648,"title":{},"body":{"miscellaneous/variables.html":{}}}],["qpad",{"_index":2800,"title":{},"body":{"miscellaneous/variables.html":{}}}],["qtaqz3|qtair7|qtaqtz3|qtasun1|qtasun2|qtaxia1",{"_index":2734,"title":{},"body":{"miscellaneous/variables.html":{}}}],["questions",{"_index":530,"title":{},"body":{"contributing.html":{}}}],["r100|sch",{"_index":1217,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r104|tab",{"_index":2564,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r106|tab",{"_index":2538,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r210|sgh",{"_index":1378,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r220|sgh",{"_index":1379,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r225|sgh",{"_index":1380,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r300|sch",{"_index":1218,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r351|sch",{"_index":1219,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r400|sch",{"_index":1220,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r410",{"_index":1221,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r70|tab",{"_index":2536,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r721|tab",{"_index":2533,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r73|tab",{"_index":2546,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r74|tab",{"_index":2547,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r75|tab",{"_index":2549,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r76.1|tab",{"_index":2550,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r76.2|tab",{"_index":2537,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r83.2|tab",{"_index":2539,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r83.3|tab",{"_index":2565,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r83|tab",{"_index":2555,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r93|tab",{"_index":2548,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r973|tab",{"_index":2557,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r974.2",{"_index":2563,"title":{},"body":{"miscellaneous/variables.html":{}}}],["r974|tab",{"_index":2556,"title":{},"body":{"miscellaneous/variables.html":{}}}],["re",{"_index":374,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["read",{"_index":509,"title":{},"body":{"contributing.html":{}}}],["readman",{"_index":2521,"title":{},"body":{"miscellaneous/variables.html":{}}}],["really",{"_index":499,"title":{},"body":{"contributing.html":{}}}],["rebel",{"_index":2675,"title":{},"body":{"miscellaneous/variables.html":{}}}],["reduce((previousvalue",{"_index":359,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["regarding",{"_index":105,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["regex",{"_index":435,"title":{},"body":{"classes/ReTree.html":{},"index.html":{}}}],["regex.and.every((item",{"_index":445,"title":{},"body":{"classes/ReTree.html":{}}}],["regex.exec(str",{"_index":450,"title":{},"body":{"classes/ReTree.html":{}}}],["regex.not",{"_index":449,"title":{},"body":{"classes/ReTree.html":{}}}],["regex.or.some((item",{"_index":448,"title":{},"body":{"classes/ReTree.html":{}}}],["regex.reduce((res",{"_index":452,"title":{},"body":{"classes/ReTree.html":{}}}],["regex.test(str",{"_index":443,"title":{},"body":{"classes/ReTree.html":{}}}],["regexp",{"_index":442,"title":{},"body":{"classes/ReTree.html":{}}}],["regexp(`\\\\b(101g9|80g9|a101it)\\\\b|qilive",{"_index":2181,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`\\\\b(argus",{"_index":2592,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`\\\\b(pem63|plt1023g|plt1041|plt1044|plt1044g|plt1091|plt4311|plt4311pl|plt4315|plt7030",{"_index":2424,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`\\\\b(v975i|vi30|vx530|v701|vi60|v701s|vi50|v801s|v719|vx610w|vx610w|v819i|vi10|vx580w|vi10",{"_index":2779,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`\\\\blg\\\\b;|lg",{"_index":1596,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`\\\\bsamsung\\\\b|sm",{"_index":991,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`^.*padfone((?!mobile).)*$|transformer|tf101|tf101g|tf300t|tf300tg|tf300tl|tf700t|tf700kl",{"_index":2028,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`android",{"_index":2056,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`android.*(bq)?.*(elcano|curie|edison|maxwell|kepler|pascal|tesla|hypatia|platon|newton",{"_index":2247,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`android.*\\\\b(tab210|tab211|tab224|tab250|tab260|tab264|tab310|tab360|tab364|tab410|tab411",{"_index":2126,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`android.*\\\\b97d\\\\b|tablet(?!.*pc)|bntv250a|mid",{"_index":2888,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`freetab",{"_index":2568,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`goclever",{"_index":2523,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`kidspad",{"_index":2701,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`kindle|silk.*accelerated|android.*\\\\b(kfot|kftt|kfjwi|kfjwa|kfote|kfsowi|kfthwi|kfthwa|kfapwi",{"_index":2013,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`kite",{"_index":1641,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`lenovo",{"_index":2097,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`m9701|m9000|m9100|m806|m1052|m806|t703|mid701|mid713|mid710|mid727|mid760|mid830|mid728|mid933",{"_index":2213,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`mediapad|mediapad",{"_index":2251,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`mid1042|mid1045|mid1125|mid1126|mid7012|mid7014|mid7015|mid7034|mid7035|mid7036|mid7042|mid7048",{"_index":2210,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`mitab",{"_index":2821,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`motorola|droidx|droid",{"_index":981,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`mp11",{"_index":2807,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`msi",{"_index":2217,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`navipad|tb",{"_index":2294,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`nettab|nt",{"_index":2741,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`ov",{"_index":2474,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`pantech|im",{"_index":1610,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`pmp3170b|pmp3270b|pmp3470b|pmp7170b|pmp3370b|pmp3570c|pmp5870c|pmp3670b|pmp5570c",{"_index":2091,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`samsung.*tablet|galaxy.*tab|sc",{"_index":1800,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`sony.*tablet|xperia",{"_index":2197,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`t98",{"_index":2754,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`tab",{"_index":2440,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`tablet",{"_index":2664,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`tapatalk|pda;|sagem|\\\\bmmp\\\\b|pocket|\\\\bpsp\\\\b|symbian|smartphone|smartfon|treo|up.browser",{"_index":1686,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`tblt10q|tblt10i|tbl",{"_index":2859,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(`tpc7102|tpc7103|tpc7105|tpc7106|tpc7107|tpc7201|tpc7203|tpc7205|tpc7210|tpc7708|tpc7709",{"_index":2431,"title":{},"body":{"miscellaneous/variables.html":{}}}],["regexp(regex",{"_index":440,"title":{},"body":{"classes/ReTree.html":{}}}],["regular",{"_index":650,"title":{},"body":{"index.html":{}}}],["relative",{"_index":132,"title":{},"body":{"components/AppComponent.html":{}}}],["relevant",{"_index":547,"title":{},"body":{"contributing.html":{}}}],["repo",{"_index":495,"title":{},"body":{"contributing.html":{}}}],["reporting",{"_index":508,"title":{},"body":{"contributing.html":{}}}],["repository",{"_index":822,"title":{},"body":{"properties.html":{}}}],["reproduced",{"_index":511,"title":{},"body":{"contributing.html":{}}}],["request",{"_index":257,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"contributing.html":{},"index.html":{}}}],["requests",{"_index":488,"title":{},"body":{"contributing.html":{}}}],["required",{"_index":564,"title":{},"body":{"contributing.html":{}}}],["res",{"_index":376,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"classes/ReTree.html":{}}}],["res[1",{"_index":378,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["reset",{"_index":123,"title":{},"body":{"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppServerModule.html":{},"overview.html":{}}}],["resetdeviceinfo",{"_index":29,"title":{},"body":{"components/AppComponent.html":{}}}],["restriction",{"_index":761,"title":{},"body":{"license.html":{}}}],["results",{"_index":191,"title":{},"body":{"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"pipes/KeysPipe.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{},"contributing.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"properties.html":{},"miscellaneous/variables.html":{}}}],["retree",{"_index":277,"title":{"classes/ReTree.html":{}},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{},"coverage.html":{},"index.html":{}}}],["return",{"_index":90,"title":{},"body":{"components/AppComponent.html":{},"classes/AppPage.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"pipes/KeysPipe.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{},"miscellaneous/variables.html":{}}}],["returns",{"_index":51,"title":{},"body":{"components/AppComponent.html":{},"classes/AppPage.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"pipes/KeysPipe.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{},"miscellaneous/functions.html":{},"index.html":{}}}],["revolution|finity",{"_index":2682,"title":{},"body":{"miscellaneous/variables.html":{}}}],["right",{"_index":149,"title":{},"body":{"components/AppComponent.html":{}}}],["rights",{"_index":764,"title":{},"body":{"license.html":{}}}],["rm",{"_index":2629,"title":{},"body":{"miscellaneous/variables.html":{}}}],["rockchiptablet",{"_index":2241,"title":{},"body":{"miscellaneous/variables.html":{}}}],["root",{"_index":14,"title":{},"body":{"components/AppComponent.html":{},"classes/AppPage.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["rossmoortablet",{"_index":2628,"title":{},"body":{"miscellaneous/variables.html":{}}}],["rotate(45deg",{"_index":152,"title":{},"body":{"components/AppComponent.html":{}}}],["rt10a",{"_index":2886,"title":{},"body":{"miscellaneous/variables.html":{}}}],["run",{"_index":593,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{},"index.html":{}}}],["running",{"_index":691,"title":{},"body":{"index.html":{}}}],["rv:48.0",{"_index":1680,"title":{},"body":{"miscellaneous/variables.html":{}}}],["rv:49.0|mobile",{"_index":1678,"title":{},"body":{"miscellaneous/variables.html":{}}}],["rxjs",{"_index":632,"title":{},"body":{"dependencies.html":{}}}],["s1",{"_index":2405,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s105|sgh",{"_index":1381,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s2|genius",{"_index":2398,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s307|sgh",{"_index":1382,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s3110|gt",{"_index":1126,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s3310|gt",{"_index":1127,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s3350|gt",{"_index":1128,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s3353|gt",{"_index":1129,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s3370|gt",{"_index":1130,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s3650|gt",{"_index":1131,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s3653|gt",{"_index":1132,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s3770",{"_index":1133,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s3850|gt",{"_index":1134,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5210|gt",{"_index":1135,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5220|gt",{"_index":1136,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5229|gt",{"_index":1137,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5230|gt",{"_index":997,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5233|gt",{"_index":1138,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5250|gt",{"_index":1139,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5253|gt",{"_index":1140,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5260|gt",{"_index":1141,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5263|gt",{"_index":1142,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5270",{"_index":1143,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5300|gt",{"_index":1144,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5300|s602|s603|s5100|s5110|s601|s7100a|p3000f|p3000s|p101|p200s|p1000m|p200m|p9100|p1000s|s6600b|s908",{"_index":2661,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5301|gt",{"_index":1550,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5310|gt",{"_index":1544,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5312",{"_index":1543,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5330|gt",{"_index":1145,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5350|gt",{"_index":1146,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5360b|gt",{"_index":1538,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5360|gt",{"_index":1147,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5363|gt",{"_index":1148,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5369|gt",{"_index":1149,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5380d|gt",{"_index":1151,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5380|gt",{"_index":1150,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5560|gt",{"_index":1152,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5570|gt",{"_index":1153,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5600",{"_index":1154,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5603|gt",{"_index":1155,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5610|gt",{"_index":1156,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5620|gt",{"_index":1157,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5660|gt",{"_index":1158,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5670|gt",{"_index":1159,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5690|gt",{"_index":1160,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5750|gt",{"_index":1161,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5780|gt",{"_index":1162,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5830|gt",{"_index":1163,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s5839|gt",{"_index":1164,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s6102",{"_index":1165,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s6310|gt",{"_index":1542,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s6312|gt",{"_index":1541,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s6500|gt",{"_index":1166,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s6790n|sm",{"_index":1547,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s6802|gt",{"_index":1540,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s7",{"_index":2263,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s7070|gt",{"_index":1167,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s7200|gt",{"_index":1168,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s7220|gt",{"_index":1169,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s7230|gt",{"_index":1170,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s7233|gt",{"_index":1171,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s7250|gt",{"_index":1172,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s7392|gt",{"_index":1554,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s73|tab",{"_index":2545,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s7500|gt",{"_index":1173,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s7530e|gt",{"_index":1559,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s7530|gt",{"_index":1174,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s7550|gt",{"_index":1175,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s7560",{"_index":1555,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s7562",{"_index":1176,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s7582|gt",{"_index":1558,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s7710|gt",{"_index":1177,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s7|s7",{"_index":2255,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s8000|gt",{"_index":1178,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s8003|gt",{"_index":1179,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s8500|gt",{"_index":1180,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s8530|gt",{"_index":1181,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s8600|sch",{"_index":1182,"title":{},"body":{"miscellaneous/variables.html":{}}}],["safari",{"_index":839,"title":{},"body":{"miscellaneous/variables.html":{}}}],["same",{"_index":562,"title":{},"body":{"contributing.html":{}}}],["samsung",{"_index":852,"title":{},"body":{"miscellaneous/variables.html":{}}}],["samsungtablet",{"_index":1799,"title":{},"body":{"miscellaneous/variables.html":{}}}],["savein",{"_index":673,"title":{},"body":{"index.html":{}}}],["sch",{"_index":1188,"title":{},"body":{"miscellaneous/variables.html":{}}}],["se",{"_index":944,"title":{},"body":{"miscellaneous/variables.html":{}}}],["section",{"_index":572,"title":{},"body":{"contributing.html":{}}}],["see",{"_index":116,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["selector",{"_index":12,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["selenium",{"_index":236,"title":{},"body":{"classes/AppPage.html":{}}}],["sell",{"_index":771,"title":{},"body":{"license.html":{}}}],["send",{"_index":486,"title":{},"body":{"contributing.html":{}}}],["sending",{"_index":533,"title":{},"body":{"contributing.html":{}}}],["server",{"_index":252,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"dependencies.html":{},"miscellaneous/variables.html":{}}}],["serverapp",{"_index":218,"title":{},"body":{"modules/AppModule.html":{}}}],["servermodule",{"_index":251,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["servethe",{"_index":723,"title":{},"body":{"index.html":{}}}],["service",{"_index":334,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"index.html":{}}}],["setdeviceinfo",{"_index":279,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["setdeviceinfo(ua",{"_index":295,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["sets",{"_index":332,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["sgh",{"_index":1255,"title":{},"body":{"miscellaneous/variables.html":{}}}],["sgp612|sgp712",{"_index":2203,"title":{},"body":{"miscellaneous/variables.html":{}}}],["sgpt111|sgpt112|sgpt113|sgpt131|sgpt132|sgpt133|sgpt211|sgpt212|sgpt213|sgp311|sgp312|sgp321|ebrd1101",{"_index":2201,"title":{},"body":{"miscellaneous/variables.html":{}}}],["shall",{"_index":780,"title":{},"body":{"license.html":{}}}],["share",{"_index":494,"title":{},"body":{"contributing.html":{}}}],["shine",{"_index":2644,"title":{},"body":{"miscellaneous/variables.html":{}}}],["shine|fine7",{"_index":2417,"title":{},"body":{"miscellaneous/variables.html":{}}}],["shv",{"_index":1857,"title":{},"body":{"miscellaneous/variables.html":{}}}],["shw",{"_index":1870,"title":{},"body":{"miscellaneous/variables.html":{}}}],["shy",{"_index":528,"title":{},"body":{"contributing.html":{}}}],["simvalley",{"_index":933,"title":{},"body":{"miscellaneous/variables.html":{}}}],["size",{"_index":167,"title":{},"body":{"components/AppComponent.html":{}}}],["skktablet",{"_index":2653,"title":{},"body":{"miscellaneous/variables.html":{}}}],["skypad|phoenix|cyclops",{"_index":2654,"title":{},"body":{"miscellaneous/variables.html":{}}}],["sl101|\\\\bk00f\\\\b|\\\\bk00c\\\\b|\\\\bk00e\\\\b|\\\\bk00l\\\\b|tx201la|me176c|me102a|\\\\bm80ta\\\\b|me372cl",{"_index":2031,"title":{},"body":{"miscellaneous/variables.html":{}}}],["slate",{"_index":2019,"title":{},"body":{"miscellaneous/variables.html":{}}}],["slatebook",{"_index":2026,"title":{},"body":{"miscellaneous/variables.html":{}}}],["slider",{"_index":2030,"title":{},"body":{"miscellaneous/variables.html":{}}}],["slim",{"_index":1650,"title":{},"body":{"miscellaneous/variables.html":{}}}],["slim|cink",{"_index":1649,"title":{},"body":{"miscellaneous/variables.html":{}}}],["slim|m2",{"_index":2265,"title":{},"body":{"miscellaneous/variables.html":{}}}],["slim|sublim",{"_index":1653,"title":{},"body":{"miscellaneous/variables.html":{}}}],["sm",{"_index":1567,"title":{},"body":{"miscellaneous/variables.html":{}}}],["small",{"_index":567,"title":{},"body":{"contributing.html":{}}}],["smart",{"_index":2625,"title":{},"body":{"miscellaneous/variables.html":{}}}],["smarttab",{"_index":2621,"title":{},"body":{"miscellaneous/variables.html":{}}}],["smart|nexo",{"_index":2855,"title":{},"body":{"miscellaneous/variables.html":{}}}],["smittablet",{"_index":2234,"title":{},"body":{"miscellaneous/variables.html":{}}}],["software",{"_index":757,"title":{},"body":{"license.html":{}}}],["sony",{"_index":921,"title":{},"body":{"miscellaneous/variables.html":{}}}],["sonyst|sonylt|sonyericsson|sonyericssonlt15iv|lt18i|e10i|lt28h|lt26w|sonyericssonmt27i|c5303|c6902|c6903|c6906|c6943|d2533",{"_index":1604,"title":{},"body":{"miscellaneous/variables.html":{}}}],["sonytablet",{"_index":2196,"title":{},"body":{"miscellaneous/variables.html":{}}}],["source",{"_index":4,"title":{},"body":{"components/AppComponent.html":{},"modules/AppModule.html":{},"classes/AppPage.html":{},"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"pipes/KeysPipe.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["sp10egp|m",{"_index":2832,"title":{},"body":{"miscellaneous/variables.html":{}}}],["sp10eg|m",{"_index":2831,"title":{},"body":{"miscellaneous/variables.html":{}}}],["sp10hxah|m",{"_index":2833,"title":{},"body":{"miscellaneous/variables.html":{}}}],["sp10hxbh|m",{"_index":2835,"title":{},"body":{"miscellaneous/variables.html":{}}}],["sp7hxah|m",{"_index":2834,"title":{},"body":{"miscellaneous/variables.html":{}}}],["sp8hxah|m",{"_index":2836,"title":{},"body":{"miscellaneous/variables.html":{}}}],["sp8mxa",{"_index":2837,"title":{},"body":{"miscellaneous/variables.html":{}}}],["space|evo|xpress|noon)|\\bxelio\\b|xelio10pro|xelio7phonetab|xelio10extreme|xeliopt2|neo_quad10",{"_index":2737,"title":{},"body":{"miscellaneous/variables.html":{}}}],["spark",{"_index":2193,"title":{},"body":{"miscellaneous/variables.html":{}}}],["sph",{"_index":1465,"title":{},"body":{"miscellaneous/variables.html":{}}}],["spirit",{"_index":2665,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ssr",{"_index":651,"title":{},"body":{"index.html":{}}}],["st10416",{"_index":2373,"title":{},"body":{"miscellaneous/variables.html":{}}}],["started",{"_index":472,"title":{"contributing.html":{},"index.html":{},"license.html":{}},"body":{"index.html":{}}}],["statements",{"_index":588,"title":{},"body":{"coverage.html":{}}}],["stating",{"_index":557,"title":{},"body":{"contributing.html":{}}}],["steelcore|newbase|basecore|baseone|exellen|quattor|edutab|solution|action|basictab|teddytab",{"_index":2475,"title":{},"body":{"miscellaneous/variables.html":{}}}],["storextablet",{"_index":2616,"title":{},"body":{"miscellaneous/variables.html":{}}}],["str",{"_index":437,"title":{},"body":{"classes/ReTree.html":{}}}],["streak",{"_index":2123,"title":{},"body":{"miscellaneous/variables.html":{}}}],["streak|aero|venue|venue",{"_index":978,"title":{},"body":{"miscellaneous/variables.html":{}}}],["string",{"_index":270,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"pipes/KeysPipe.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["styles",{"_index":6,"title":{},"body":{"components/AppComponent.html":{}}}],["styleurls",{"_index":15,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["style|fine9",{"_index":2419,"title":{},"body":{"miscellaneous/variables.html":{}}}],["style|idea|zaa|hitz",{"_index":1655,"title":{},"body":{"miscellaneous/variables.html":{}}}],["subject",{"_index":776,"title":{},"body":{"license.html":{}}}],["sublicense",{"_index":769,"title":{},"body":{"license.html":{}}}],["substantial",{"_index":782,"title":{},"body":{"license.html":{}}}],["summary",{"_index":568,"title":{},"body":{"contributing.html":{}}}],["sunset|goa(?!nna)|lenny|barry|iggy|ozzy|cink",{"_index":1644,"title":{},"body":{"miscellaneous/variables.html":{}}}],["super(platformid",{"_index":267,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["super.setdeviceinfo((request.headers['user",{"_index":269,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["support",{"_index":809,"title":{},"body":{"modules.html":{}}}],["supreme|impresspeed|izzycomm|essential",{"_index":2176,"title":{},"body":{"miscellaneous/variables.html":{}}}],["sure",{"_index":506,"title":{},"body":{"contributing.html":{},"index.html":{}}}],["surfacetablet",{"_index":2015,"title":{},"body":{"miscellaneous/variables.html":{}}}],["svg",{"_index":810,"title":{},"body":{"modules.html":{}}}],["sync",{"_index":2490,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s|galaxy.*nexus|android.*nexus.*mobile|nexus",{"_index":975,"title":{},"body":{"miscellaneous/variables.html":{}}}],["s|so",{"_index":2199,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t",{"_index":2884,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t1",{"_index":2388,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t100k",{"_index":1620,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t109|sgh",{"_index":1383,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t110",{"_index":1905,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t111|sm",{"_index":1911,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t113nu|sm",{"_index":2003,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t113|sm",{"_index":1975,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t116bu|sm",{"_index":1961,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t116nq|sm",{"_index":1960,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t119|sgh",{"_index":1384,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t1200|mtv",{"_index":2237,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t139|sgh",{"_index":1385,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t209|sgh",{"_index":1386,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t2105|sm",{"_index":1912,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t210r|sm",{"_index":1891,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t210x|sm",{"_index":1932,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t210|sm",{"_index":1890,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t211|sm",{"_index":1892,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t217a|sm",{"_index":1900,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t217s|sm",{"_index":1901,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t217t|sm",{"_index":1957,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t217|sm",{"_index":1899,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t219",{"_index":1387,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t229|sgh",{"_index":1388,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t230nu|sm",{"_index":1921,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t230x|sm",{"_index":1934,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t230|sm",{"_index":1933,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t237|sm",{"_index":1954,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t239|sgh",{"_index":1389,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t249|sgh",{"_index":1390,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t2558|gt",{"_index":1583,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t259|sgh",{"_index":1391,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t280|sm",{"_index":1994,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t285|sm",{"_index":2006,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t290|shw",{"_index":1862,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t3",{"_index":2253,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t300|sch",{"_index":1222,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t309|sgh",{"_index":1392,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t3100|sgh",{"_index":1903,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t310x|sm",{"_index":1889,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t310|sm",{"_index":1888,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t311|sm",{"_index":1887,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t315|sm",{"_index":1913,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t319|sgh",{"_index":1393,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t320x|sm",{"_index":1915,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t320|sm",{"_index":1914,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t321",{"_index":1916,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t325|gt",{"_index":1935,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t329|sgh",{"_index":1394,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t330",{"_index":1939,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t330nu|sm",{"_index":1922,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t331|sm",{"_index":1944,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t335|sm",{"_index":1976,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t337a|sm",{"_index":1950,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t337t|sm",{"_index":1958,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t337v|sm",{"_index":1926,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t339|sgh",{"_index":1395,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t349|sgh",{"_index":1396,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t350|sm",{"_index":1963,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t355y?|sm",{"_index":1993,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t357t|sm",{"_index":1983,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t359|sgh",{"_index":1397,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t360|sm",{"_index":1973,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t369",{"_index":1398,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t377|sm",{"_index":1981,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t379|sgh",{"_index":1399,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t385m|sm",{"_index":1885,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t409|sgh",{"_index":1400,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t429|sgh",{"_index":1401,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t439|sgh",{"_index":1402,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t459|sgh",{"_index":1403,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t469|sgh",{"_index":1404,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t479|sgh",{"_index":1405,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t499|sgh",{"_index":1406,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t500|sm",{"_index":1938,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t509|sgh",{"_index":1407,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t510|sm",{"_index":1917,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t519|sgh",{"_index":1408,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t520|sm",{"_index":1918,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t525|sm",{"_index":1919,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t530nu|sm",{"_index":1920,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t530|sm",{"_index":1940,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t531|sm",{"_index":1937,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t533",{"_index":1974,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t535|sm",{"_index":1943,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t537a",{"_index":1951,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t537v",{"_index":1927,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t537|sm",{"_index":1947,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t539",{"_index":1409,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t550|sm",{"_index":1964,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t555|sm",{"_index":1984,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t559|sgh",{"_index":1410,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t560|sm",{"_index":1978,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t561|sm",{"_index":1985,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t567|sm",{"_index":1982,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t580|sm",{"_index":1991,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t585|sm",{"_index":2005,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t587|sm",{"_index":1999,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t589|sgh",{"_index":1411,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t590|sm",{"_index":1992,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t609|sgh",{"_index":1412,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t619|sgh",{"_index":1413,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t629|sgh",{"_index":1414,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t639|sgh",{"_index":1415,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t659|sgh",{"_index":1416,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t669|sgh",{"_index":1417,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t670|sm",{"_index":1979,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t677|sm",{"_index":1980,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t679|sgh",{"_index":1418,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t700|sm",{"_index":1946,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t705c|sm",{"_index":1942,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t705y|sm",{"_index":1967,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t705|sm",{"_index":1941,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t707a|sm",{"_index":1952,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t707v|sm",{"_index":1928,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t709|sgh",{"_index":1419,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t710|sm",{"_index":1970,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t713",{"_index":1986,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t715|sm",{"_index":1977,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t719",{"_index":1420,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t719|sm",{"_index":1987,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t72",{"_index":2554,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t725|sm",{"_index":1988,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t729|sgh",{"_index":1421,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t739|sgh",{"_index":1422,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t746|sgh",{"_index":1423,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t749|sgh",{"_index":1424,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t759|sgh",{"_index":1425,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t769|sgh",{"_index":1426,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t76|tab",{"_index":2535,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t779|sch",{"_index":1835,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t800|sm",{"_index":1945,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t805|gt",{"_index":1968,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t807a|sm",{"_index":1953,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t807p|sm",{"_index":1955,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t807t|sm",{"_index":1959,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t807v|sm",{"_index":1929,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t807|sm",{"_index":1948,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t809|sgh",{"_index":1427,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t810|sm",{"_index":1971,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t813|sm",{"_index":1989,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t815y|sm",{"_index":2004,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t815|sm",{"_index":1972,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t817a|sm",{"_index":1995,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t819|sgh",{"_index":1428,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t819|sm",{"_index":1990,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t820|sm",{"_index":1996,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t825|sm",{"_index":2007,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t835|sm",{"_index":2009,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t839|sgh",{"_index":1429,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t849|sgh",{"_index":1819,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t859|sgh",{"_index":1820,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t865|sm",{"_index":1861,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t869|sph",{"_index":1821,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t9000|sm",{"_index":1965,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t900|xe500t1c|sm",{"_index":1923,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t919|sgh",{"_index":1430,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t929",{"_index":1431,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t939|sgh",{"_index":1432,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t959|sgh",{"_index":1433,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t989|sgh",{"_index":1434,"title":{},"body":{"miscellaneous/variables.html":{}}}],["t999l|gt",{"_index":1537,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab",{"_index":2396,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab07",{"_index":2132,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab08",{"_index":2144,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab10",{"_index":2155,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab2",{"_index":2627,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab2)\\b",{"_index":2413,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab3|smart",{"_index":2412,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab420|tab424|tab450|tab460|tab461|tab464|tab465|tab467|tab468|tab07",{"_index":2127,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab\\b",{"_index":2803,"title":{},"body":{"miscellaneous/variables.html":{}}}],["table",{"_index":243,"title":{},"body":{"classes/AppPage.html":{},"coverage.html":{}}}],["tablesort(document.getelementbyid('coverage",{"_index":617,"title":{},"body":{"coverage.html":{}}}],["tablet",{"_index":125,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"miscellaneous/enumerations.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["tablets_re",{"_index":613,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["tablet|elitebook.*touch|hp",{"_index":2023,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tablet|sony",{"_index":2198,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tablet|yt3",{"_index":2101,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab|\\\\bm6pro\\\\b|ct1020w|arc",{"_index":2895,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab|a7goclever|m1042|m7841|m742|r1042bk|r1041|tab",{"_index":2524,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab|c820|c720|\\bct",{"_index":2818,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab|concorde",{"_index":2520,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab|ct1",{"_index":2817,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab|ct2",{"_index":2816,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab|ct3",{"_index":2815,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab|ct9",{"_index":2814,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab|endeavour",{"_index":2892,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab|idea(tab|pad",{"_index":2098,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tab|tab1004",{"_index":2166,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tb",{"_index":2330,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tb07sta|tb10sta|tb07fta|tb10fta",{"_index":2284,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tba",{"_index":2865,"title":{},"body":{"miscellaneous/variables.html":{}}}],["teclasttablet",{"_index":2753,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tecno",{"_index":2656,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tecnotablet",{"_index":2655,"title":{},"body":{"miscellaneous/variables.html":{}}}],["telepad795|megapad",{"_index":2720,"title":{},"body":{"miscellaneous/variables.html":{}}}],["telstratablet",{"_index":2883,"title":{},"body":{"miscellaneous/variables.html":{}}}],["template",{"_index":5,"title":{},"body":{"components/AppComponent.html":{}}}],["templateurl",{"_index":17,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["tesla",{"_index":912,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tesla\\/([0",{"_index":952,"title":{},"body":{"miscellaneous/variables.html":{}}}],["test",{"_index":119,"title":{},"body":{"components/AppComponent.html":{},"classes/ReTree.html":{}}}],["test(str",{"_index":438,"title":{},"body":{"classes/ReTree.html":{}}}],["tests",{"_index":490,"title":{},"body":{"contributing.html":{},"index.html":{}}}],["testto",{"_index":715,"title":{},"body":{"index.html":{}}}],["texettablet",{"_index":2293,"title":{},"body":{"miscellaneous/variables.html":{}}}],["text",{"_index":161,"title":{},"body":{"components/AppComponent.html":{}}}],["text')).gettext",{"_index":241,"title":{},"body":{"classes/AppPage.html":{}}}],["tf701t|tf810c|me171|me301t|me302c|me371mg|me370t|me372mg|me172v|me173x|me400c",{"_index":2029,"title":{},"body":{"miscellaneous/variables.html":{}}}],["thank",{"_index":575,"title":{},"body":{"contributing.html":{}}}],["there's",{"_index":538,"title":{},"body":{"contributing.html":{}}}],["thing",{"_index":563,"title":{},"body":{"contributing.html":{}}}],["this.applydevice",{"_index":86,"title":{},"body":{"components/AppComponent.html":{}}}],["this.browser",{"_index":372,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["this.browser_version",{"_index":370,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["this.device",{"_index":395,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["this.deviceinfo",{"_index":87,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["this.deviceservice.getdeviceinfo",{"_index":88,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["this.deviceservice.isdesktop",{"_index":93,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["this.deviceservice.ismobile",{"_index":91,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["this.deviceservice.istablet",{"_index":92,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["this.deviceservice.setdeviceinfo(useragent",{"_index":94,"title":{},"body":{"components/AppComponent.html":{}}}],["this.devicetype",{"_index":386,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["this.epicfunction",{"_index":679,"title":{},"body":{"index.html":{}}}],["this.exec(str",{"_index":453,"title":{},"body":{"classes/ReTree.html":{}}}],["this.getdeviceinfo",{"_index":95,"title":{},"body":{"components/AppComponent.html":{}}}],["this.isdesktop(this.useragent",{"_index":391,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["this.ismobile(this.useragent",{"_index":389,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["this.ismobile(useragent",{"_index":408,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["this.istablet",{"_index":387,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["this.istablet(useragent",{"_index":398,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["this.orientation",{"_index":380,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["this.os",{"_index":394,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["this.os_version",{"_index":396,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["this.retree.exec(ua",{"_index":377,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["this.retree.test(this.useragent",{"_index":347,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["this.retree.test(ua",{"_index":353,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["this.retree.test(useragent",{"_index":401,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["this.setdeviceinfo(this.useragent",{"_index":327,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["this.test(str",{"_index":446,"title":{},"body":{"classes/ReTree.html":{}}}],["this.ua",{"_index":50,"title":{},"body":{"components/AppComponent.html":{}}}],["this.useragent",{"_index":287,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["this[mapping.prop",{"_index":341,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["this[mapping.prop][currentvalue",{"_index":368,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["threads",{"_index":548,"title":{},"body":{"contributing.html":{}}}],["through",{"_index":520,"title":{},"body":{"contributing.html":{}}}],["time",{"_index":579,"title":{},"body":{"contributing.html":{}}}],["tips",{"_index":504,"title":{},"body":{"contributing.html":{}}}],["titanium(hd",{"_index":2185,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tm",{"_index":2305,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tolino",{"_index":2642,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tolinotablet",{"_index":2641,"title":{},"body":{"miscellaneous/variables.html":{}}}],["took",{"_index":578,"title":{},"body":{"contributing.html":{}}}],["top",{"_index":140,"title":{},"body":{"components/AppComponent.html":{}}}],["tort",{"_index":804,"title":{},"body":{"license.html":{}}}],["toshibatablet",{"_index":2071,"title":{},"body":{"miscellaneous/variables.html":{}}}],["touchpad.*[78910]|\\btouchtab\\b",{"_index":2279,"title":{},"body":{"miscellaneous/variables.html":{}}}],["touch|\\bk080\\b|\\bvox\\b",{"_index":2289,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tpc",{"_index":2785,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tpc10111|tpc10203|tpc10205|tpc10503",{"_index":2434,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tpc7712|tpc7110|tpc8101|tpc8103|tpc8105|tpc8106|tpc8203|tpc8205|tpc8503|tpc9106|tpc9701|tpc97101|tpc97103",{"_index":2432,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tpc97105|tpc97106|tpc97111|tpc97113|tpc97203|tpc97603|tpc97809|tpc97205|tpc10101|tpc10103|tpc10106",{"_index":2433,"title":{},"body":{"miscellaneous/variables.html":{}}}],["transform",{"_index":151,"title":{},"body":{"components/AppComponent.html":{},"pipes/KeysPipe.html":{}}}],["transform(value",{"_index":415,"title":{},"body":{"pipes/KeysPipe.html":{}}}],["tree",{"_index":8,"title":{},"body":{"components/AppComponent.html":{}}}],["trekstortablet",{"_index":2372,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tried",{"_index":512,"title":{},"body":{"contributing.html":{}}}],["true",{"_index":404,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["try",{"_index":81,"title":{},"body":{"components/AppComponent.html":{}}}],["ts",{"_index":713,"title":{},"body":{"index.html":{}}}],["tscto",{"_index":711,"title":{},"body":{"index.html":{}}}],["tslib",{"_index":634,"title":{},"body":{"dependencies.html":{}}}],["tslint:disable",{"_index":965,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tunes",{"_index":2619,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tv",{"_index":909,"title":{},"body":{"miscellaneous/variables.html":{}}}],["tv|frenzy|quasar|shine|tx1|ax1|ax2",{"_index":2179,"title":{},"body":{"miscellaneous/variables.html":{}}}],["two",{"_index":560,"title":{},"body":{"contributing.html":{}}}],["tx",{"_index":2436,"title":{},"body":{"miscellaneous/variables.html":{}}}],["type",{"_index":42,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"pipes/KeysPipe.html":{},"classes/ReTree.html":{},"injectables/UniversalDeviceDetectorService.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["typeof",{"_index":324,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"classes/ReTree.html":{}}}],["typescript",{"_index":734,"title":{},"body":{"index.html":{}}}],["u100|sgh",{"_index":1435,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u1|me",{"_index":2485,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u200|sgh",{"_index":1436,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u2|me",{"_index":2486,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u310|sch",{"_index":1223,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u320|sch",{"_index":1224,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u350|sch",{"_index":1225,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u360|sch",{"_index":1226,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u365|sch",{"_index":1227,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u370|sch",{"_index":1228,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u380|sch",{"_index":1229,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u410|sch",{"_index":1230,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u430|sch",{"_index":1231,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u450",{"_index":1232,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u460|sch",{"_index":1233,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u470|sch",{"_index":1234,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u490|sch",{"_index":1235,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u540|sch",{"_index":1236,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u550|sch",{"_index":1237,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u620|sch",{"_index":1238,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u640|sch",{"_index":1239,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u650|sch",{"_index":1240,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u660|sch",{"_index":1241,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u700|sch",{"_index":1242,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u740",{"_index":1243,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u750|sch",{"_index":1244,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u800|sgh",{"_index":1437,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u810|sch",{"_index":1245,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u820|sch",{"_index":1246,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u8gt",{"_index":2208,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u900|sch",{"_index":1247,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u940|sch",{"_index":1248,"title":{},"body":{"miscellaneous/variables.html":{}}}],["u960|scs",{"_index":1249,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ua",{"_index":23,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["ubislate[\\s]?7c",{"_index":2873,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ubislatetablet",{"_index":2872,"title":{},"body":{"miscellaneous/variables.html":{}}}],["uc",{"_index":862,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ucbrowser",{"_index":854,"title":{},"body":{"miscellaneous/variables.html":{}}}],["uknown",{"_index":964,"title":{},"body":{"miscellaneous/variables.html":{}}}],["undefined",{"_index":326,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["unique",{"_index":2668,"title":{},"body":{"miscellaneous/variables.html":{}}}],["unit",{"_index":543,"title":{},"body":{"contributing.html":{},"index.html":{}}}],["universal",{"_index":693,"title":{},"body":{"index.html":{}}}],["universaldevicedetectorservice",{"_index":262,"title":{"injectables/UniversalDeviceDetectorService.html":{}},"body":{"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"coverage.html":{},"index.html":{}}}],["unix",{"_index":1689,"title":{},"body":{"miscellaneous/variables.html":{}}}],["unknown",{"_index":315,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/variables.html":{}}}],["up",{"_index":724,"title":{},"body":{"index.html":{}}}],["up.link|vodafone|\\\\bwap\\\\b|nokia|nokia|series40|series60|s60|sonyericsson|n900|maui.*wap.*browser",{"_index":1687,"title":{},"body":{"miscellaneous/variables.html":{}}}],["update",{"_index":565,"title":{},"body":{"contributing.html":{}}}],["updates",{"_index":729,"title":{},"body":{"index.html":{}}}],["usage",{"_index":299,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{}}}],["use",{"_index":646,"title":{},"body":{"index.html":{},"license.html":{}}}],["useclass",{"_index":272,"title":{},"body":{"modules/AppServerModule.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["used",{"_index":733,"title":{},"body":{"index.html":{}}}],["useful",{"_index":103,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["user",{"_index":109,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["useragent",{"_index":49,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"index.html":{}}}],["useragentinputval",{"_index":24,"title":{},"body":{"components/AppComponent.html":{}}}],["using",{"_index":106,"title":{},"body":{"components/AppComponent.html":{},"contributing.html":{},"index.html":{}}}],["v07ot2|tm105a|s10ot1|tr10cs1",{"_index":2615,"title":{},"body":{"miscellaneous/variables.html":{}}}],["v1.5.2",{"_index":647,"title":{},"body":{"index.html":{}}}],["v10",{"_index":2503,"title":{},"body":{"miscellaneous/variables.html":{}}}],["v205|sgh",{"_index":1438,"title":{},"body":{"miscellaneous/variables.html":{}}}],["v206|sgh",{"_index":1439,"title":{},"body":{"miscellaneous/variables.html":{}}}],["v4",{"_index":2500,"title":{},"body":{"miscellaneous/variables.html":{}}}],["v400|lg",{"_index":2082,"title":{},"body":{"miscellaneous/variables.html":{}}}],["v410|lg",{"_index":2081,"title":{},"body":{"miscellaneous/variables.html":{}}}],["v5",{"_index":2502,"title":{},"body":{"miscellaneous/variables.html":{}}}],["v500|lg",{"_index":2080,"title":{},"body":{"miscellaneous/variables.html":{}}}],["v510|lg",{"_index":2079,"title":{},"body":{"miscellaneous/variables.html":{}}}],["v700|lg",{"_index":2078,"title":{},"body":{"miscellaneous/variables.html":{}}}],["v711s|v813|v811|v820w|v820|vi20|v711|vi30w|v712|v891w|v972|v819w|v820w|vi60|v820w|v711|v813s|v801|v819",{"_index":2780,"title":{},"body":{"miscellaneous/variables.html":{}}}],["v900|lg",{"_index":2077,"title":{},"body":{"miscellaneous/variables.html":{}}}],["v909|lg",{"_index":2076,"title":{},"body":{"miscellaneous/variables.html":{}}}],["v97",{"_index":2497,"title":{},"body":{"miscellaneous/variables.html":{}}}],["v975s|v801|v819|v819|v818|v811|v712|v975m|v101w|v961w|v812|v818|v971|v971s|v919|v989|v116w|v102w|v973",{"_index":2781,"title":{},"body":{"miscellaneous/variables.html":{}}}],["v9\\b|android.*\\bmt7a\\b",{"_index":2172,"title":{},"body":{"miscellaneous/variables.html":{}}}],["v9|\\bzte",{"_index":2171,"title":{},"body":{"miscellaneous/variables.html":{}}}],["value",{"_index":48,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"pipes/KeysPipe.html":{},"injectables/UniversalDeviceDetectorService.html":{},"miscellaneous/enumerations.html":{},"miscellaneous/variables.html":{}}}],["value.hasownproperty(key",{"_index":423,"title":{},"body":{"pipes/KeysPipe.html":{}}}],["value[key",{"_index":425,"title":{},"body":{"pipes/KeysPipe.html":{}}}],["var",{"_index":187,"title":{},"body":{"components/AppComponent.html":{}}}],["variable",{"_index":594,"title":{},"body":{"coverage.html":{}}}],["variables",{"_index":825,"title":{"miscellaneous/variables.html":{}},"body":{"miscellaneous/variables.html":{}}}],["vb733|vb100a",{"_index":2732,"title":{},"body":{"miscellaneous/variables.html":{}}}],["venue",{"_index":2119,"title":{},"body":{"miscellaneous/variables.html":{}}}],["verizontablet",{"_index":2733,"title":{},"body":{"miscellaneous/variables.html":{}}}],["version",{"_index":25,"title":{},"body":{"components/AppComponent.html":{},"contributing.html":{},"index.html":{},"properties.html":{}}}],["version.full",{"_index":66,"title":{},"body":{"components/AppComponent.html":{}}}],["versustablet",{"_index":2278,"title":{},"body":{"miscellaneous/variables.html":{}}}],["vertu",{"_index":928,"title":{},"body":{"miscellaneous/variables.html":{}}}],["vertu|vertu.*ltd|vertu.*ascent|vertu.*ayxta|vertu.*constellation(f|quest)?|vertu.*monika|vertu.*signature",{"_index":1609,"title":{},"body":{"miscellaneous/variables.html":{}}}],["vi40)\\\\b[\\s]+|v10",{"_index":2782,"title":{},"body":{"miscellaneous/variables.html":{}}}],["view",{"_index":2047,"title":{},"body":{"miscellaneous/variables.html":{}}}],["viewpad",{"_index":2725,"title":{},"body":{"miscellaneous/variables.html":{}}}],["viewsonictablet",{"_index":2724,"title":{},"body":{"miscellaneous/variables.html":{}}}],["vision",{"_index":2245,"title":{},"body":{"miscellaneous/variables.html":{}}}],["vista",{"_index":1715,"title":{},"body":{"miscellaneous/variables.html":{}}}],["visturetablet",{"_index":2496,"title":{},"body":{"miscellaneous/variables.html":{}}}],["vita",{"_index":889,"title":{},"body":{"miscellaneous/variables.html":{}}}],["vita\\b",{"_index":891,"title":{},"body":{"miscellaneous/variables.html":{}}}],["vk810\\b",{"_index":2083,"title":{},"body":{"miscellaneous/variables.html":{}}}],["vn530|vs660|vs700|vs740|vs750|vs910|vs920|vs930|vx9200|vx11000|ax840a|lw770|p506|p925|p999|e612|d955|d802",{"_index":1602,"title":{},"body":{"miscellaneous/variables.html":{}}}],["vodafonetablet",{"_index":2620,"title":{},"body":{"miscellaneous/variables.html":{}}}],["void",{"_index":52,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"miscellaneous/functions.html":{}}}],["voninotablet",{"_index":2591,"title":{},"body":{"miscellaneous/variables.html":{}}}],["w09",{"_index":2269,"title":{},"body":{"miscellaneous/variables.html":{}}}],["w09|ags",{"_index":2268,"title":{},"body":{"miscellaneous/variables.html":{}}}],["w100",{"_index":2871,"title":{},"body":{"miscellaneous/variables.html":{}}}],["w230v2|tbl",{"_index":2862,"title":{},"body":{"miscellaneous/variables.html":{}}}],["w450|tbl",{"_index":2863,"title":{},"body":{"miscellaneous/variables.html":{}}}],["w500|sv572|tblt7i",{"_index":2864,"title":{},"body":{"miscellaneous/variables.html":{}}}],["w501p|w510|w511|w700|g100|g100w|b1",{"_index":2058,"title":{},"body":{"miscellaneous/variables.html":{}}}],["w700|sm",{"_index":1997,"title":{},"body":{"miscellaneous/variables.html":{}}}],["w708|sm",{"_index":2008,"title":{},"body":{"miscellaneous/variables.html":{}}}],["want",{"_index":500,"title":{},"body":{"contributing.html":{},"index.html":{}}}],["warranties",{"_index":789,"title":{},"body":{"license.html":{}}}],["warranty",{"_index":785,"title":{},"body":{"license.html":{}}}],["way",{"_index":559,"title":{},"body":{"contributing.html":{}}}],["ways",{"_index":476,"title":{},"body":{"contributing.html":{}}}],["wcdma|logicpd",{"_index":2889,"title":{},"body":{"miscellaneous/variables.html":{}}}],["wdpromise",{"_index":235,"title":{},"body":{"classes/AppPage.html":{}}}],["wdpromise.promise",{"_index":228,"title":{},"body":{"classes/AppPage.html":{}}}],["webdriver",{"_index":237,"title":{},"body":{"classes/AppPage.html":{}}}],["whether",{"_index":288,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{},"injectables/UniversalDeviceDetectorService.html":{},"license.html":{}}}],["wide",{"_index":2422,"title":{},"body":{"miscellaneous/variables.html":{}}}],["width",{"_index":137,"title":{},"body":{"components/AppComponent.html":{}}}],["wifi",{"_index":2777,"title":{},"body":{"miscellaneous/variables.html":{}}}],["wiko",{"_index":931,"title":{},"body":{"miscellaneous/variables.html":{}}}],["win",{"_index":1756,"title":{},"body":{"miscellaneous/variables.html":{}}}],["win16",{"_index":1754,"title":{},"body":{"miscellaneous/variables.html":{}}}],["win64",{"_index":883,"title":{},"body":{"miscellaneous/variables.html":{}}}],["window",{"_index":325,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["window.matchmedia",{"_index":379,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["window.matchmedia('(orientation",{"_index":381,"title":{},"body":{"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["window.navigator.useragent",{"_index":82,"title":{},"body":{"components/AppComponent.html":{},"injectables/DeviceDetectorService.html":{},"interfaces/DeviceInfo.html":{}}}],["windows",{"_index":686,"title":{},"body":{"index.html":{},"miscellaneous/variables.html":{}}}],["windows_10",{"_index":1720,"title":{},"body":{"miscellaneous/variables.html":{}}}],["windows_2000",{"_index":1708,"title":{},"body":{"miscellaneous/variables.html":{}}}],["windows_3_11",{"_index":1698,"title":{},"body":{"miscellaneous/variables.html":{}}}],["windows_7",{"_index":1716,"title":{},"body":{"miscellaneous/variables.html":{}}}],["windows_8",{"_index":1719,"title":{},"body":{"miscellaneous/variables.html":{}}}],["windows_8_1",{"_index":1717,"title":{},"body":{"miscellaneous/variables.html":{}}}],["windows_95",{"_index":1701,"title":{},"body":{"miscellaneous/variables.html":{}}}],["windows_98",{"_index":1704,"title":{},"body":{"miscellaneous/variables.html":{}}}],["windows_ce",{"_index":1706,"title":{},"body":{"miscellaneous/variables.html":{}}}],["windows_me",{"_index":1703,"title":{},"body":{"miscellaneous/variables.html":{}}}],["windows_nt_4_0",{"_index":1725,"title":{},"body":{"miscellaneous/variables.html":{}}}],["windows_phone",{"_index":903,"title":{},"body":{"miscellaneous/variables.html":{}}}],["windows_phone_10",{"_index":1724,"title":{},"body":{"miscellaneous/variables.html":{}}}],["windows_phone_7_5",{"_index":1722,"title":{},"body":{"miscellaneous/variables.html":{}}}],["windows_phone_8_1",{"_index":1723,"title":{},"body":{"miscellaneous/variables.html":{}}}],["windows_server_2003",{"_index":1712,"title":{},"body":{"miscellaneous/variables.html":{}}}],["windows_vista",{"_index":1714,"title":{},"body":{"miscellaneous/variables.html":{}}}],["windows_xp",{"_index":1710,"title":{},"body":{"miscellaneous/variables.html":{}}}],["without",{"_index":760,"title":{},"body":{"license.html":{}}}],["woldertablet",{"_index":2820,"title":{},"body":{"miscellaneous/variables.html":{}}}],["wolfgang",{"_index":934,"title":{},"body":{"miscellaneous/variables.html":{}}}],["work",{"_index":732,"title":{},"body":{"index.html":{}}}],["working",{"_index":551,"title":{},"body":{"contributing.html":{}}}],["wrapper",{"_index":735,"title":{},"body":{"index.html":{}}}],["write",{"_index":489,"title":{},"body":{"contributing.html":{}}}],["wx445|xt300|xt301|xt311|xt316|xt317|xt319|xt320|xt390|xt502|xt530|xt531|xt532|xt535|xt603|xt610|xt611",{"_index":987,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x",{"_index":1728,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x100|sgh",{"_index":1440,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x103f|tb",{"_index":2110,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x105|sgh",{"_index":1441,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x10|evolio",{"_index":2796,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x120",{"_index":1442,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x140|sgh",{"_index":1443,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x1|me",{"_index":2488,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x200",{"_index":2011,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x2|jade|neon",{"_index":2671,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x304f|tb",{"_index":2111,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x304l|tb",{"_index":2112,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x30l|tb",{"_index":2116,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x426|sgh",{"_index":1444,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x427|sgh",{"_index":1445,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x475|sgh",{"_index":1446,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x495|sgh",{"_index":1447,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x497|sgh",{"_index":1448,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x507|sgh",{"_index":1449,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x600|sgh",{"_index":1450,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x606f|tb",{"_index":2109,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x610|sgh",{"_index":1451,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x620|sgh",{"_index":1452,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x630",{"_index":1453,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x64",{"_index":884,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x700|sgh",{"_index":1454,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x704f|tb",{"_index":2113,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x7|evolio",{"_index":2797,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x820|sgh",{"_index":1455,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x890|sgh",{"_index":1456,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x8|\\bevotab\\b|\\bneura\\b",{"_index":2798,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x90f",{"_index":2104,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x90l|yt3",{"_index":2103,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x90x|lenovo.*(s2109|s2110|s5000|s6000|k3011|a3000|a3500|a1000|a2107|a2109|a1107|a5500|a7600|b6000",{"_index":2106,"title":{},"body":{"miscellaneous/variables.html":{}}}],["x\\s",{"_index":1774,"title":{},"body":{"miscellaneous/variables.html":{}}}],["xenon",{"_index":2186,"title":{},"body":{"miscellaneous/variables.html":{}}}],["xoom|sholest|mz615|mz605|mz505|mz601|mz602|mz603|mz604|mz606|mz607|mz608|mz609|mz615|mz616|mz617",{"_index":2050,"title":{},"body":{"miscellaneous/variables.html":{}}}],["xorotablet",{"_index":2700,"title":{},"body":{"miscellaneous/variables.html":{}}}],["xp",{"_index":1711,"title":{},"body":{"miscellaneous/variables.html":{}}}],["xs",{"_index":2188,"title":{},"body":{"miscellaneous/variables.html":{}}}],["xt615|xt681|xt701|xt702|xt711|xt720|xt800|xt806|xt860|xt862|xt875|xt882|xt883|xt894|xt901|xt907|xt909",{"_index":988,"title":{},"body":{"miscellaneous/variables.html":{}}}],["xt910|xt912|xt928|xt926|xt915|xt919|xt925|xt1021|\\\\bmoto",{"_index":989,"title":{},"body":{"miscellaneous/variables.html":{}}}],["y2|me",{"_index":2489,"title":{},"body":{"miscellaneous/variables.html":{}}}],["yarviktablet",{"_index":2125,"title":{},"body":{"miscellaneous/variables.html":{}}}],["yonestablet",{"_index":2428,"title":{},"body":{"miscellaneous/variables.html":{}}}],["you'll",{"_index":696,"title":{},"body":{"index.html":{}}}],["you're",{"_index":507,"title":{},"body":{"contributing.html":{}}}],["youth|mediapad",{"_index":2252,"title":{},"body":{"miscellaneous/variables.html":{}}}],["yt3",{"_index":2105,"title":{},"body":{"miscellaneous/variables.html":{}}}],["z1000|z99",{"_index":2281,"title":{},"body":{"miscellaneous/variables.html":{}}}],["z130|sgh",{"_index":1457,"title":{},"body":{"miscellaneous/variables.html":{}}}],["z150|sgh",{"_index":1458,"title":{},"body":{"miscellaneous/variables.html":{}}}],["z170|sgh",{"_index":1459,"title":{},"body":{"miscellaneous/variables.html":{}}}],["z400|swc",{"_index":1528,"title":{},"body":{"miscellaneous/variables.html":{}}}],["zone.js",{"_index":636,"title":{},"body":{"dependencies.html":{}}}],["zoom",{"_index":201,"title":{},"body":{"modules/AppModule.html":{},"modules/AppServerModule.html":{},"overview.html":{}}}],["zoom2",{"_index":2054,"title":{},"body":{"miscellaneous/variables.html":{}}}],["zoom2|\\\\ba7eb\\\\b|catnova8",{"_index":2890,"title":{},"body":{"miscellaneous/variables.html":{}}}],["zx10|sgh",{"_index":1460,"title":{},"body":{"miscellaneous/variables.html":{}}}],["zx20|shw",{"_index":1461,"title":{},"body":{"miscellaneous/variables.html":{}}}],["zynctablet",{"_index":2280,"title":{},"body":{"miscellaneous/variables.html":{}}}]],"pipeline":["stemmer"]}, + "store": {"components/AppComponent.html":{"url":"components/AppComponent.html","title":"component - AppComponent","body":"\n \n\n\n\n\n\n Components\n \n AppComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n projects/demo/src/app/app.component.ts\n\n\n\n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n app-root\n \n\n \n styleUrls\n ./app.component.scss\n \n\n\n\n \n templateUrl\n ./app.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n deviceInfo\n \n \n propsToShow\n \n \n ua\n \n \n userAgentInputVal\n \n \n version\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n applyDevice\n \n \n getDeviceInfo\n \n \n resetDeviceInfo\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n isMobile\n \n \n isTablet\n \n \n isDesktop\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(deviceService: DeviceDetectorService)\n \n \n \n \n Defined in projects/demo/src/app/app.component.ts:14\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n deviceService\n \n \n DeviceDetectorService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n applyDevice\n \n \n \n \n \n \napplyDevice(userAgent)\n \n \n\n\n \n \n Defined in projects/demo/src/app/app.component.ts:40\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Optional\n Default value\n \n \n \n \n userAgent\n\n \n No\n \n\n \n this.ua\n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getDeviceInfo\n \n \n \n \n \n \ngetDeviceInfo()\n \n \n\n\n \n \n Defined in projects/demo/src/app/app.component.ts:24\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n resetDeviceInfo\n \n \n \n \n \n \nresetDeviceInfo()\n \n \n\n\n \n \n Defined in projects/demo/src/app/app.component.ts:45\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n deviceInfo\n \n \n \n \n \n \n Type : null\n\n \n \n \n \n Default value : null\n \n \n \n \n Defined in projects/demo/src/app/app.component.ts:11\n \n \n\n\n \n \n \n \n \n \n \n \n propsToShow\n \n \n \n \n \n \n Type : []\n\n \n \n \n \n Default value : ['userAgent', 'os', 'browser', 'device', 'os_version', 'browser_version', 'deviceType', 'orientation']\n \n \n \n \n Defined in projects/demo/src/app/app.component.ts:10\n \n \n\n\n \n \n \n \n \n \n \n \n ua\n \n \n \n \n \n \n Defined in projects/demo/src/app/app.component.ts:14\n \n \n\n\n \n \n \n \n \n \n \n \n userAgentInputVal\n \n \n \n \n \n \n Type : null\n\n \n \n \n \n Default value : null\n \n \n \n \n Defined in projects/demo/src/app/app.component.ts:13\n \n \n\n\n \n \n \n \n \n \n \n \n version\n \n \n \n \n \n \n Default value : VERSION.full\n \n \n \n \n Defined in projects/demo/src/app/app.component.ts:12\n \n \n\n\n \n \n\n\n \n \n Accessors\n \n \n \n \n \n \n isMobile\n \n \n\n \n \n getisMobile()\n \n \n \n \n Defined in projects/demo/src/app/app.component.ts:28\n \n \n\n \n \n \n \n \n \n \n isTablet\n \n \n\n \n \n getisTablet()\n \n \n \n \n Defined in projects/demo/src/app/app.component.ts:32\n \n \n\n \n \n \n \n \n \n \n isDesktop\n \n \n\n \n \n getisDesktop()\n \n \n \n \n Defined in projects/demo/src/app/app.component.ts:36\n \n \n\n \n \n\n\n\n\n \n import { Component, VERSION } from '@angular/core';\nimport { DeviceDetectorService } from 'ngx-device-detector';\n\n@Component({\n selector: 'app-root',\n templateUrl: './app.component.html',\n styleUrls: ['./app.component.scss'],\n})\nexport class AppComponent {\n propsToShow = ['userAgent', 'os', 'browser', 'device', 'os_version', 'browser_version', 'deviceType', 'orientation'];\n deviceInfo = null;\n version = VERSION.full;\n userAgentInputVal = null;\n ua;\n constructor(private deviceService: DeviceDetectorService) {\n try {\n this.ua = window.navigator.userAgent;\n } catch {\n console.log('UA not available');\n }\n this.applyDevice();\n }\n\n getDeviceInfo(): void {\n this.deviceInfo = this.deviceService.getDeviceInfo();\n }\n\n get isMobile(): boolean {\n return this.deviceService.isMobile();\n }\n\n get isTablet(): boolean {\n return this.deviceService.isTablet();\n }\n\n get isDesktop(): boolean {\n return this.deviceService.isDesktop();\n }\n\n applyDevice(userAgent = this.ua): void {\n this.deviceService.setDeviceInfo(userAgent);\n this.getDeviceInfo();\n }\n\n resetDeviceInfo(): void {\n this.applyDevice();\n }\n}\n\n \n\n \n \n \n \n \n \n \n \n \n \n \n ngx-device-detector\n \n\n \n An Angular 5+ powered AOT compatible device detector that helps to identify browser, os and other useful\n information regarding the device using the app. The processing is based on user-agent.\n \n\n \n \n \n \n \n \n \n \n Demo is at Angular version = {{ version }}\n \n Open this page from different devices to see the appropriate details\n Device Information\n \n \n \n \n Test User Agent\n \n Paste the user agent (window.navigator.userAgent) here\n \n \n \n \n Apply test user agent\n \n Reset device info\n \n \n \n \n \n Mobile\n Tablet\n Desktop\n \n \n \n Property\n Value\n \n \n {{ info.key }}\n {{ info.value }}\n \n \n isDesktop()\n {{ isDesktop }}\n \n \n isMobile()\n {{ isMobile }}\n \n \n isTablet()\n {{ isTablet }}\n \n \n \n \n\n\n \n\n \n \n ./app.component.scss\n \n :host {\n position: relative;\n display: block;\n}\n#demoApp {\n max-width: 600px;\n padding-top: 40px;\n .demo-container {\n .github-logo {\n cursor: pointer;\n position: absolute;\n top: 10px;\n right: 10px;\n img {\n width: 40px;\n transform: rotate(45deg);\n }\n &:hover {\n img {\n opacity: 0.6;\n }\n }\n }\n .badges {\n a {\n margin-left: 4px;\n margin-right: 4px;\n }\n }\n }\n\n .device-icon {\n text-align: center;\n padding: 20px;\n\n .fa {\n font-size: 100px;\n }\n }\n\n .user-agent {\n display: flex;\n flex-direction: column;\n justify-content: flex-end;\n &__input {\n flex: 1;\n input {\n width: 100%;\n }\n }\n &__buttons {\n display: flex;\n justify-content: flex-end;\n > button {\n &:first-child {\n margin-right: 10px;\n }\n }\n }\n }\n}\n\n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' ngx-device-detector An Angular 5+ powered AOT compatible device detector that helps to identify browser, os and other useful information regarding the device using the app. The processing is based on user-agent. Demo is at Angular version = {{ version }} Open this page from different devices to see the appropriate details Device Information Test User Agent Paste the user agent (window.navigator.userAgent) here Apply test user agent Reset device info Mobile Tablet Desktop Property Value {{ info.key }} {{ info.value }} isDesktop() {{ isDesktop }} isMobile() {{ isMobile }} isTablet() {{ isTablet }} '\n var COMPONENTS = [{'name': 'AppComponent', 'selector': 'app-root'}];\n var DIRECTIVES = [];\n var ACTUAL_COMPONENT = {'name': 'AppComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/AppModule.html":{"url":"modules/AppModule.html","title":"module - AppModule","body":"\n \n\n\n\n\n Modules\n AppModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\ndependencies\n\ncluster_AppModule\n\n\n\ncluster_AppModule_bootstrap\n\n\n\ncluster_AppModule_declarations\n\n\n\n\nAppComponent\n\nAppComponent\n\n\n\nAppModule\n\nAppModule\n\nAppModule -->\n\nAppComponent->AppModule\n\n\n\n\n\nKeysPipe\n\nKeysPipe\n\nAppModule -->\n\nKeysPipe->AppModule\n\n\n\n\n\nAppComponent \n\nAppComponent \n\nAppComponent -->\n\nAppModule->AppComponent \n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n projects/demo/src/app/app.module.ts\n \n\n\n\n\n\n \n \n \n Declarations\n \n \n AppComponent\n \n \n KeysPipe\n \n \n \n \n Bootstrap\n \n \n AppComponent\n \n \n \n \n \n\n\n \n\n\n \n import { BrowserModule } from '@angular/platform-browser';\nimport { NgModule } from '@angular/core';\n\nimport { AppComponent } from './app.component';\n\nimport { KeysPipe } from './pipes/keys.pipe';\nimport { CommonModule } from '@angular/common';\nimport { NoopAnimationsModule } from '@angular/platform-browser/animations';\n\n@NgModule({\n declarations: [AppComponent, KeysPipe],\n imports: [NoopAnimationsModule, BrowserModule.withServerTransition({ appId: 'serverApp' }), CommonModule],\n providers: [],\n bootstrap: [AppComponent],\n})\nexport class AppModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/AppPage.html":{"url":"classes/AppPage.html","title":"class - AppPage","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n AppPage\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/demo/e2e/src/app.po.ts\n \n\n\n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n getDemoHeadingText\n \n \n getDeviceInfoElements\n \n \n getParagraphText\n \n \n navigateTo\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n getDemoHeadingText\n \n \n \n \n \n \ngetDemoHeadingText()\n \n \n\n\n \n \n Defined in projects/demo/e2e/src/app.po.ts:9\n \n \n\n\n \n \n\n \n Returns : wdpromise.Promise\n\n \n \n \n \n \n \n \n \n \n \n \n getDeviceInfoElements\n \n \n \n \n \n \ngetDeviceInfoElements()\n \n \n\n\n \n \n Defined in projects/demo/e2e/src/app.po.ts:13\n \n \n\n\n \n \n\n \n Returns : ElementArrayFinder\n\n \n \n \n \n \n \n \n \n \n \n \n getParagraphText\n \n \n \n \n \n \ngetParagraphText()\n \n \n\n\n \n \n Defined in projects/demo/e2e/src/app.po.ts:17\n \n \n\n\n \n \n\n \n Returns : wdpromise.Promise\n\n \n \n \n \n \n \n \n \n \n \n \n navigateTo\n \n \n \n \n \n \nnavigateTo()\n \n \n\n\n \n \n Defined in projects/demo/e2e/src/app.po.ts:5\n \n \n\n\n \n \n\n \n Returns : wdpromise.Promise\n\n \n \n \n \n \n\n\n\n\n\n\n \n\n\n \n import { browser, by, element, ElementArrayFinder } from 'protractor';\nimport { promise as wdpromise } from 'selenium-webdriver';\n\nexport class AppPage {\n navigateTo(): wdpromise.Promise {\n return browser.get('/');\n }\n\n getDemoHeadingText(): wdpromise.Promise {\n return element(by.css('app-root .demo-heading-text')).getText();\n }\n\n getDeviceInfoElements(): ElementArrayFinder {\n return element.all(by.css('app-root .information-table .info-item'));\n }\n\n getParagraphText(): wdpromise.Promise {\n return element(by.css('app-root h1')).getText();\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/AppServerModule.html":{"url":"modules/AppServerModule.html","title":"module - AppServerModule","body":"\n \n\n\n\n\n Modules\n AppServerModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\ndependencies\n\ncluster_AppServerModule\n\n\n\ncluster_AppServerModule_imports\n\n\n\ncluster_AppServerModule_bootstrap\n\n\n\n\nAppModule\n\nAppModule\n\n\n\nAppServerModule\n\nAppServerModule\n\nAppServerModule -->\n\nAppModule->AppServerModule\n\n\n\n\n\nAppComponent \n\nAppComponent \n\nAppComponent -->\n\nAppServerModule->AppComponent \n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n projects/demo/src/app/server.ts\n \n\n\n\n\n\n \n \n \n Imports\n \n \n AppModule\n \n \n \n \n Bootstrap\n \n \n AppComponent\n \n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { ServerModule } from '@angular/platform-server';\n\nimport { AppModule } from './app.module';\nimport { AppComponent } from './app.component';\nimport { Inject, Injectable, Optional, PLATFORM_ID } from '@angular/core';\nimport { REQUEST } from '@nguniversal/express-engine/tokens';\nimport { Request } from 'express';\nimport { DeviceDetectorService } from 'ngx-device-detector';\nimport { isPlatformServer } from '@angular/common';\n\n@Injectable()\nexport class UniversalDeviceDetectorService extends DeviceDetectorService {\n constructor(@Inject(PLATFORM_ID) platformId: any, @Optional() @Inject(REQUEST) request: Request) {\n super(platformId);\n if (isPlatformServer(platformId)) {\n super.setDeviceInfo((request.headers['user-agent'] as string) || '');\n }\n }\n}\n\n@NgModule({\n imports: [AppModule, ServerModule],\n bootstrap: [AppComponent],\n providers: [\n {\n provide: DeviceDetectorService,\n useClass: UniversalDeviceDetectorService,\n },\n ],\n})\nexport class AppServerModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/DeviceDetectorService.html":{"url":"injectables/DeviceDetectorService.html","title":"injectable - DeviceDetectorService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n DeviceDetectorService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/ngx-device-detector/src/lib/device-detector.service.ts\n \n\n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n browser\n \n \n browser_version\n \n \n device\n \n \n deviceType\n \n \n orientation\n \n \n os\n \n \n os_version\n \n \n reTree\n \n \n ua\n \n \n userAgent\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Public\n getDeviceInfo\n \n \n Public\n isDesktop\n \n \n Public\n isMobile\n \n \n Public\n isTablet\n \n \n setDeviceInfo\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(platformId: any)\n \n \n \n \n Defined in projects/ngx-device-detector/src/lib/device-detector.service.ts:46\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n platformId\n \n \n any\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n Public\n getDeviceInfo\n \n \n \n \n \n \n \n getDeviceInfo()\n \n \n\n\n \n \n Defined in projects/ngx-device-detector/src/lib/device-detector.service.ts:135\n \n \n\n\n \n \n\n \n \n \n Returns : DeviceInfo\n\n \n \n the device information object.\n\n \n \n \n \n \n \n \n \n \n \n \n Public\n isDesktop\n \n \n \n \n \n \n \n isDesktop(userAgent)\n \n \n\n\n \n \n Defined in projects/ngx-device-detector/src/lib/device-detector.service.ts:191\n \n \n\n\n \n \n if the current device is a desktop device.\n\n\n \n Parameters :\n \n \n \n \n Name\n Optional\n Default value\n \n \n \n \n userAgent\n\n \n No\n \n\n \n this.userAgent\n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n whether the current device is a desktop device\n\n \n \n \n \n \n \n \n \n \n \n \n Public\n isMobile\n \n \n \n \n \n \n \n isMobile(userAgent)\n \n \n\n\n \n \n Defined in projects/ngx-device-detector/src/lib/device-detector.service.ts:155\n \n \n\n\n \n \n if the current device is a mobile and also check current device is tablet so it will return false.\n\n\n \n Parameters :\n \n \n \n \n Name\n Optional\n Default value\n \n \n \n \n userAgent\n\n \n No\n \n\n \n this.userAgent\n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n whether the current device is a mobile\n\n \n \n \n \n \n \n \n \n \n \n \n Public\n isTablet\n \n \n \n \n \n \n \n isTablet(userAgent)\n \n \n\n\n \n \n Defined in projects/ngx-device-detector/src/lib/device-detector.service.ts:171\n \n \n\n\n \n \n if the current device is a tablet.\n\n\n \n Parameters :\n \n \n \n \n Name\n Optional\n Default value\n \n \n \n \n userAgent\n\n \n No\n \n\n \n this.userAgent\n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n whether the current device is a tablet\n\n \n \n \n \n \n \n \n \n \n \n \n setDeviceInfo\n \n \n \n \n \n \nsetDeviceInfo(ua)\n \n \n\n\n \n \n Defined in projects/ngx-device-detector/src/lib/device-detector.service.ts:59\n \n \n\n\n \n \n This value is later accessible for usage\n\n\n \n Parameters :\n \n \n \n \n Name\n Optional\n Default value\n \n \n \n \n ua\n\n \n No\n \n\n \n this.userAgent\n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n browser\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Defined in projects/ngx-device-detector/src/lib/device-detector.service.ts:40\n \n \n\n\n \n \n \n \n \n \n \n \n browser_version\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Defined in projects/ngx-device-detector/src/lib/device-detector.service.ts:43\n \n \n\n\n \n \n \n \n \n \n \n \n device\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Defined in projects/ngx-device-detector/src/lib/device-detector.service.ts:41\n \n \n\n\n \n \n \n \n \n \n \n \n deviceType\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Defined in projects/ngx-device-detector/src/lib/device-detector.service.ts:45\n \n \n\n\n \n \n \n \n \n \n \n \n orientation\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Defined in projects/ngx-device-detector/src/lib/device-detector.service.ts:46\n \n \n\n\n \n \n \n \n \n \n \n \n os\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Defined in projects/ngx-device-detector/src/lib/device-detector.service.ts:39\n \n \n\n\n \n \n \n \n \n \n \n \n os_version\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Defined in projects/ngx-device-detector/src/lib/device-detector.service.ts:42\n \n \n\n\n \n \n \n \n \n \n \n \n reTree\n \n \n \n \n \n \n Default value : new ReTree()\n \n \n \n \n Defined in projects/ngx-device-detector/src/lib/device-detector.service.ts:44\n \n \n\n\n \n \n \n \n \n \n \n \n ua\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Defined in projects/ngx-device-detector/src/lib/device-detector.service.ts:37\n \n \n\n\n \n \n \n \n \n \n \n \n userAgent\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Defined in projects/ngx-device-detector/src/lib/device-detector.service.ts:38\n \n \n\n\n \n \n\n\n \n\n\n \n import { PLATFORM_ID, Inject, Injectable } from '@angular/core';\nimport { isPlatformBrowser } from '@angular/common';\nimport * as Constants from './device-detector.constants';\nimport { ReTree } from './retree';\n\nexport interface DeviceInfo {\n userAgent: string;\n os: string;\n browser: string;\n device: string;\n os_version: string;\n browser_version: string;\n deviceType: string;\n orientation: string;\n}\nexport enum DeviceType {\n Mobile = 'mobile',\n Tablet = 'tablet',\n Desktop = 'desktop',\n Unknown = 'unknown',\n}\nexport enum OrientationType {\n Portrait = 'portrait',\n Landscape = 'landscape',\n}\n\nconst iPad = 'iPad';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class DeviceDetectorService {\n ua = '';\n userAgent = '';\n os = '';\n browser = '';\n device = '';\n os_version = '';\n browser_version = '';\n reTree = new ReTree();\n deviceType = '';\n orientation = '';\n constructor(@Inject(PLATFORM_ID) private platformId: any) {\n if (isPlatformBrowser(this.platformId) && typeof window !== 'undefined') {\n this.userAgent = window.navigator.userAgent;\n }\n this.setDeviceInfo(this.userAgent);\n }\n\n /**\n * @author Ahsan Ayaz\n * @desc Sets the initial value of the device when the service is initiated.\n * This value is later accessible for usage\n */\n setDeviceInfo(ua = this.userAgent): void {\n if (ua !== this.userAgent) {\n this.userAgent = ua;\n }\n const mappings = [\n { const: 'OS', prop: 'os' },\n { const: 'BROWSERS', prop: 'browser' },\n { const: 'DEVICES', prop: 'device' },\n { const: 'OS_VERSIONS', prop: 'os_version' },\n ];\n\n mappings.forEach(mapping => {\n this[mapping.prop] = Object.keys(Constants[mapping.const]).reduce((obj: any, item: any) => {\n if (Constants[mapping.const][item] === 'device') {\n // hack for iOS 13 Tablet\n if (\n isPlatformBrowser(this.platformId) &&\n (!!this.reTree.test(this.userAgent, Constants.TABLETS_RE[iPad]) ||\n (navigator.platform === 'MacIntel' && navigator.maxTouchPoints > 1))\n ) {\n obj[Constants[mapping.const][item]] = iPad;\n return Object;\n }\n }\n obj[Constants[mapping.const][item]] = this.reTree.test(ua, Constants[`${mapping.const}_RE`][item]);\n return obj;\n }, {});\n });\n\n mappings.forEach(mapping => {\n this[mapping.prop] = Object.keys(Constants[mapping.const])\n .map(key => {\n return Constants[mapping.const][key];\n })\n .reduce((previousValue, currentValue) => {\n if (mapping.prop === 'device' && previousValue === Constants[mapping.const].ANDROID) {\n // if we have the actual device found, instead of 'Android', return the actual device\n return this[mapping.prop][currentValue] ? currentValue : previousValue;\n } else {\n return previousValue === Constants[mapping.const].UNKNOWN && this[mapping.prop][currentValue]\n ? currentValue\n : previousValue;\n }\n }, Constants[mapping.const].UNKNOWN);\n });\n\n this.browser_version = '0';\n if (this.browser !== Constants.BROWSERS.UNKNOWN) {\n const re = Constants.BROWSER_VERSIONS_RE[this.browser];\n const res = this.reTree.exec(ua, re);\n if (!!res) {\n this.browser_version = res[1];\n }\n }\n if (typeof window !== 'undefined' && window.matchMedia) {\n this.orientation = window.matchMedia('(orientation: landscape)').matches\n ? OrientationType.Landscape\n : OrientationType.Portrait;\n } else {\n this.orientation = Constants.GENERAL.UKNOWN;\n }\n\n this.deviceType = this.isTablet()\n ? DeviceType.Tablet\n : this.isMobile(this.userAgent)\n ? DeviceType.Mobile\n : this.isDesktop(this.userAgent)\n ? DeviceType.Desktop\n : DeviceType.Unknown;\n }\n\n /**\n * @author Ahsan Ayaz\n * @desc Returns the device information\n * @returns the device information object.\n */\n public getDeviceInfo(): DeviceInfo {\n const deviceInfo: DeviceInfo = {\n userAgent: this.userAgent,\n os: this.os,\n browser: this.browser,\n device: this.device,\n os_version: this.os_version,\n browser_version: this.browser_version,\n deviceType: this.deviceType,\n orientation: this.orientation,\n };\n return deviceInfo;\n }\n\n /**\n * @author Ahsan Ayaz\n * @desc Compares the current device info with the mobile devices to check\n * if the current device is a mobile and also check current device is tablet so it will return false.\n * @returns whether the current device is a mobile\n */\n public isMobile(userAgent = this.userAgent): boolean {\n if (this.isTablet(userAgent)) {\n return false;\n }\n const match = Object.keys(Constants.MOBILES_RE).find(mobile => {\n return this.reTree.test(userAgent, Constants.MOBILES_RE[mobile]);\n });\n return !!match;\n }\n\n /**\n * @author Ahsan Ayaz\n * @desc Compares the current device info with the tablet devices to check\n * if the current device is a tablet.\n * @returns whether the current device is a tablet\n */\n public isTablet(userAgent = this.userAgent): boolean {\n if (\n isPlatformBrowser(this.platformId) &&\n (!!this.reTree.test(this.userAgent, Constants.TABLETS_RE[iPad]) ||\n (typeof navigator !== 'undefined' && navigator.platform === 'MacIntel' && navigator.maxTouchPoints > 1))\n ) {\n return true;\n }\n const match = Object.keys(Constants.TABLETS_RE).find(mobile => {\n return !!this.reTree.test(userAgent, Constants.TABLETS_RE[mobile]);\n });\n return !!match;\n }\n\n /**\n * @author Ahsan Ayaz\n * @desc Compares the current device info with the desktop devices to check\n * if the current device is a desktop device.\n * @returns whether the current device is a desktop device\n */\n public isDesktop(userAgent = this.userAgent): boolean {\n if (this.device === Constants.DEVICES.UNKNOWN) {\n if (this.isMobile(userAgent) || this.isTablet(userAgent)) {\n return false;\n }\n }\n return Constants.DESKTOP_DEVICES.indexOf(this.device) > -1;\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/DeviceInfo.html":{"url":"interfaces/DeviceInfo.html","title":"interface - DeviceInfo","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n \n DeviceInfo\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/ngx-device-detector/src/lib/device-detector.service.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n \n browser\n \n \n \n \n browser_version\n \n \n \n \n device\n \n \n \n \n deviceType\n \n \n \n \n orientation\n \n \n \n \n os\n \n \n \n \n os_version\n \n \n \n \n userAgent\n \n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n browser\n \n \n \n \n \n \n \n \n browser: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n browser_version\n \n \n \n \n \n \n \n \n browser_version: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n device\n \n \n \n \n \n \n \n \n device: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n deviceType\n \n \n \n \n \n \n \n \n deviceType: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n orientation\n \n \n \n \n \n \n \n \n orientation: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n os\n \n \n \n \n \n \n \n \n os: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n os_version\n \n \n \n \n \n \n \n \n os_version: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n userAgent\n \n \n \n \n \n \n \n \n userAgent: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n import { PLATFORM_ID, Inject, Injectable } from '@angular/core';\nimport { isPlatformBrowser } from '@angular/common';\nimport * as Constants from './device-detector.constants';\nimport { ReTree } from './retree';\n\nexport interface DeviceInfo {\n userAgent: string;\n os: string;\n browser: string;\n device: string;\n os_version: string;\n browser_version: string;\n deviceType: string;\n orientation: string;\n}\nexport enum DeviceType {\n Mobile = 'mobile',\n Tablet = 'tablet',\n Desktop = 'desktop',\n Unknown = 'unknown',\n}\nexport enum OrientationType {\n Portrait = 'portrait',\n Landscape = 'landscape',\n}\n\nconst iPad = 'iPad';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class DeviceDetectorService {\n ua = '';\n userAgent = '';\n os = '';\n browser = '';\n device = '';\n os_version = '';\n browser_version = '';\n reTree = new ReTree();\n deviceType = '';\n orientation = '';\n constructor(@Inject(PLATFORM_ID) private platformId: any) {\n if (isPlatformBrowser(this.platformId) && typeof window !== 'undefined') {\n this.userAgent = window.navigator.userAgent;\n }\n this.setDeviceInfo(this.userAgent);\n }\n\n /**\n * @author Ahsan Ayaz\n * @desc Sets the initial value of the device when the service is initiated.\n * This value is later accessible for usage\n */\n setDeviceInfo(ua = this.userAgent): void {\n if (ua !== this.userAgent) {\n this.userAgent = ua;\n }\n const mappings = [\n { const: 'OS', prop: 'os' },\n { const: 'BROWSERS', prop: 'browser' },\n { const: 'DEVICES', prop: 'device' },\n { const: 'OS_VERSIONS', prop: 'os_version' },\n ];\n\n mappings.forEach(mapping => {\n this[mapping.prop] = Object.keys(Constants[mapping.const]).reduce((obj: any, item: any) => {\n if (Constants[mapping.const][item] === 'device') {\n // hack for iOS 13 Tablet\n if (\n isPlatformBrowser(this.platformId) &&\n (!!this.reTree.test(this.userAgent, Constants.TABLETS_RE[iPad]) ||\n (navigator.platform === 'MacIntel' && navigator.maxTouchPoints > 1))\n ) {\n obj[Constants[mapping.const][item]] = iPad;\n return Object;\n }\n }\n obj[Constants[mapping.const][item]] = this.reTree.test(ua, Constants[`${mapping.const}_RE`][item]);\n return obj;\n }, {});\n });\n\n mappings.forEach(mapping => {\n this[mapping.prop] = Object.keys(Constants[mapping.const])\n .map(key => {\n return Constants[mapping.const][key];\n })\n .reduce((previousValue, currentValue) => {\n if (mapping.prop === 'device' && previousValue === Constants[mapping.const].ANDROID) {\n // if we have the actual device found, instead of 'Android', return the actual device\n return this[mapping.prop][currentValue] ? currentValue : previousValue;\n } else {\n return previousValue === Constants[mapping.const].UNKNOWN && this[mapping.prop][currentValue]\n ? currentValue\n : previousValue;\n }\n }, Constants[mapping.const].UNKNOWN);\n });\n\n this.browser_version = '0';\n if (this.browser !== Constants.BROWSERS.UNKNOWN) {\n const re = Constants.BROWSER_VERSIONS_RE[this.browser];\n const res = this.reTree.exec(ua, re);\n if (!!res) {\n this.browser_version = res[1];\n }\n }\n if (typeof window !== 'undefined' && window.matchMedia) {\n this.orientation = window.matchMedia('(orientation: landscape)').matches\n ? OrientationType.Landscape\n : OrientationType.Portrait;\n } else {\n this.orientation = Constants.GENERAL.UKNOWN;\n }\n\n this.deviceType = this.isTablet()\n ? DeviceType.Tablet\n : this.isMobile(this.userAgent)\n ? DeviceType.Mobile\n : this.isDesktop(this.userAgent)\n ? DeviceType.Desktop\n : DeviceType.Unknown;\n }\n\n /**\n * @author Ahsan Ayaz\n * @desc Returns the device information\n * @returns the device information object.\n */\n public getDeviceInfo(): DeviceInfo {\n const deviceInfo: DeviceInfo = {\n userAgent: this.userAgent,\n os: this.os,\n browser: this.browser,\n device: this.device,\n os_version: this.os_version,\n browser_version: this.browser_version,\n deviceType: this.deviceType,\n orientation: this.orientation,\n };\n return deviceInfo;\n }\n\n /**\n * @author Ahsan Ayaz\n * @desc Compares the current device info with the mobile devices to check\n * if the current device is a mobile and also check current device is tablet so it will return false.\n * @returns whether the current device is a mobile\n */\n public isMobile(userAgent = this.userAgent): boolean {\n if (this.isTablet(userAgent)) {\n return false;\n }\n const match = Object.keys(Constants.MOBILES_RE).find(mobile => {\n return this.reTree.test(userAgent, Constants.MOBILES_RE[mobile]);\n });\n return !!match;\n }\n\n /**\n * @author Ahsan Ayaz\n * @desc Compares the current device info with the tablet devices to check\n * if the current device is a tablet.\n * @returns whether the current device is a tablet\n */\n public isTablet(userAgent = this.userAgent): boolean {\n if (\n isPlatformBrowser(this.platformId) &&\n (!!this.reTree.test(this.userAgent, Constants.TABLETS_RE[iPad]) ||\n (typeof navigator !== 'undefined' && navigator.platform === 'MacIntel' && navigator.maxTouchPoints > 1))\n ) {\n return true;\n }\n const match = Object.keys(Constants.TABLETS_RE).find(mobile => {\n return !!this.reTree.test(userAgent, Constants.TABLETS_RE[mobile]);\n });\n return !!match;\n }\n\n /**\n * @author Ahsan Ayaz\n * @desc Compares the current device info with the desktop devices to check\n * if the current device is a desktop device.\n * @returns whether the current device is a desktop device\n */\n public isDesktop(userAgent = this.userAgent): boolean {\n if (this.device === Constants.DEVICES.UNKNOWN) {\n if (this.isMobile(userAgent) || this.isTablet(userAgent)) {\n return false;\n }\n }\n return Constants.DESKTOP_DEVICES.indexOf(this.device) > -1;\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"pipes/KeysPipe.html":{"url":"pipes/KeysPipe.html","title":"pipe - KeysPipe","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Pipes\n KeysPipe\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n projects/demo/src/app/pipes/keys.pipe.ts\n \n\n\n\n\n \n Metadata\n \n \n \n Name\n keys\n \n \n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n transform\n \n \n \n \n \n \ntransform(value, props: string[])\n \n \n\n\n \n \n Defined in projects/demo/src/app/pipes/keys.pipe.ts:7\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n value\n \n \n\n \n No\n \n\n \n \n\n \n \n props\n \n string[]\n \n\n \n No\n \n\n \n []\n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n \n import { Pipe, PipeTransform } from '@angular/core';\n\n@Pipe({\n name: 'keys',\n})\nexport class KeysPipe implements PipeTransform {\n transform(value, props: string[] = []): any {\n const keys = [];\n const noFilter = props.length === 0;\n for (const key in value) {\n if (noFilter) {\n if (value.hasOwnProperty(key)) {\n keys.push({ key, value: value[key] });\n }\n } else {\n if (props.indexOf(key) !== -1) {\n keys.push({ key, value: value[key] });\n }\n }\n }\n return keys;\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/ReTree.html":{"url":"classes/ReTree.html","title":"class - ReTree","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n ReTree\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/ngx-device-detector/src/lib/retree.ts\n \n\n\n \n Description\n \n \n Created by ahsanayaz on 08/11/2016.\n\n \n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n Public\n exec\n \n \n Public\n test\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n \n \n Defined in projects/ngx-device-detector/src/lib/retree.ts:5\n \n \n\n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n Public\n exec\n \n \n \n \n \n \n \n exec(str: string, regex: any)\n \n \n\n\n \n \n Defined in projects/ngx-device-detector/src/lib/retree.ts:30\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n str\n \n string\n \n\n \n No\n \n\n\n \n \n regex\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n test\n \n \n \n \n \n \n \n test(str: string, regex: any)\n \n \n\n\n \n \n Defined in projects/ngx-device-detector/src/lib/retree.ts:8\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n \n Name\n Type\n Optional\n \n \n \n \n str\n \n string\n \n\n \n No\n \n\n\n \n \n regex\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n\n\n \n export class ReTree {\n constructor() {}\n\n public test(str: string, regex: any): any {\n if (typeof regex === 'string') {\n regex = new RegExp(regex);\n }\n\n if (regex instanceof RegExp) {\n return regex.test(str);\n } else if (regex && Array.isArray(regex.and)) {\n return regex.and.every((item: any) => {\n return this.test(str, item);\n });\n } else if (regex && Array.isArray(regex.or)) {\n return regex.or.some((item: any) => {\n return this.test(str, item);\n });\n } else if (regex && regex.not) {\n return !this.test(str, regex.not);\n } else {\n return false;\n }\n }\n\n public exec(str: string, regex: any): any {\n if (typeof regex === 'string') {\n regex = new RegExp(regex);\n }\n\n if (regex instanceof RegExp) {\n return regex.exec(str);\n } else if (regex && Array.isArray(regex)) {\n return regex.reduce((res: any, item: any) => {\n return !!res ? res : this.exec(str, item);\n }, null);\n } else {\n return null;\n }\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/UniversalDeviceDetectorService.html":{"url":"injectables/UniversalDeviceDetectorService.html","title":"injectable - UniversalDeviceDetectorService","body":"\n \n\n\n\n\n\n\n\n\n\n Injectables\n UniversalDeviceDetectorService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n projects/demo/src/app/server.ts\n \n\n\n\n \n Extends\n \n \n DeviceDetectorService\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n browser\n \n \n browser_version\n \n \n device\n \n \n deviceType\n \n \n orientation\n \n \n os\n \n \n os_version\n \n \n reTree\n \n \n ua\n \n \n userAgent\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Public\n getDeviceInfo\n \n \n Public\n isDesktop\n \n \n Public\n isMobile\n \n \n Public\n isTablet\n \n \n setDeviceInfo\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(platformId: any, request: Request)\n \n \n \n \n Defined in projects/demo/src/app/server.ts:13\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n platformId\n \n \n any\n \n \n \n No\n \n \n \n \n request\n \n \n Request\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n Public\n getDeviceInfo\n \n \n \n \n \n \n \n getDeviceInfo()\n \n \n\n\n \n \n Inherited from DeviceDetectorService\n\n \n \n \n \n Defined in DeviceDetectorService:135\n\n \n \n\n\n \n \n\n \n \n \n Returns : DeviceInfo\n\n \n \n the device information object.\n\n \n \n \n \n \n \n \n \n \n \n \n Public\n isDesktop\n \n \n \n \n \n \n \n isDesktop(userAgent)\n \n \n\n\n \n \n Inherited from DeviceDetectorService\n\n \n \n \n \n Defined in DeviceDetectorService:191\n\n \n \n\n\n \n \n if the current device is a desktop device.\n\n\n \n Parameters :\n \n \n \n \n Name\n Optional\n Default value\n \n \n \n \n userAgent\n\n \n No\n \n\n \n this.userAgent\n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n whether the current device is a desktop device\n\n \n \n \n \n \n \n \n \n \n \n \n Public\n isMobile\n \n \n \n \n \n \n \n isMobile(userAgent)\n \n \n\n\n \n \n Inherited from DeviceDetectorService\n\n \n \n \n \n Defined in DeviceDetectorService:155\n\n \n \n\n\n \n \n if the current device is a mobile and also check current device is tablet so it will return false.\n\n\n \n Parameters :\n \n \n \n \n Name\n Optional\n Default value\n \n \n \n \n userAgent\n\n \n No\n \n\n \n this.userAgent\n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n whether the current device is a mobile\n\n \n \n \n \n \n \n \n \n \n \n \n Public\n isTablet\n \n \n \n \n \n \n \n isTablet(userAgent)\n \n \n\n\n \n \n Inherited from DeviceDetectorService\n\n \n \n \n \n Defined in DeviceDetectorService:171\n\n \n \n\n\n \n \n if the current device is a tablet.\n\n\n \n Parameters :\n \n \n \n \n Name\n Optional\n Default value\n \n \n \n \n userAgent\n\n \n No\n \n\n \n this.userAgent\n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n whether the current device is a tablet\n\n \n \n \n \n \n \n \n \n \n \n \n setDeviceInfo\n \n \n \n \n \n \nsetDeviceInfo(ua)\n \n \n\n\n \n \n Inherited from DeviceDetectorService\n\n \n \n \n \n Defined in DeviceDetectorService:59\n\n \n \n\n\n \n \n This value is later accessible for usage\n\n\n \n Parameters :\n \n \n \n \n Name\n Optional\n Default value\n \n \n \n \n ua\n\n \n No\n \n\n \n this.userAgent\n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n browser\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Inherited from DeviceDetectorService\n\n \n \n \n \n Defined in DeviceDetectorService:40\n\n \n \n\n\n \n \n \n \n \n \n \n \n browser_version\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Inherited from DeviceDetectorService\n\n \n \n \n \n Defined in DeviceDetectorService:43\n\n \n \n\n\n \n \n \n \n \n \n \n \n device\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Inherited from DeviceDetectorService\n\n \n \n \n \n Defined in DeviceDetectorService:41\n\n \n \n\n\n \n \n \n \n \n \n \n \n deviceType\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Inherited from DeviceDetectorService\n\n \n \n \n \n Defined in DeviceDetectorService:45\n\n \n \n\n\n \n \n \n \n \n \n \n \n orientation\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Inherited from DeviceDetectorService\n\n \n \n \n \n Defined in DeviceDetectorService:46\n\n \n \n\n\n \n \n \n \n \n \n \n \n os\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Inherited from DeviceDetectorService\n\n \n \n \n \n Defined in DeviceDetectorService:39\n\n \n \n\n\n \n \n \n \n \n \n \n \n os_version\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Inherited from DeviceDetectorService\n\n \n \n \n \n Defined in DeviceDetectorService:42\n\n \n \n\n\n \n \n \n \n \n \n \n \n reTree\n \n \n \n \n \n \n Default value : new ReTree()\n \n \n \n \n Inherited from DeviceDetectorService\n\n \n \n \n \n Defined in DeviceDetectorService:44\n\n \n \n\n\n \n \n \n \n \n \n \n \n ua\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Inherited from DeviceDetectorService\n\n \n \n \n \n Defined in DeviceDetectorService:37\n\n \n \n\n\n \n \n \n \n \n \n \n \n userAgent\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Inherited from DeviceDetectorService\n\n \n \n \n \n Defined in DeviceDetectorService:38\n\n \n \n\n\n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { ServerModule } from '@angular/platform-server';\n\nimport { AppModule } from './app.module';\nimport { AppComponent } from './app.component';\nimport { Inject, Injectable, Optional, PLATFORM_ID } from '@angular/core';\nimport { REQUEST } from '@nguniversal/express-engine/tokens';\nimport { Request } from 'express';\nimport { DeviceDetectorService } from 'ngx-device-detector';\nimport { isPlatformServer } from '@angular/common';\n\n@Injectable()\nexport class UniversalDeviceDetectorService extends DeviceDetectorService {\n constructor(@Inject(PLATFORM_ID) platformId: any, @Optional() @Inject(REQUEST) request: Request) {\n super(platformId);\n if (isPlatformServer(platformId)) {\n super.setDeviceInfo((request.headers['user-agent'] as string) || '');\n }\n }\n}\n\n@NgModule({\n imports: [AppModule, ServerModule],\n bootstrap: [AppComponent],\n providers: [\n {\n provide: DeviceDetectorService,\n useClass: UniversalDeviceDetectorService,\n },\n ],\n})\nexport class AppServerModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"contributing.html":{"url":"contributing.html","title":"getting-started - contributing","body":"\n \n\nHow to Contribute\nThere are many ways you can Contribute to this project!\n\nCreate issues or help close them\nFork, Enhance, Fix Bugs, and send in Pull Requests\nHelp write Tests or improve Examples / Documentation\nShare repo with others.\n\nIssues\nFound a bug, have some feedback or really want some feature? Lock in an Issue. Here are some tips:\n\nMake sure the bug you're reporting really is a bug and you have read the docs/readme.\nProvide as many details as you can about the bug. How can it be reproduced? What have you tried so far?\nFor feature requests, really explain why your feature is important and how it improves the library and helps the developers using it.\nGo through existing issues. Make sure that it hasn't already been opened.\nIf planning on helping close an issue, don't be shy. Ask questions and get more information before sending your PR.\n\nPull Requests\nWant to fix a bug, implement a feature or help with the tests / docs? Please read this first:\n\nMake sure there's an open issue for what you're sending in your Pull Request. If not, open it.\nSend in your PRs agains the master branch.\nWrite unit tests / docs for any new feature you implement.\nMake sure your PRs pass all tests and CI.\nBe active in your relevant issue and PR threads.\nMake sure no one else is assigned or working on the issue. It's a good idea to leave a comment stating that you're going to implement it before sending in your PR. \nThis way no two devs are working on the same thing.\nIf required, update the CHANGELOG.md file with a small summary of your changes in the latest version (add a new section if needed)\n\nFinally, Thank you!\nIt means a lot that you took time out to improve this package and contribute back to the community. 🎉\nRelevant Links\nProject Page\nAuthor\nNPM Package\nLicense\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"coverage.html":{"url":"coverage.html","title":"coverage - coverage","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Documentation coverage\n\n\n\n \n\n\n\n \n \n File\n Type\n Identifier\n Statements\n \n \n \n \n \n \n projects/demo/e2e/src/app.po.ts\n \n class\n AppPage\n \n 0 %\n (0/5)\n \n \n \n \n \n projects/demo/server.ts\n \n function\n app\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/demo/server.ts\n \n function\n run\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/demo/server.ts\n \n variable\n __non_webpack_require__\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/demo/server.ts\n \n variable\n mainModule\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/demo/server.ts\n \n variable\n moduleFilename\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/demo/src/app/app.component.ts\n \n component\n AppComponent\n \n 0 %\n (0/10)\n \n \n \n \n \n projects/demo/src/app/pipes/keys.pipe.ts\n \n pipe\n KeysPipe\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/demo/src/app/server.ts\n \n injectable\n UniversalDeviceDetectorService\n \n 23 %\n (4/17)\n \n \n \n \n \n projects/ngx-device-detector/src/lib/device-detector.constants.ts\n \n variable\n BROWSER_VERSIONS_RE\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/ngx-device-detector/src/lib/device-detector.constants.ts\n \n variable\n BROWSER_VERSIONS_RE_MAP\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/ngx-device-detector/src/lib/device-detector.constants.ts\n \n variable\n BROWSERS\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/ngx-device-detector/src/lib/device-detector.constants.ts\n \n variable\n BROWSERS_RE\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/ngx-device-detector/src/lib/device-detector.constants.ts\n \n variable\n DESKTOP_DEVICES\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/ngx-device-detector/src/lib/device-detector.constants.ts\n \n variable\n DEVICES\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/ngx-device-detector/src/lib/device-detector.constants.ts\n \n variable\n DEVICES_RE\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/ngx-device-detector/src/lib/device-detector.constants.ts\n \n variable\n GENERAL\n \n 100 %\n (1/1)\n \n \n \n \n \n projects/ngx-device-detector/src/lib/device-detector.constants.ts\n \n variable\n MOBILES_RE\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/ngx-device-detector/src/lib/device-detector.constants.ts\n \n variable\n OS\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/ngx-device-detector/src/lib/device-detector.constants.ts\n \n variable\n OS_RE\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/ngx-device-detector/src/lib/device-detector.constants.ts\n \n variable\n OS_VERSIONS\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/ngx-device-detector/src/lib/device-detector.constants.ts\n \n variable\n OS_VERSIONS_RE\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/ngx-device-detector/src/lib/device-detector.constants.ts\n \n variable\n OS_VERSIONS_RE_MAP\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/ngx-device-detector/src/lib/device-detector.constants.ts\n \n variable\n TABLETS_RE\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/ngx-device-detector/src/lib/device-detector.service.ts\n \n injectable\n DeviceDetectorService\n \n 23 %\n (4/17)\n \n \n \n \n \n projects/ngx-device-detector/src/lib/device-detector.service.ts\n \n interface\n DeviceInfo\n \n 0 %\n (0/9)\n \n \n \n \n \n projects/ngx-device-detector/src/lib/device-detector.service.ts\n \n variable\n iPad\n \n 0 %\n (0/1)\n \n \n \n \n \n projects/ngx-device-detector/src/lib/retree.ts\n \n class\n ReTree\n \n 25 %\n (1/4)\n \n \n \n\n\n\n\n\n new Tablesort(document.getElementById('coverage-table'));\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"dependencies.html":{"url":"dependencies.html","title":"package-dependencies - dependencies","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n Dependencies\n \n \n \n @angular/animations : ~15.0.2\n \n @angular/common : ~15.0.2\n \n @angular/compiler : ~15.0.2\n \n @angular/core : ~15.0.2\n \n @angular/forms : ~15.0.2\n \n @angular/platform-browser : ~15.0.2\n \n @angular/platform-browser-dynamic : ~15.0.2\n \n @angular/platform-server : ~15.0.2\n \n @angular/router : ~15.0.2\n \n @nguniversal/express-engine : ~15.0.0\n \n conventional-changelog-cli : ~2.2.2\n \n express : ~4.18.2\n \n ngx-device-detector : ^5.0.0\n \n rxjs : ~7.5.7\n \n tslib : ~2.4.1\n \n zone.js : ~0.12.0\n \n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"miscellaneous/enumerations.html":{"url":"miscellaneous/enumerations.html","title":"miscellaneous-enumerations - enumerations","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Miscellaneous\n Enumerations\n\n\n\n Index\n \n \n \n \n \n \n DeviceType (projects/.../device-detector.service.ts)\n \n \n OrientationType (projects/.../device-detector.service.ts)\n \n \n \n \n \n \n\n\n projects/ngx-device-detector/src/lib/device-detector.service.ts\n \n \n \n \n \n \n DeviceType\n \n \n \n \n Mobile\n \n \n \n \n Value : mobile\n \n \n \n \n Tablet\n \n \n \n \n Value : tablet\n \n \n \n \n Desktop\n \n \n \n \n Value : desktop\n \n \n \n \n Unknown\n \n \n \n \n Value : unknown\n \n \n \n \n \n \n \n \n \n OrientationType\n \n \n \n \n Portrait\n \n \n \n \n Value : portrait\n \n \n \n \n Landscape\n \n \n \n \n Value : landscape\n \n \n \n \n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"miscellaneous/functions.html":{"url":"miscellaneous/functions.html","title":"miscellaneous-functions - functions","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Miscellaneous\n Functions\n\n\n\n Index\n \n \n \n \n \n \n app (projects/.../server.ts)\n \n \n run (projects/.../server.ts)\n \n \n \n \n \n \n\n\n projects/demo/server.ts\n \n \n \n \n \n \n \n app\n \n \n \n \n \n \napp()\n \n \n\n\n\n\n \n \n\n \n Returns : express.Express\n\n \n \n \n \n \n \n \n \n \n \n \n run\n \n \n \n \n \n \nrun()\n \n \n\n\n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"index.html":{"url":"index.html","title":"getting-started - index","body":"\n \n\n\n \n\n\n\n\n ngx-device-detector\n\n\n\nAn Angular 6+ powered AOT compatible device detector that helps to identify browser, os and other useful information regarding the device using the app. The processing is based on user-agent.\n\n\n\n\n\n\n\n\n\n\n Deprecated package :\n \n \n\n\n New package :\n \n \nIf you use Angular 5, you must use v1.5.2 or earlier\n\n\nDOCS\nNgx Device Detector DOCS\nLive DEMO\nRegular Demo\nSSR Demo\nDependencies\nLatest version available for each version of Angular\n\n\n\nngx-device-detector\nAngular\n\n\n\n\n1.3.3\n7.x\n\n\n1.3.5\n8.x\n\n\n1.4.1\n9.x\n\n\n1.4.5\n10.x\n\n\n2.0.5\n11.x\n\n\n2.1.0\n12.x\n\n\n3.x.x\n13.x\n\n\n4.x.x\n14.x\n\n\n5.x.x\n15.x\n\n\n\nInstallation\nTo install this library, run:\n$ npm install ngx-device-detector --saveIn your component where you want to use the Device Service\n import { Component } from '@angular/core';\n ...\n import { DeviceDetectorService } from 'ngx-device-detector';\n ...\n @Component({\n selector: 'home', // \n styleUrls: [ './home.component.scss' ],\n templateUrl: './home.component.html',\n ...\n })\n\n export class HomeComponent {\n deviceInfo = null;\n ...\n constructor(..., private http: Http, private deviceService: DeviceDetectorService) {\n this.epicFunction();\n }\n ...\n epicFunction() {\n console.log('hello `Home` component');\n this.deviceInfo = this.deviceService.getDeviceInfo();\n const isMobile = this.deviceService.isMobile();\n const isTablet = this.deviceService.isTablet();\n const isDesktopDevice = this.deviceService.isDesktop();\n console.log(this.deviceInfo);\n console.log(isMobile); // returns if the device is a mobile device (android / iPhone / windows-phone etc)\n console.log(isTablet); // returns if the device us a tablet (iPad etc)\n console.log(isDesktopDevice); // returns if the app is running on a Desktop browser.\n }\n ...\n }\nTo ensure Universal has the correct User Agent for device detection, you'll need to provide it manually. If using ExpressJS for example:\nuniversal-device-detector.service.ts:\nimport { Inject, Injectable, Optional, PLATFORM_ID } from '@angular/core';\nimport { REQUEST } from '@nguniversal/express-engine/tokens';\nimport { Request } from 'express';\nimport { DeviceDetectorService } from 'ngx-device-detector';\nimport { isPlatformServer } from '@angular/common';\n\n@Injectable()\nexport class UniversalDeviceDetectorService extends DeviceDetectorService {\n constructor(@Inject(PLATFORM_ID) platformId: any, @Optional() @Inject(REQUEST) request: Request) {\n super(platformId);\n if (isPlatformServer(platformId)) {\n super.setDeviceInfo((request.headers['user-agent'] as string) || '');\n }\n }\n}app.server.module.ts:\n{\n provide: DeviceDetectorService,\n useClass: UniversalDeviceDetectorService\n},Device service\nHolds the following properties\n\nbrowser\nos\ndevice\nuserAgent\nos_version\n\nHelper Methods\n\nisMobile() : returns if the device is a mobile device (android / iPhone/ windows-phone etc)\nisTablet() : returns if the device us a tablet (iPad etc)\nisDesktop() : returns if the app is running on a Desktop browser.\n\nDevelopment\nTo generate all *.js, *.js.map and *.d.ts files:\n $ npm run tscTo lint all *.ts files:\n $ npm run lintTo run unit tests\n $ npm run testTo build the library\n $ npm run buildRun the DEMO\nMake sure you have @angular/cli installed\n $ npm install -g @angular/cli $ cd demo\n $ npm install\n $ ng servethe demo will be up at localhost:4200\nChange Log\nPlease see CHANGE_LOG.MD for the updates.\nCredits\nThe library is inspired by and based on the work from ng-device-detector . Also used a typescript wrapper of the amazing work in ReTree for regex based needs and an Angular2 Library Creator boilerplate to get the work started fast. I.e. Generator Angular2 library.\nLicense\nMIT\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"license.html":{"url":"license.html","title":"getting-started - license","body":"\n \n\nMIT License\nCopyright (c) 2021 Muhammad Ahsan Ayaz\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules.html":{"url":"modules.html","title":"modules - modules","body":"\n \n\n\n\n\n Modules\n\n\n \n \n \n \n AppModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n AppServerModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"overview.html":{"url":"overview.html","title":"overview - overview","body":"\n \n\n\n\n Overview\n\n \n\n \n \n\n\n\n\n\ndependencies\n\ndependencies\n\ncluster_AppModule\n\n\n\ncluster_AppModule_declarations\n\n\n\ncluster_AppModule_bootstrap\n\n\n\ncluster_AppServerModule\n\n\n\n\nAppComponent\n\nAppComponent\n\n\n\nAppModule\n\nAppModule\n\nAppModule -->\n\nAppComponent->AppModule\n\n\n\n\n\nKeysPipe\n\nKeysPipe\n\nAppModule -->\n\nKeysPipe->AppModule\n\n\n\n\n\nAppComponent \n\nAppComponent \n\nAppComponent -->\n\nAppModule->AppComponent \n\n\n\n\n\nAppServerModule\n\nAppServerModule\n\nAppServerModule -->\n\nAppModule->AppServerModule\n\n\n\nAppComponent -->\n\nAppServerModule->AppComponent \n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n \n\n \n \n \n \n \n \n 2 Modules\n \n \n \n \n \n \n \n \n 1 Component\n \n \n \n \n \n \n \n 2 Injectables\n \n \n \n \n \n \n \n 1 Pipe\n \n \n \n \n \n \n \n 2 Classes\n \n \n \n \n \n \n \n 1 Interface\n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"properties.html":{"url":"properties.html","title":"package-properties - properties","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n Properties\n \n \n \n Version : 5.0.1\n \n Keywords : angular, device, device detector, device detection, ngx-device-detector, angular device detector, angular5, angular6, angular7, angular8\n \n Bugs : https://github.com/AhsanAyaz/ngx-device-detector.git/issues\n \n License : MIT\n \n Repository : https://github.com/KoderLabs/ngx-device-detector.git\n \n Author : Muhammad Ahsan Ayaz\n \n\n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"miscellaneous/variables.html":{"url":"miscellaneous/variables.html","title":"miscellaneous-variables - variables","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Miscellaneous\n Variables\n\n\n\n Index\n \n \n \n \n \n \n __non_webpack_require__ (projects/.../server.ts)\n \n \n BROWSER_VERSIONS_RE (projects/.../device-detector.constants.ts)\n \n \n BROWSER_VERSIONS_RE_MAP (projects/.../device-detector.constants.ts)\n \n \n BROWSERS (projects/.../device-detector.constants.ts)\n \n \n BROWSERS_RE (projects/.../device-detector.constants.ts)\n \n \n DESKTOP_DEVICES (projects/.../device-detector.constants.ts)\n \n \n DEVICES (projects/.../device-detector.constants.ts)\n \n \n DEVICES_RE (projects/.../device-detector.constants.ts)\n \n \n GENERAL (projects/.../device-detector.constants.ts)\n \n \n iPad (projects/.../device-detector.service.ts)\n \n \n mainModule (projects/.../server.ts)\n \n \n MOBILES_RE (projects/.../device-detector.constants.ts)\n \n \n moduleFilename (projects/.../server.ts)\n \n \n OS (projects/.../device-detector.constants.ts)\n \n \n OS_RE (projects/.../device-detector.constants.ts)\n \n \n OS_VERSIONS (projects/.../device-detector.constants.ts)\n \n \n OS_VERSIONS_RE (projects/.../device-detector.constants.ts)\n \n \n OS_VERSIONS_RE_MAP (projects/.../device-detector.constants.ts)\n \n \n TABLETS_RE (projects/.../device-detector.constants.ts)\n \n \n \n \n \n \n\n\n projects/demo/server.ts\n \n \n \n \n \n \n \n __non_webpack_require__\n \n \n \n \n \n \n Type : NodeRequire\n\n \n \n\n\n \n \n \n \n \n \n \n \n mainModule\n \n \n \n \n \n \n Default value : __non_webpack_require__.main\n \n \n\n\n \n \n \n \n \n \n \n \n moduleFilename\n \n \n \n \n \n \n Default value : (mainModule && mainModule.filename) || ''\n \n \n\n\n \n \n\n projects/ngx-device-detector/src/lib/device-detector.constants.ts\n \n \n \n \n \n \n \n BROWSER_VERSIONS_RE\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Default value : Object.keys(BROWSER_VERSIONS_RE_MAP).reduce((obj, key: string) => {\n obj[BROWSERS[key]] = BROWSER_VERSIONS_RE_MAP[key];\n return obj;\n}, {})\n \n \n\n\n \n \n \n \n \n \n \n \n BROWSER_VERSIONS_RE_MAP\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Default value : {\n CHROME: [/\\bChrome\\/([\\d\\.]+)\\b/, /\\bCriOS\\/([\\d\\.]+)\\b/, /\\bHeadlessChrome\\/([\\d\\.]+)\\b/],\n FIREFOX: [/\\bFirefox\\/([\\d\\.]+)\\b/, /\\bFxiOS\\/([\\d\\.]+)\\b/],\n SAFARI: [/\\bVersion\\/([\\d\\.]+)\\b/, /\\bSafari\\/([\\d\\.]+)\\b/],\n OPERA: [/\\bVersion\\/([\\d\\.]+)\\b/, /\\bOPR\\/([\\d\\.]+)\\b/],\n IE: [/\\bMSIE ([\\d\\.]+\\w?)\\b/, /\\brv:([\\d\\.]+\\w?)\\b/],\n MS_EDGE: /\\bEdg(?:e|A|iOS)\\/([\\d\\.]+)\\b/,\n MS_EDGE_CHROMIUM: /\\bEdg\\/([\\d\\.]+)\\b/,\n SAMSUNG: /\\bSamsungBrowser\\/([\\d\\.]+)\\b/,\n UCBROWSER: /\\bUCBrowser\\/([\\d\\.]+)\\b/,\n}\n \n \n\n\n \n \n \n \n \n \n \n \n BROWSERS\n \n \n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n CHROME: 'Chrome',\n FIREFOX: 'Firefox',\n SAFARI: 'Safari',\n OPERA: 'Opera',\n IE: 'IE',\n MS_EDGE: 'MS-Edge',\n MS_EDGE_CHROMIUM: 'MS-Edge-Chromium',\n FB_MESSANGER: 'FB-Messanger',\n SAMSUNG: 'Samsung',\n UCBROWSER: 'UC-Browser',\n UNKNOWN: GENERAL.UKNOWN,\n}\n \n \n\n\n \n \n \n \n \n \n \n \n BROWSERS_RE\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Default value : {\n CHROME: {\n and: [\n { or: [/\\bChrome\\b/, /\\bCriOS\\b/, /\\bHeadlessChrome\\b/] },\n {\n not: {\n or: [/\\bOPR\\b/, /\\bEdg(e|A|iOS)\\b/, /\\bEdg\\/\\b/, /\\bSamsungBrowser\\b/, /\\bUCBrowser\\b/],\n },\n },\n ],\n },\n FIREFOX: { or: [/\\bFirefox\\b/, /\\bFxiOS\\b/] },\n SAFARI: {\n and: [\n /^((?!CriOS).)*\\Safari\\b.*$/,\n {\n not: {\n or: [/\\bOPR\\b/, /\\bEdg(e|A|iOS)\\b/, /\\bEdg\\/\\b/, /\\bWindows Phone\\b/, /\\bSamsungBrowser\\b/, /\\bUCBrowser\\b/],\n },\n },\n ],\n },\n OPERA: { or: [/Opera\\b/, /\\bOPR\\b/] },\n IE: {\n or: [/\\bMSIE\\b/, /\\bTrident\\b/, /^Mozilla\\/5\\.0 \\(Windows NT 10\\.0; Win64; x64\\)$/],\n },\n MS_EDGE: { or: [/\\bEdg(e|A|iOS)\\b/] },\n MS_EDGE_CHROMIUM: /\\bEdg\\/\\b/,\n PS4: /\\bMozilla\\/5.0 \\(PlayStation 4\\b/,\n VITA: /\\bMozilla\\/5.0 \\(Play(S|s)tation Vita\\b/,\n FB_MESSANGER: /\\bFBAN\\/MessengerForiOS\\b/,\n SAMSUNG: /\\bSamsungBrowser\\b/,\n UCBROWSER: /\\bUCBrowser\\b/,\n}\n \n \n\n\n \n \n \n \n \n \n \n \n DESKTOP_DEVICES\n \n \n \n \n \n \n Type : []\n\n \n \n \n \n Default value : [\n DEVICES.PS4,\n DEVICES.CHROME_BOOK,\n DEVICES.MAC,\n DEVICES.DELL,\n DEVICES.ASUS,\n DEVICES.UNKNOWN,\n]\n \n \n\n\n \n \n \n \n \n \n \n \n DEVICES\n \n \n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n BLACKBERRY: 'Blackberry',\n FIREFOX_OS: 'Firefox-OS',\n CHROME_BOOK: 'Chrome-Book',\n WINDOWS_PHONE: 'Windows-Phone',\n VITA: 'Vita',\n PS4: 'PS4',\n MAC: 'Macintosh',\n CHROMECAST: 'Chromecast',\n APPLE_TV: 'Apple-TV',\n GOOGLE_TV: 'Google-TV',\n ANDROID: 'Android',\n Tesla: 'Tesla',\n iPad: 'iPad',\n IPHONE: 'iPhone',\n iPod: 'iPod',\n UNKNOWN: GENERAL.UKNOWN,\n HTC: 'HTC',\n NEXUS_PHONE: 'Nexus Phone',\n NexusTablet: 'Nexus Tablet',\n DELL: 'Dell',\n MOTOROLA: 'Motorola',\n SAMSUNG: 'Samsung',\n LG: 'LG',\n SONY: 'Sony',\n ASUS: 'Asus',\n NOKIA_LUMIA: 'Nokia Lumia',\n MICROMAX: 'Micromax',\n PALM: 'Palm',\n VERTU: 'Vertu',\n PANTECH: 'PANTECH',\n FLY: 'Fly',\n WIKO: `WIKO`,\n I_MOBILE: 'i-mobile',\n SIMVALLEY: 'Simvalley',\n WOLFGANG: 'Wolfgang',\n ALCATEL: 'Alcatel',\n HONEYWELL: 'Honeywell',\n NINTENDO: 'Nintendo',\n AMOI: 'Amoi',\n INQ: 'INQ',\n GENERIC_PHONE: 'Generic Phone',\n MI_SE_9: 'Mi SE 9',\n}\n \n \n\n\n \n \n \n \n \n \n \n \n DEVICES_RE\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Default value : {\n ...MOBILES_RE,\n ...TABLETS_RE,\n ...OS_RE,\n FIREFOX_OS: { and: [/\\bFirefox\\b/, /\\bMobile\\b/] },\n CHROME_BOOK: /\\bCrOS\\b/,\n PS4: /\\bMozilla\\/5.0 \\(PlayStation 4\\b/,\n CHROMECAST: /\\bCrKey\\b/,\n APPLE_TV: /^iTunes-AppleTV\\/4.1$/,\n GOOGLE_TV: /\\bGoogleTV\\b/,\n Tesla: /Tesla\\/([0-9]{4}.[0-9]{1,2}.?[0-9]{0,2}.?[0-9]{0,2})-(.{7})/,\n MI_SE_9: /\\bXiaomi\\b/,\n MAC: {\n and: [/\\bMac OS\\b/, { not: { or: [/\\biPhone\\b/, /\\biPad\\b/, /\\biPod\\b/, /\\bWindows Phone\\b/] } }],\n },\n}\n \n \n\n\n \n \n \n \n \n \n \n \n GENERAL\n \n \n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n UKNOWN: 'Unknown',\n}\n \n \n\n \n \n Created by ahsanayaz on 08/11/2016.\n\n \n \n\n \n \n \n \n \n \n \n \n MOBILES_RE\n \n \n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n // tslint:disable-next-line:max-line-length\n HTC: /HTC|HTC.*(Sensation|Evo|Vision|Explorer|6800|8100|8900|A7272|S510e|C110e|Legend|Desire|T8282)|APX515CKT|Qtek9090|APA9292KT|HD_mini|Sensation.*Z710e|PG86100|Z715e|Desire.*(A8181|HD)|ADR6200|ADR6400L|ADR6425|001HT|Inspire 4G|Android.*\\bEVO\\b|T-Mobile G1|Z520m|Android [0-9.]+; Pixel/,\n NEXUS_PHONE: /Nexus One|Nexus S|Galaxy.*Nexus|Android.*Nexus.*Mobile|Nexus 4|Nexus 5|Nexus 6/,\n DELL: /Dell[;]? (Streak|Aero|Venue|Venue Pro|Flash|Smoke|Mini 3iX)|XCD28|XCD35|\\b001DL\\b|\\b101DL\\b|\\bGS01\\b/,\n MOTOROLA: new RegExp(`Motorola|DROIDX|DROID BIONIC|\\\\bDroid\\\\b.*Build|Android.*Xoom|HRI39|MOT-|A1260|A1680|A555|A853|\n A855|A953|A955|A956|Motorola.*ELECTRIFY|Motorola.*i1|i867|i940|MB200|MB300|MB501|MB502|MB508|MB511|\n MB520|MB525|MB526|MB611|MB612|MB632|MB810|MB855|MB860|MB861|MB865|MB870|ME501|ME502|ME511|ME525|ME600|\n ME632|ME722|ME811|ME860|ME863|ME865|MT620|MT710|MT716|MT720|MT810|MT870|MT917|Motorola.*TITANIUM|WX435|\n WX445|XT300|XT301|XT311|XT316|XT317|XT319|XT320|XT390|XT502|XT530|XT531|XT532|XT535|XT603|XT610|XT611|\n XT615|XT681|XT701|XT702|XT711|XT720|XT800|XT806|XT860|XT862|XT875|XT882|XT883|XT894|XT901|XT907|XT909|\n XT910|XT912|XT928|XT926|XT915|XT919|XT925|XT1021|\\\\bMoto E\\\\b|XT1068|XT1092|XT1052`),\n SAMSUNG: new RegExp(`\\\\bSamsung\\\\b|SM-G950F|SM-G955F|SM-G9250|GT-19300|SGH-I337|BGT-S5230|GT-B2100|GT-B2700|GT-B2710|\n GT-B3210|GT-B3310|GT-B3410|GT-B3730|GT-B3740|GT-B5510|GT-B5512|GT-B5722|GT-B6520|GT-B7300|GT-B7320|\n GT-B7330|GT-B7350|GT-B7510|GT-B7722|GT-B7800|GT-C3010|GT-C3011|GT-C3060|GT-C3200|GT-C3212|GT-C3212I|\n GT-C3262|GT-C3222|GT-C3300|GT-C3300K|GT-C3303|GT-C3303K|GT-C3310|GT-C3322|GT-C3330|GT-C3350|GT-C3500|\n GT-C3510|GT-C3530|GT-C3630|GT-C3780|GT-C5010|GT-C5212|GT-C6620|GT-C6625|GT-C6712|GT-E1050|GT-E1070|\n GT-E1075|GT-E1080|GT-E1081|GT-E1085|GT-E1087|GT-E1100|GT-E1107|GT-E1110|GT-E1120|GT-E1125|GT-E1130|\n GT-E1160|GT-E1170|GT-E1175|GT-E1180|GT-E1182|GT-E1200|GT-E1210|GT-E1225|GT-E1230|GT-E1390|GT-E2100|\n GT-E2120|GT-E2121|GT-E2152|GT-E2220|GT-E2222|GT-E2230|GT-E2232|GT-E2250|GT-E2370|GT-E2550|GT-E2652|\n GT-E3210|GT-E3213|GT-I5500|GT-I5503|GT-I5700|GT-I5800|GT-I5801|GT-I6410|GT-I6420|GT-I7110|GT-I7410|\n GT-I7500|GT-I8000|GT-I8150|GT-I8160|GT-I8190|GT-I8320|GT-I8330|GT-I8350|GT-I8530|GT-I8700|GT-I8703|\n GT-I8910|GT-I9000|GT-I9001|GT-I9003|GT-I9010|GT-I9020|GT-I9023|GT-I9070|GT-I9082|GT-I9100|GT-I9103|\n GT-I9220|GT-I9250|GT-I9300|GT-I9305|GT-I9500|GT-I9505|GT-M3510|GT-M5650|GT-M7500|GT-M7600|GT-M7603|\n GT-M8800|GT-M8910|GT-N7000|GT-S3110|GT-S3310|GT-S3350|GT-S3353|GT-S3370|GT-S3650|GT-S3653|GT-S3770|\n GT-S3850|GT-S5210|GT-S5220|GT-S5229|GT-S5230|GT-S5233|GT-S5250|GT-S5253|GT-S5260|GT-S5263|GT-S5270|\n GT-S5300|GT-S5330|GT-S5350|GT-S5360|GT-S5363|GT-S5369|GT-S5380|GT-S5380D|GT-S5560|GT-S5570|GT-S5600|\n GT-S5603|GT-S5610|GT-S5620|GT-S5660|GT-S5670|GT-S5690|GT-S5750|GT-S5780|GT-S5830|GT-S5839|GT-S6102|\n GT-S6500|GT-S7070|GT-S7200|GT-S7220|GT-S7230|GT-S7233|GT-S7250|GT-S7500|GT-S7530|GT-S7550|GT-S7562|\n GT-S7710|GT-S8000|GT-S8003|GT-S8500|GT-S8530|GT-S8600|SCH-A310|SCH-A530|SCH-A570|SCH-A610|SCH-A630|\n SCH-A650|SCH-A790|SCH-A795|SCH-A850|SCH-A870|SCH-A890|SCH-A930|SCH-A950|SCH-A970|SCH-A990|SCH-I100|\n SCH-I110|SCH-I400|SCH-I405|SCH-I500|SCH-I510|SCH-I515|SCH-I600|SCH-I730|SCH-I760|SCH-I770|SCH-I830|\n SCH-I910|SCH-I920|SCH-I959|SCH-LC11|SCH-N150|SCH-N300|SCH-R100|SCH-R300|SCH-R351|SCH-R400|SCH-R410|\n SCH-T300|SCH-U310|SCH-U320|SCH-U350|SCH-U360|SCH-U365|SCH-U370|SCH-U380|SCH-U410|SCH-U430|SCH-U450|\n SCH-U460|SCH-U470|SCH-U490|SCH-U540|SCH-U550|SCH-U620|SCH-U640|SCH-U650|SCH-U660|SCH-U700|SCH-U740|\n SCH-U750|SCH-U810|SCH-U820|SCH-U900|SCH-U940|SCH-U960|SCS-26UC|SGH-A107|SGH-A117|SGH-A127|SGH-A137|\n SGH-A157|SGH-A167|SGH-A177|SGH-A187|SGH-A197|SGH-A227|SGH-A237|SGH-A257|SGH-A437|SGH-A517|SGH-A597|\n SGH-A637|SGH-A657|SGH-A667|SGH-A687|SGH-A697|SGH-A707|SGH-A717|SGH-A727|SGH-A737|SGH-A747|SGH-A767|\n SGH-A777|SGH-A797|SGH-A817|SGH-A827|SGH-A837|SGH-A847|SGH-A867|SGH-A877|SGH-A887|SGH-A897|SGH-A927|\n SGH-B100|SGH-B130|SGH-B200|SGH-B220|SGH-C100|SGH-C110|SGH-C120|SGH-C130|SGH-C140|SGH-C160|SGH-C170|\n SGH-C180|SGH-C200|SGH-C207|SGH-C210|SGH-C225|SGH-C230|SGH-C417|SGH-C450|SGH-D307|SGH-D347|SGH-D357|\n SGH-D407|SGH-D415|SGH-D780|SGH-D807|SGH-D980|SGH-E105|SGH-E200|SGH-E315|SGH-E316|SGH-E317|SGH-E335|\n SGH-E590|SGH-E635|SGH-E715|SGH-E890|SGH-F300|SGH-F480|SGH-I200|SGH-I300|SGH-I320|SGH-I550|SGH-I577|\n SGH-I600|SGH-I607|SGH-I617|SGH-I627|SGH-I637|SGH-I677|SGH-I700|SGH-I717|SGH-I727|SGH-i747M|SGH-I777|\n SGH-I780|SGH-I827|SGH-I847|SGH-I857|SGH-I896|SGH-I897|SGH-I900|SGH-I907|SGH-I917|SGH-I927|SGH-I937|\n SGH-I997|SGH-J150|SGH-J200|SGH-L170|SGH-L700|SGH-M110|SGH-M150|SGH-M200|SGH-N105|SGH-N500|SGH-N600|\n SGH-N620|SGH-N625|SGH-N700|SGH-N710|SGH-P107|SGH-P207|SGH-P300|SGH-P310|SGH-P520|SGH-P735|SGH-P777|\n SGH-Q105|SGH-R210|SGH-R220|SGH-R225|SGH-S105|SGH-S307|SGH-T109|SGH-T119|SGH-T139|SGH-T209|SGH-T219|\n SGH-T229|SGH-T239|SGH-T249|SGH-T259|SGH-T309|SGH-T319|SGH-T329|SGH-T339|SGH-T349|SGH-T359|SGH-T369|\n SGH-T379|SGH-T409|SGH-T429|SGH-T439|SGH-T459|SGH-T469|SGH-T479|SGH-T499|SGH-T509|SGH-T519|SGH-T539|\n SGH-T559|SGH-T589|SGH-T609|SGH-T619|SGH-T629|SGH-T639|SGH-T659|SGH-T669|SGH-T679|SGH-T709|SGH-T719|\n SGH-T729|SGH-T739|SGH-T746|SGH-T749|SGH-T759|SGH-T769|SGH-T809|SGH-T819|SGH-T839|SGH-T919|SGH-T929|\n SGH-T939|SGH-T959|SGH-T989|SGH-U100|SGH-U200|SGH-U800|SGH-V205|SGH-V206|SGH-X100|SGH-X105|SGH-X120|\n SGH-X140|SGH-X426|SGH-X427|SGH-X475|SGH-X495|SGH-X497|SGH-X507|SGH-X600|SGH-X610|SGH-X620|SGH-X630|\n SGH-X700|SGH-X820|SGH-X890|SGH-Z130|SGH-Z150|SGH-Z170|SGH-ZX10|SGH-ZX20|SHW-M110|SPH-A120|SPH-A400|\n SPH-A420|SPH-A460|SPH-A500|SPH-A560|SPH-A600|SPH-A620|SPH-A660|SPH-A700|SPH-A740|SPH-A760|SPH-A790|\n SPH-A800|SPH-A820|SPH-A840|SPH-A880|SPH-A900|SPH-A940|SPH-A960|SPH-D600|SPH-D700|SPH-D710|SPH-D720|\n SPH-I300|SPH-I325|SPH-I330|SPH-I350|SPH-I500|SPH-I600|SPH-I700|SPH-L700|SPH-M100|SPH-M220|SPH-M240|\n SPH-M300|SPH-M305|SPH-M320|SPH-M330|SPH-M350|SPH-M360|SPH-M370|SPH-M380|SPH-M510|SPH-M540|SPH-M550|\n SPH-M560|SPH-M570|SPH-M580|SPH-M610|SPH-M620|SPH-M630|SPH-M800|SPH-M810|SPH-M850|SPH-M900|SPH-M910|\n SPH-M920|SPH-M930|SPH-N100|SPH-N200|SPH-N240|SPH-N300|SPH-N400|SPH-Z400|SWC-E100|SCH-i909|GT-N7100|\n GT-N7105|SCH-I535|SM-N900A|SM-N900T|SGH-I317|SGH-T999L|GT-S5360B|GT-I8262|GT-S6802|GT-S6312|GT-S6310|GT-S5312|\n GT-S5310|GT-I9105|GT-I8510|GT-S6790N|SM-G7105|SM-N9005|GT-S5301|GT-I9295|GT-I9195|SM-C101|GT-S7392|GT-S7560|\n GT-B7610|GT-I5510|GT-S7582|GT-S7530E|GT-I8750|SM-G9006V|SM-G9008V|SM-G9009D|SM-G900A|SM-G900D|SM-G900F|\n SM-G900H|SM-G900I|SM-G900J|SM-G900K|SM-G900L|SM-G900M|SM-G900P|SM-G900R4|SM-G900S|SM-G900T|SM-G900V|\n SM-G900W8|SHV-E160K|SCH-P709|SCH-P729|SM-T2558|GT-I9205|SM-G9350|SM-J120F|SM-G920F|SM-G920V|SM-G930F|\n SM-N910C|SM-A310F|GT-I9190|SM-J500FN|SM-G903F|SM-J330F`),\n LG: new RegExp(`\\\\bLG\\\\b;|LG[- ]?(C800|C900|E400|E610|E900|E-900|F160|F180K|F180L|F180S|730|855|L160|LS740|LS840|LS970|\n LU6200|MS690|MS695|MS770|MS840|MS870|MS910|P500|P700|P705|VM696|AS680|AS695|AX840|C729|E970|GS505|272|\n C395|E739BK|E960|L55C|L75C|LS696|LS860|P769BK|P350|P500|P509|P870|UN272|US730|VS840|VS950|LN272|LN510|\n LS670|LS855|LW690|MN270|MN510|P509|P769|P930|UN200|UN270|UN510|UN610|US670|US740|US760|UX265|UX840|VN271|\n VN530|VS660|VS700|VS740|VS750|VS910|VS920|VS930|VX9200|VX11000|AX840A|LW770|P506|P925|P999|E612|D955|D802|\n MS323|M257)`),\n SONY: /SonyST|SonyLT|SonyEricsson|SonyEricssonLT15iv|LT18i|E10i|LT28h|LT26w|SonyEricssonMT27i|C5303|C6902|C6903|C6906|C6943|D2533/,\n ASUS: /Asus.*Galaxy|PadFone.*Mobile/,\n NOKIA_LUMIA: /Lumia [0-9]{3,4}/,\n MICROMAX:\n /Micromax.*\\b(A210|A92|A88|A72|A111|A110Q|A115|A116|A110|A90S|A26|A51|A35|A54|A25|A27|A89|A68|A65|A57|A90)\\b/,\n PALM: /PalmSource|Palm/,\n VERTU: /Vertu|Vertu.*Ltd|Vertu.*Ascent|Vertu.*Ayxta|Vertu.*Constellation(F|Quest)?|Vertu.*Monika|Vertu.*Signature/,\n PANTECH:\n new RegExp(`PANTECH|IM-A850S|IM-A840S|IM-A830L|IM-A830K|IM-A830S|IM-A820L|IM-A810K|IM-A810S|IM-A800S|IM-T100K|\n IM-A725L|IM-A780L|IM-A775C|IM-A770K|IM-A760S|IM-A750K|IM-A740S|IM-A730S|IM-A720L|IM-A710K|IM-A690L|\n IM-A690S|IM-A650S|IM-A630K|IM-A600S|VEGA PTL21|PT003|P8010|ADR910L|P6030|P6020|P9070|P4100|P9060|P5000|\n CDM8992|TXT8045|ADR8995|IS11PT|P2030|P6010|P8000|PT002|IS06|CDM8999|P9050|PT001|TXT8040|P2020|P9020|\n P2000|P7040|P7000|C790`),\n FLY: /IQ230|IQ444|IQ450|IQ440|IQ442|IQ441|IQ245|IQ256|IQ236|IQ255|IQ235|IQ245|IQ275|IQ240|IQ285|IQ280|IQ270|IQ260|IQ250/,\n WIKO: new RegExp(`KITE 4G|HIGHWAY|GETAWAY|STAIRWAY|DARKSIDE|DARKFULL|DARKNIGHT|DARKMOON|SLIDE|WAX 4G|RAINBOW|BLOOM|\n SUNSET|GOA(?!nna)|LENNY|BARRY|IGGY|OZZY|CINK FIVE|CINK PEAX|CINK PEAX 2|CINK SLIM|CINK SLIM 2|CINK +|\n CINK KING|CINK PEAX|CINK SLIM|SUBLIM`),\n I_MOBILE: /i-mobile (IQ|i-STYLE|idea|ZAA|Hitz)/,\n SIMVALLEY:\n /\\b(SP-80|XT-930|SX-340|XT-930|SX-310|SP-360|SP60|SPT-800|SP-120|SPT-800|SP-140|SPX-5|SPX-8|SP-100|SPX-8|SPX-12)\\b/,\n WOLFGANG: /AT-B24D|AT-AS50HD|AT-AS40W|AT-AS55HD|AT-AS45q2|AT-B26D|AT-AS50Q/,\n ALCATEL: /Alcatel|Mobile; rv:49.0|Mobile; ALCATEL 4052R; rv:48.0/,\n NINTENDO: /Nintendo (3DS|Switch)/,\n AMOI: /Amoi/,\n INQ: /INQ/,\n VITA: /\\bVita\\b/,\n BLACKBERRY: /\\bBlackBerry\\b|\\bBB10\\b|rim[0-9]+/,\n FIREFOX_OS: /\\bFirefox-OS\\b/,\n IPHONE: /\\biPhone\\b/,\n iPod: /\\biPod\\b/,\n ANDROID: /\\bAndroid\\b/,\n WINDOWS_PHONE: /\\bWindows-Phone\\b/,\n GENERIC_PHONE: new RegExp(`Tapatalk|PDA;|SAGEM|\\\\bmmp\\\\b|pocket|\\\\bpsp\\\\b|symbian|Smartphone|smartfon|treo|up.browser|\n up.link|vodafone|\\\\bwap\\\\b|nokia|Nokia|Series40|Series60|S60|SonyEricsson|N900|MAUI.*WAP.*Browser`),\n}\n \n \n\n\n \n \n \n \n \n \n \n \n OS\n \n \n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n WINDOWS: 'Windows',\n MAC: 'Mac',\n IOS: 'iOS',\n ANDROID: 'Android',\n LINUX: 'Linux',\n UNIX: 'Unix',\n FIREFOX_OS: 'Firefox-OS',\n CHROME_OS: 'Chrome-OS',\n WINDOWS_PHONE: 'Windows-Phone',\n UNKNOWN: GENERAL.UKNOWN,\n}\n \n \n\n\n \n \n \n \n \n \n \n \n OS_RE\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Default value : {\n WINDOWS: {\n and: [{ or: [/\\bWindows|(Win\\d\\d)\\b/, /\\bWin 9x\\b/] }, { not: /\\bWindows Phone\\b/ }],\n },\n MAC: {\n and: [/\\bMac OS\\b/, { not: { or: [/\\biPhone\\b/, /\\biPad\\b/, /\\biPod\\b/, /\\bWindows Phone\\b/] } }],\n },\n IOS: {\n and: [{ or: [/\\biPad\\b/, /\\biPhone\\b/, /\\biPod\\b/] }, { not: /\\bWindows Phone\\b/ }],\n },\n ANDROID: { and: [/\\bAndroid\\b/, { not: /\\bWindows Phone\\b/ }] },\n LINUX: /\\bLinux\\b/,\n UNIX: /\\bUNIX\\b/,\n FIREFOX_OS: { and: [/\\bFirefox\\b/, /Mobile\\b/] },\n CHROME_OS: /\\bCrOS\\b/,\n WINDOWS_PHONE: { or: [/\\bIEMobile\\b/, /\\bWindows Phone\\b/] },\n PS4: /\\bMozilla\\/5.0 \\(PlayStation 4\\b/,\n VITA: /\\bMozilla\\/5.0 \\(Play(S|s)tation Vita\\b/,\n}\n \n \n\n\n \n \n \n \n \n \n \n \n OS_VERSIONS\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Default value : {\n WINDOWS_3_11: 'windows-3-11',\n WINDOWS_95: 'windows-95',\n WINDOWS_ME: 'windows-me',\n WINDOWS_98: 'windows-98',\n WINDOWS_CE: 'windows-ce',\n WINDOWS_2000: 'windows-2000',\n WINDOWS_XP: 'windows-xp',\n WINDOWS_SERVER_2003: 'windows-server-2003',\n WINDOWS_VISTA: 'windows-vista',\n WINDOWS_7: 'windows-7',\n WINDOWS_8_1: 'windows-8-1',\n WINDOWS_8: 'windows-8',\n WINDOWS_10: 'windows-10',\n WINDOWS_PHONE_7_5: 'windows-phone-7-5',\n WINDOWS_PHONE_8_1: 'windows-phone-8-1',\n WINDOWS_PHONE_10: 'windows-phone-10',\n WINDOWS_NT_4_0: 'windows-nt-4-0',\n MACOSX_11_0: 'mac-os-x-11-0',\n MACOSX_16: 'mac-os-x-16',\n MACOSX_15: 'mac-os-x-15',\n MACOSX_14: 'mac-os-x-14',\n MACOSX_13: 'mac-os-x-13',\n MACOSX_12: 'mac-os-x-12',\n MACOSX_11: 'mac-os-x-11',\n MACOSX_10: 'mac-os-x-10',\n MACOSX_9: 'mac-os-x-9',\n MACOSX_8: 'mac-os-x-8',\n MACOSX_7: 'mac-os-x-7',\n MACOSX_6: 'mac-os-x-6',\n MACOSX_5: 'mac-os-x-5',\n MACOSX_4: 'mac-os-x-4',\n MACOSX_3: 'mac-os-x-3',\n MACOSX_2: 'mac-os-x-2',\n MACOSX: 'mac-os-x',\n iOS: 'iOS',\n ANDROID_9: 'android-9',\n UNKNOWN: GENERAL.UKNOWN.toLowerCase(),\n}\n \n \n\n\n \n \n \n \n \n \n \n \n OS_VERSIONS_RE\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Default value : Object.keys(OS_VERSIONS_RE_MAP).reduce((obj, key: string) => {\n obj[key] = OS_VERSIONS_RE_MAP[key];\n return obj;\n}, {})\n \n \n\n\n \n \n \n \n \n \n \n \n OS_VERSIONS_RE_MAP\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Default value : {\n WINDOWS_3_11: /Win16/,\n WINDOWS_95: /(Windows 95|Win95|Windows_95)/,\n WINDOWS_ME: /(Win 9x 4.90|Windows ME)/,\n WINDOWS_98: /(Windows 98|Win98)/,\n WINDOWS_CE: /Windows CE/,\n WINDOWS_2000: /(Windows NT 5.0|Windows 2000)/,\n WINDOWS_XP: /(Windows NT 5.1|Windows XP)/,\n WINDOWS_SERVER_2003: /Windows NT 5.2/,\n WINDOWS_VISTA: /Windows NT 6.0/,\n WINDOWS_7: /(Windows 7|Windows NT 6.1)/,\n WINDOWS_8_1: /(Windows 8.1|Windows NT 6.3)/,\n WINDOWS_8: /(Windows 8|Windows NT 6.2)/,\n WINDOWS_10: /(Windows NT 10.0)/,\n WINDOWS_PHONE_7_5: /(Windows Phone OS 7.5)/,\n WINDOWS_PHONE_8_1: /(Windows Phone 8.1)/,\n WINDOWS_PHONE_10: /(Windows Phone 10)/,\n WINDOWS_NT_4_0: {\n and: [/(Windows NT 4.0|WinNT4.0|WinNT|Windows NT)/, { not: /Windows NT 10.0/ }],\n },\n MACOSX: /(MAC OS X\\s*[^ 0-9])/,\n MACOSX_3: /(Darwin 10.3|Mac OS X 10.3)/,\n MACOSX_4: /(Darwin 10.4|Mac OS X 10.4)/,\n MACOSX_5: /(Mac OS X 10.5)/,\n MACOSX_6: /(Mac OS X 10.6)/,\n MACOSX_7: /(Mac OS X 10.7)/,\n MACOSX_8: /(Mac OS X 10.8)/,\n MACOSX_9: /(Mac OS X 10.9)/,\n MACOSX_10: /(Mac OS X 10.10)/,\n MACOSX_11: /(Mac OS X 10.11)/,\n MACOSX_12: /(Mac OS X 10.12)/,\n MACOSX_13: /(Mac OS X 10.13)/,\n MACOSX_14: /(Mac OS X 10.14)/,\n MACOSX_15: /(Mac OS X 10.15)/,\n MACOSX_16: /(Mac OS X 10.16)/,\n MACOSX_11_0: {\n or: [/11_0 like Mac OS X/, /Mac OS X 11/],\n },\n iOS: /(iPhone OS\\s*[0-9_]+)/,\n ANDROID_9: /(Android 9)/,\n}\n \n \n\n\n \n \n \n \n \n \n \n \n TABLETS_RE\n \n \n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n iPad: /iPad|iPad.*Mobile/,\n NexusTablet: /Android.*Nexus[\\s]+(7|9|10)/,\n GoogleTablet: /Android.*Pixel C/,\n SamsungTablet: new RegExp(`SAMSUNG.*Tablet|Galaxy.*Tab|SC-01C|GT-P1000|GT-P1003|GT-P1010|GT-P3105|GT-P6210|\n GT-P6800|GT-P6810|GT-P7100|GT-P7300|GT-P7310|GT-P7500|GT-P7510|SCH-I800|SCH-I815|SCH-I905|\n SGH-I957|SGH-I987|SGH-T849|SGH-T859|SGH-T869|SPH-P100|GT-P3100|GT-P3108|GT-P3110|GT-P5100|\n GT-P5110|GT-P6200|GT-P7320|GT-P7511|GT-N8000|GT-P8510|SGH-I497|SPH-P500|SGH-T779|SCH-I705|\n SCH-I915|GT-N8013|GT-P3113|GT-P5113|GT-P8110|GT-N8010|GT-N8005|GT-N8020|GT-P1013|GT-P6201|\n GT-P7501|GT-N5100|GT-N5105|GT-N5110|SHV-E140K|SHV-E140L|SHV-E140S|SHV-E150S|SHV-E230K|SHV-E230L|\n SHV-E230S|SHW-M180K|SHW-M180L|SM-T865|SM-T290|SHW-M180S|SHW-M180W|SHW-M300W|SHW-M305W|SHW-M380K|SHW-M380S|SHW-M380W|\n SHW-M430W|SHW-M480K|SHW-M480S|SHW-M480W|SHW-M485W|SHW-M486W|SHW-M500W|GT-I9228|SCH-P739|SCH-I925|\n GT-I9200|GT-P5200|GT-P5210|GT-P5210X|SM-T385M|SM-P585M|SM-T311|SM-T310|SM-T310X|SM-T210|SM-T210R|SM-T211|SM-P600|\n SM-P601|SM-P605|SM-P615|SM-P900|SM-P901|SM-T217|SM-T217A|SM-T217S|SM-P6000|SM-T3100|SGH-I467|XE500|SM-T110|\n GT-P5220|GT-I9200X|GT-N5110X|GT-N5120|SM-P905|SM-T111|SM-T2105|SM-T315|SM-T320|SM-T320X|SM-T321|\n SM-T510|SM-T520|SM-T525|SM-T530NU|SM-T230NU|SM-T330NU|SM-T900|XE500T1C|SM-P605V|SM-P905V|SM-T337V|SM-T537V|\n SM-T707V|SM-T807V|SM-P600X|SM-P900X|SM-T210X|SM-T230|SM-T230X|SM-T325|GT-P7503|SM-T531|SM-T500|SM-T330|\n SM-T530|SM-T705|SM-T705C|SM-T535|SM-T331|SM-T800|SM-T700|SM-T537|SM-T807|SM-P907A|SM-T337A|SM-T537A|\n SM-T707A|SM-T807A|SM-T237|SM-T807P|SM-P607T|SM-T217T|SM-T337T|SM-T807T|SM-T116NQ|SM-T116BU|SM-P550|\n SM-T350|SM-T550|SM-T9000|SM-P9000|SM-T705Y|SM-T805|GT-P3113|SM-T710|SM-T810|SM-T815|SM-T360|SM-T533|\n SM-T113|SM-T335|SM-T715|SM-T560|SM-T670|SM-T677|SM-T377|SM-T567|SM-T357T|SM-T555|SM-T561|SM-T713|\n SM-T719|SM-T725|SM-T813|SM-T819|SM-T580|SM-T590|SM-T355Y?|SM-T280|SM-T817A|SM-T820|SM-W700|SM-P580|SM-T587|SM-P350|\n SM-P555M|SM-P355M|SM-T113NU|SM-T815Y|SM-T585|SM-T285|SM-T825|SM-W708|SM-T835|SM-P585Y|SM-X200`),\n Kindle: new RegExp(`Kindle|Silk.*Accelerated|Android.*\\\\b(KFOT|KFTT|KFJWI|KFJWA|KFOTE|KFSOWI|KFTHWI|KFTHWA|KFAPWI|\n KFAPWA|WFJWAE|KFSAWA|KFSAWI|KFASWI|KFARWI|KFFOWI|KFGIWI|KFMEWI)\\\\b|Android.*Silk\\/[0-9.]+ like Chrome\\\n /[0-9.]+ (?!Mobile)`),\n SurfaceTablet: /Windows NT [0-9.]+; ARM;.*(Tablet|ARMBJS)/,\n HPTablet: /HP Slate (7|8|10)|HP ElitePad 900|hp-tablet|EliteBook.*Touch|HP 8|Slate 21|HP SlateBook 10/,\n AsusTablet: new RegExp(`^.*PadFone((?!Mobile).)*$|Transformer|TF101|TF101G|TF300T|TF300TG|TF300TL|TF700T|TF700KL|\n TF701T|TF810C|ME171|ME301T|ME302C|ME371MG|ME370T|ME372MG|ME172V|ME173X|ME400C|\n Slider SL101|\\\\bK00F\\\\b|\\\\bK00C\\\\b|\\\\bK00E\\\\b|\\\\bK00L\\\\b|TX201LA|ME176C|ME102A|\\\\bM80TA\\\\b|ME372CL|\n ME560CG|ME372CG|ME302KL| K010 | K011 | K017 | K01E |ME572C|ME103K|ME170C|ME171C|\\\\bME70C\\\\b|ME581C|\n ME581CL|ME8510C|ME181C|P01Y|PO1MA|P01Z|\\\\bP027\\\\b|\\\\bP024\\\\b|\\\\bP00C\\\\b`),\n BlackBerryTablet: /PlayBook|RIM Tablet/,\n HTCtablet: /HTC_Flyer_P512|HTC Flyer|HTC Jetstream|HTC-P715a|HTC EVO View 4G|PG41200|PG09410/,\n MotorolaTablet: /xoom|sholest|MZ615|MZ605|MZ505|MZ601|MZ602|MZ603|MZ604|MZ606|MZ607|MZ608|MZ609|MZ615|MZ616|MZ617/,\n NookTablet: /Android.*Nook|NookColor|nook browser|BNRV200|BNRV200A|BNTV250|BNTV250A|BNTV400|BNTV600|LogicPD Zoom2/,\n AcerTablet: new RegExp(`Android.*; \\\\b(A100|A101|A110|A200|A210|A211|A500|A501|A510|A511|A700|A701|W500|W500P|W501|\n W501P|W510|W511|W700|G100|G100W|B1-A71|B1-710|B1-711|A1-810|A1-811|A1-830)\\\\b|W3-810|\\\\bA3-A10\\\\b|\\\\bA3-A11\\\\b|\n \\\\bA3-A20\\\\b|\\\\bA3-A30`),\n ToshibaTablet:\n /Android.*(AT100|AT105|AT200|AT205|AT270|AT275|AT300|AT305|AT1S5|AT500|AT570|AT700|AT830)|TOSHIBA.*FOLIO/,\n LGTablet: /\\bL-06C|LG-V909|LG-V900|LG-V700|LG-V510|LG-V500|LG-V410|LG-V400|LG-VK810\\b/,\n FujitsuTablet: /Android.*\\b(F-01D|F-02F|F-05E|F-10D|M532|Q572)\\b/,\n PrestigioTablet: new RegExp(`PMP3170B|PMP3270B|PMP3470B|PMP7170B|PMP3370B|PMP3570C|PMP5870C|PMP3670B|PMP5570C|\n PMP5770D|PMP3970B|PMP3870C|PMP5580C|PMP5880D|PMP5780D|PMP5588C|PMP7280C|PMP7280C3G|PMP7280|PMP7880D|\n PMP5597D|PMP5597|PMP7100D|PER3464|PER3274|PER3574|PER3884|PER5274|PER5474|PMP5097CPRO|PMP5097|PMP7380D|\n PMP5297C|PMP5297C_QUAD|PMP812E|PMP812E3G|PMP812F|PMP810E|PMP880TD|PMT3017|PMT3037|PMT3047|PMT3057|PMT7008|\n PMT5887|PMT5001|PMT5002`),\n LenovoTablet: new RegExp(`Lenovo TAB|Idea(Tab|Pad)( A1|A10| K1|)|ThinkPad([ ]+)?Tablet|YT3-850M|YT3-X90L|YT3-X90F|\n YT3-X90X|Lenovo.*(S2109|S2110|S5000|S6000|K3011|A3000|A3500|A1000|A2107|A2109|A1107|A5500|A7600|B6000|\n B8000|B8080)(-|)(FL|F|HV|H|)|TB-X606F|TB-X103F|TB-X304F|TB-X304L|TB-X704F|TB-8703F|Tab2A7-10F|TB2-X30L|TB-8504F`),\n DellTablet: /Venue 11|Venue 8|Venue 7|Dell Streak 10|Dell Streak 7/,\n YarvikTablet: new RegExp(`Android.*\\\\b(TAB210|TAB211|TAB224|TAB250|TAB260|TAB264|TAB310|TAB360|TAB364|TAB410|TAB411|\n TAB420|TAB424|TAB450|TAB460|TAB461|TAB464|TAB465|TAB467|TAB468|TAB07-100|TAB07-101|TAB07-150|TAB07-151|\n TAB07-152|TAB07-200|TAB07-201-3G|TAB07-210|TAB07-211|TAB07-212|TAB07-214|TAB07-220|TAB07-400|TAB07-485|\n TAB08-150|TAB08-200|TAB08-201-3G|TAB08-201-30|TAB09-100|TAB09-211|TAB09-410|TAB10-150|TAB10-201|TAB10-211|\n TAB10-400|TAB10-410|TAB13-201|TAB274EUK|TAB275EUK|TAB374EUK|TAB462EUK|TAB474EUK|TAB9-200)\\\\b`),\n MedionTablet: /Android.*\\bOYO\\b|LIFE.*(P9212|P9514|P9516|S9512)|LIFETAB/,\n ArnovaTablet:\n /97G4|AN10G2|AN7bG3|AN7fG3|AN8G3|AN8cG3|AN7G3|AN9G3|AN7dG3|AN7dG3ST|AN7dG3ChildPad|AN10bG3|AN10bG3DT|AN9G2/,\n IntensoTablet: /INM8002KP|INM1010FP|INM805ND|Intenso Tab|TAB1004/,\n IRUTablet: /M702pro/,\n MegafonTablet: /MegaFon V9|\\bZTE V9\\b|Android.*\\bMT7A\\b/,\n EbodaTablet: /E-Boda (Supreme|Impresspeed|Izzycomm|Essential)/,\n AllViewTablet: /Allview.*(Viva|Alldro|City|Speed|All TV|Frenzy|Quasar|Shine|TX1|AX1|AX2)/,\n ArchosTablet:\n new RegExp(`\\\\b(101G9|80G9|A101IT)\\\\b|Qilive 97R|Archos5|\\\\bARCHOS (70|79|80|90|97|101|FAMILYPAD|)(b|c|)(G10|\n Cobalt| TITANIUM(HD|)| Xenon| Neon|XSK| 2| XS 2| PLATINUM| CARBON|GAMEPAD)\\\\b`),\n AinolTablet: /NOVO7|NOVO8|NOVO10|Novo7Aurora|Novo7Basic|NOVO7PALADIN|novo9-Spark/,\n NokiaLumiaTablet: /Lumia 2520/,\n SonyTablet: new RegExp(`Sony.*Tablet|Xperia Tablet|Sony Tablet S|SO-03E|SGPT12|SGPT13|SGPT114|SGPT121|SGPT122|SGPT123|\n SGPT111|SGPT112|SGPT113|SGPT131|SGPT132|SGPT133|SGPT211|SGPT212|SGPT213|SGP311|SGP312|SGP321|EBRD1101|\n EBRD1102|EBRD1201|SGP351|SGP341|SGP511|SGP512|SGP521|SGP541|SGP551|SGP621|SGP641|SGP612|SOT31|SGP771|SGP611|\n SGP612|SGP712`),\n PhilipsTablet: /\\b(PI2010|PI3000|PI3100|PI3105|PI3110|PI3205|PI3210|PI3900|PI4010|PI7000|PI7100)\\b/,\n CubeTablet: /Android.*(K8GT|U9GT|U10GT|U16GT|U17GT|U18GT|U19GT|U20GT|U23GT|U30GT)|CUBE U8GT/,\n CobyTablet:\n new RegExp(`MID1042|MID1045|MID1125|MID1126|MID7012|MID7014|MID7015|MID7034|MID7035|MID7036|MID7042|MID7048|\n MID7127|MID8042|MID8048|MID8127|MID9042|MID9740|MID9742|MID7022|MID7010`),\n MIDTablet: new RegExp(`M9701|M9000|M9100|M806|M1052|M806|T703|MID701|MID713|MID710|MID727|MID760|MID830|MID728|MID933|\n MID125|MID810|MID732|MID120|MID930|MID800|MID731|MID900|MID100|MID820|MID735|MID980|MID130|MID833|MID737|\n MID960|MID135|MID860|MID736|MID140|MID930|MID835|MID733|MID4X10`),\n MSITablet: new RegExp(`MSI \\\\b(Primo 73K|Primo 73L|Primo 81L|Primo 77|Primo 93|Primo 75|Primo 76|Primo 73|Primo 81|\n Primo 91|Primo 90|Enjoy 71|Enjoy 7|Enjoy 10)\\\\b`),\n SMiTTablet: /Android.*(\\bMID\\b|MID-560|MTV-T1200|MTV-PND531|MTV-P1101|MTV-PND530)/,\n RockChipTablet: /Android.*(RK2818|RK2808A|RK2918|RK3066)|RK2738|RK2808A/,\n FlyTablet: /IQ310|Fly Vision/,\n bqTablet: new RegExp(`Android.*(bq)?.*(Elcano|Curie|Edison|Maxwell|Kepler|Pascal|Tesla|Hypatia|Platon|Newton|\n Livingstone|Cervantes|Avant|Aquaris ([E|M]10|M8))|Maxwell.*Lite|Maxwell.*Plus`),\n HuaweiTablet:\n new RegExp(`MediaPad|MediaPad 7 Youth|MediaPad T3 10|IDEOS S7|S7-201c|S7-202u|S7-101|S7-103|S7-104|S7-105|S7-106|\n S7-201|S7-Slim|M2-A01L|BAH-L09|BAH-W09|AGS-W09`),\n NecTablet: /\\bN-06D|\\bN-08D/,\n PantechTablet: /Pantech.*P4100/,\n BronchoTablet: /Broncho.*(N701|N708|N802|a710)/,\n VersusTablet: /TOUCHPAD.*[78910]|\\bTOUCHTAB\\b/,\n ZyncTablet: /z1000|Z99 2G|z99|z930|z999|z990|z909|Z919|z900/,\n PositivoTablet: /TB07STA|TB10STA|TB07FTA|TB10FTA/,\n NabiTablet: /Android.*\\bNabi/,\n KoboTablet: /Kobo Touch|\\bK080\\b|\\bVox\\b Build|\\bArc\\b Build/,\n DanewTablet: /DSlide.*\\b(700|701R|702|703R|704|802|970|971|972|973|974|1010|1012)\\b/,\n TexetTablet: new RegExp(`NaviPad|TB-772A|TM-7045|TM-7055|TM-9750|TM-7016|TM-7024|TM-7026|TM-7041|TM-7043|TM-7047|\n TM-8041|TM-9741|TM-9747|TM-9748|TM-9751|TM-7022|TM-7021|TM-7020|TM-7011|TM-7010|TM-7023|TM-7025|\n TM-7037W|TM-7038W|TM-7027W|TM-9720|TM-9725|TM-9737W|TM-1020|TM-9738W|TM-9740|TM-9743W|TB-807A|TB-771A|\n TB-727A|TB-725A|TB-719A|TB-823A|TB-805A|TB-723A|TB-715A|TB-707A|TB-705A|TB-709A|TB-711A|TB-890HD|\n TB-880HD|TB-790HD|TB-780HD|TB-770HD|TB-721HD|TB-710HD|TB-434HD|TB-860HD|TB-840HD|TB-760HD|TB-750HD|\n TB-740HD|TB-730HD|TB-722HD|TB-720HD|TB-700HD|TB-500HD|TB-470HD|TB-431HD|TB-430HD|TB-506|TB-504|TB-446|\n TB-436|TB-416|TB-146SE|TB-126SE`),\n PlaystationTablet: /Playstation.*(Portable|Vita)/,\n TrekstorTablet:\n /ST10416-1|VT10416-1|ST70408-1|ST702xx-1|ST702xx-2|ST80208|ST97216|ST70104-2|VT10416-2|ST10216-2A|SurfTab/,\n PyleAudioTablet:\n /\\b(PTBL10CEU|PTBL10C|PTBL72BC|PTBL72BCEU|PTBL7CEU|PTBL7C|PTBL92BC|PTBL92BCEU|PTBL9CEU|PTBL9CUK|PTBL9C)\\b/,\n AdvanTablet: new RegExp(`Android.* \\\\b(E3A|T3X|T5C|T5B|T3E|T3C|T3B|T1J|T1F|T2A|T1H|T1i|E1C|T1-E|T5-A|T4|E1-B|T2Ci|\n T1-B|T1-D|O1-A|E1-A|T1-A|T3A|T4i)\\\\b`),\n DanyTechTablet: `Genius Tab G3|Genius Tab S2|Genius Tab Q3|Genius Tab G4|Genius Tab Q4|Genius Tab G-II|\n Genius TAB GII|Genius TAB GIII|Genius Tab S1`,\n GalapadTablet: /Android.*\\bG1\\b(?!\\))/,\n MicromaxTablet: /Funbook|Micromax.*\\b(P250|P560|P360|P362|P600|P300|P350|P500|P275)\\b/,\n KarbonnTablet: /Android.*\\b(A39|A37|A34|ST8|ST10|ST7|Smart Tab3|Smart Tab2)\\b/,\n AllFineTablet: /Fine7 Genius|Fine7 Shine|Fine7 Air|Fine8 Style|Fine9 More|Fine10 Joy|Fine11 Wide/,\n PROSCANTablet: new RegExp(`\\\\b(PEM63|PLT1023G|PLT1041|PLT1044|PLT1044G|PLT1091|PLT4311|PLT4311PL|PLT4315|PLT7030|\n PLT7033|PLT7033D|PLT7035|PLT7035D|PLT7044K|PLT7045K|PLT7045KB|PLT7071KG|PLT7072|PLT7223G|PLT7225G|\n PLT7777G|PLT7810K|PLT7849G|PLT7851G|PLT7852G|PLT8015|PLT8031|PLT8034|PLT8036|PLT8080K|PLT8082|PLT8088|\n PLT8223G|PLT8234G|PLT8235G|PLT8816K|PLT9011|PLT9045K|PLT9233G|PLT9735|PLT9760G|PLT9770G)\\\\b`),\n YONESTablet: /BQ1078|BC1003|BC1077|RK9702|BC9730|BC9001|IT9001|BC7008|BC7010|BC708|BC728|BC7012|BC7030|BC7027|BC7026/,\n ChangJiaTablet: new RegExp(`TPC7102|TPC7103|TPC7105|TPC7106|TPC7107|TPC7201|TPC7203|TPC7205|TPC7210|TPC7708|TPC7709|\n TPC7712|TPC7110|TPC8101|TPC8103|TPC8105|TPC8106|TPC8203|TPC8205|TPC8503|TPC9106|TPC9701|TPC97101|TPC97103|\n TPC97105|TPC97106|TPC97111|TPC97113|TPC97203|TPC97603|TPC97809|TPC97205|TPC10101|TPC10103|TPC10106|\n TPC10111|TPC10203|TPC10205|TPC10503`),\n GUTablet: /TX-A1301|TX-M9002|Q702|kf026/,\n PointOfViewTablet: new RegExp(`TAB-P506|TAB-navi-7-3G-M|TAB-P517|TAB-P-527|TAB-P701|TAB-P703|TAB-P721|TAB-P731N|\n TAB-P741|TAB-P825|TAB-P905|TAB-P925|TAB-PR945|TAB-PL1015|TAB-P1025|TAB-PI1045|TAB-P1325|TAB-PROTAB[0-9]+|\n TAB-PROTAB25|TAB-PROTAB26|TAB-PROTAB27|TAB-PROTAB26XL|TAB-PROTAB2-IPS9|TAB-PROTAB30-IPS9|TAB-PROTAB25XXL|\n TAB-PROTAB26-IPS10|TAB-PROTAB30-IPS10`),\n OvermaxTablet:\n new RegExp(`OV-(SteelCore|NewBase|Basecore|Baseone|Exellen|Quattor|EduTab|Solution|ACTION|BasicTab|TeddyTab|\n MagicTab|Stream|TB-08|TB-09)|Qualcore 1027`),\n HCLTablet:\n /HCL.*Tablet|Connect-3G-2.0|Connect-2G-2.0|ME Tablet U1|ME Tablet U2|ME Tablet G1|ME Tablet X1|ME Tablet Y2|ME Tablet Sync/,\n DPSTablet: /DPS Dream 9|DPS Dual 7/,\n VistureTablet: /V97 HD|i75 3G|Visture V4( HD)?|Visture V5( HD)?|Visture V10/,\n CrestaTablet:\n /CTP(-)?810|CTP(-)?818|CTP(-)?828|CTP(-)?838|CTP(-)?888|CTP(-)?978|CTP(-)?980|CTP(-)?987|CTP(-)?988|CTP(-)?989/,\n MediatekTablet: /\\bMT8125|MT8389|MT8135|MT8377\\b/,\n ConcordeTablet: /Concorde([ ]+)?Tab|ConCorde ReadMan/,\n GoCleverTablet:\n new RegExp(`GOCLEVER TAB|A7GOCLEVER|M1042|M7841|M742|R1042BK|R1041|TAB A975|TAB A7842|TAB A741|TAB A741L|TAB M723G|\n TAB M721|TAB A1021|TAB I921|TAB R721|TAB I720|TAB T76|TAB R70|TAB R76.2|TAB R106|TAB R83.2|TAB M813G|TAB I721|\n GCTA722|TAB I70|TAB I71|TAB S73|TAB R73|TAB R74|TAB R93|TAB R75|TAB R76.1|TAB A73|TAB A93|TAB A93.2|TAB T72|\n TAB R83|TAB R974|TAB R973|TAB A101|TAB A103|TAB A104|TAB A104.2|R105BK|M713G|A972BK|TAB A971|TAB R974.2|\n TAB R104|TAB R83.3|TAB A1042`),\n ModecomTablet: new RegExp(`FreeTAB 9000|FreeTAB 7.4|FreeTAB 7004|FreeTAB 7800|FreeTAB 2096|FreeTAB 7.5|FreeTAB 1014|\n FreeTAB 1001 |FreeTAB 8001|FreeTAB 9706|FreeTAB 9702|FreeTAB 7003|FreeTAB 7002|FreeTAB 1002|FreeTAB 7801|\n FreeTAB 1331|FreeTAB 1004|FreeTAB 8002|FreeTAB 8014|FreeTAB 9704|FreeTAB 1003`),\n VoninoTablet: new RegExp(`\\\\b(Argus[ _]?S|Diamond[ _]?79HD|Emerald[ _]?78E|Luna[ _]?70C|Onyx[ _]?S|Onyx[ _]?Z|\n Orin[ _]?HD|Orin[ _]?S|Otis[ _]?S|SpeedStar[ _]?S|Magnet[ _]?M9|Primus[ _]?94[ _]?3G|Primus[ _]?94HD|\n Primus[ _]?QS|Android.*\\\\bQ8\\\\b|Sirius[ _]?EVO[ _]?QS|Sirius[ _]?QS|Spirit[ _]?S)\\\\b`),\n ECSTablet: /V07OT2|TM105A|S10OT1|TR10CS1/,\n StorexTablet: /eZee[_']?(Tab|Go)[0-9]+|TabLC7|Looney Tunes Tab/,\n VodafoneTablet: /SmartTab([ ]+)?[0-9]+|SmartTabII10|SmartTabII7|VF-1497/,\n EssentielBTablet: /Smart[ ']?TAB[ ]+?[0-9]+|Family[ ']?TAB2/,\n RossMoorTablet: /RM-790|RM-997|RMD-878G|RMD-974R|RMT-705A|RMT-701|RME-601|RMT-501|RMT-711/,\n iMobileTablet: /i-mobile i-note/,\n TolinoTablet: /tolino tab [0-9.]+|tolino shine/,\n AudioSonicTablet: /\\bC-22Q|T7-QC|T-17B|T-17P\\b/,\n AMPETablet: /Android.* A78 /,\n SkkTablet: /Android.* (SKYPAD|PHOENIX|CYCLOPS)/,\n TecnoTablet: /TECNO P9|TECNO DP8D/,\n JXDTablet:\n new RegExp(`Android.* \\\\b(F3000|A3300|JXD5000|JXD3000|JXD2000|JXD300B|JXD300|S5800|S7800|S602b|S5110b|S7300|\n S5300|S602|S603|S5100|S5110|S601|S7100a|P3000F|P3000s|P101|P200s|P1000m|P200m|P9100|P1000s|S6600b|S908|\n P1000|P300|S18|S6600|S9100)\\\\b`),\n iJoyTablet: new RegExp(`Tablet (Spirit 7|Essentia|Galatea|Fusion|Onix 7|Landa|Titan|Scooby|Deox|Stella|Themis|Argon|\n Unique 7|Sygnus|Hexen|Finity 7|Cream|Cream X2|Jade|Neon 7|Neron 7|Kandy|Scape|Saphyr 7|Rebel|Biox|Rebel|\n Rebel 8GB|Myst|Draco 7|Myst|Tab7-004|Myst|Tadeo Jones|Tablet Boing|Arrow|Draco Dual Cam|Aurix|Mint|Amity|\n Revolution|Finity 9|Neon 9|T9w|Amity 4GB Dual Cam|Stone 4GB|Stone 8GB|Andromeda|Silken|X2|Andromeda II|\n Halley|Flame|Saphyr 9,7|Touch 8|Planet|Triton|Unique 10|Hexen 10|Memphis 4GB|Memphis 8GB|Onix 10)`),\n FX2Tablet: /FX2 PAD7|FX2 PAD10/,\n XoroTablet: new RegExp(`KidsPAD 701|PAD[ ]?712|PAD[ ]?714|PAD[ ]?716|PAD[ ]?717|PAD[ ]?718|PAD[ ]?720|PAD[ ]?721|\n PAD[ ]?722|PAD[ ]?790|PAD[ ]?792|PAD[ ]?900|PAD[ ]?9715D|PAD[ ]?9716DR|PAD[ ]?9718DR|PAD[ ]?9719QR|\n PAD[ ]?9720QR|TelePAD1030|Telepad1032|TelePAD730|TelePAD731|TelePAD732|TelePAD735Q|TelePAD830|TelePAD9730|\n TelePAD795|MegaPAD 1331|MegaPAD 1851|MegaPAD 2151`),\n ViewsonicTablet:\n /ViewPad 10pi|ViewPad 10e|ViewPad 10s|ViewPad E72|ViewPad7|ViewPad E100|ViewPad 7e|ViewSonic VB733|VB100a/,\n VerizonTablet: /QTAQZ3|QTAIR7|QTAQTZ3|QTASUN1|QTASUN2|QTAXIA1/,\n OdysTablet:\n /LOOX|XENO10|ODYS[ -](Space|EVO|Xpress|NOON)|\\bXELIO\\b|Xelio10Pro|XELIO7PHONETAB|XELIO10EXTREME|XELIOPT2|NEO_QUAD10/,\n CaptivaTablet: /CAPTIVA PAD/,\n IconbitTablet: new RegExp(`NetTAB|NT-3702|NT-3702S|NT-3702S|NT-3603P|NT-3603P|NT-0704S|NT-0704S|NT-3805C|NT-3805C|\n NT-0806C|NT-0806C|NT-0909T|NT-0909T|NT-0907S|NT-0907S|NT-0902S|NT-0902S`),\n TeclastTablet: new RegExp(`T98 4G|\\\\bP80\\\\b|\\\\bX90HD\\\\b|X98 Air|X98 Air 3G|\\\\bX89\\\\b|P80 3G|\\\\bX80h\\\\b|P98 Air|\n \\\\bX89HD\\\\b|P98 3G|\\\\bP90HD\\\\b|P89 3G|X98 3G|\\\\bP70h\\\\b|P79HD 3G|G18d 3G|\\\\bP79HD\\\\b|\\\\bP89s\\\\b|\\\\bA88\\\\b|\n \\\\bP10HD\\\\b|\\\\bP19HD\\\\b|G18 3G|\\\\bP78HD\\\\b|\\\\bA78\\\\b|\\\\bP75\\\\b|G17s 3G|G17h 3G|\\\\bP85t\\\\b|\\\\bP90\\\\b|\n \\\\bP11\\\\b|\\\\bP98t\\\\b|\\\\bP98HD\\\\b|\\\\bG18d\\\\b|\\\\bP85s\\\\b|\\\\bP11HD\\\\b|\\\\bP88s\\\\b|\\\\bA80HD\\\\b|\\\\bA80se\\\\b|\n \\\\bA10h\\\\b|\\\\bP89\\\\b|\\\\bP78s\\\\b|\\\\bG18\\\\b|\\\\bP85\\\\b|\\\\bA70h\\\\b|\\\\bA70\\\\b|\\\\bG17\\\\b|\\\\bP18\\\\b|\\\\bA80s\\\\b|\n \\\\bA11s\\\\b|\\\\bP88HD\\\\b|\\\\bA80h\\\\b|\\\\bP76s\\\\b|\\\\bP76h\\\\b|\\\\bP98\\\\b|\\\\bA10HD\\\\b|\\\\bP78\\\\b|\\\\bP88\\\\b|\\\\bA11\\\\b|\n \\\\bA10t\\\\b|\\\\bP76a\\\\b|\\\\bP76t\\\\b|\\\\bP76e\\\\b|\\\\bP85HD\\\\b|\\\\bP85a\\\\b|\\\\bP86\\\\b|\\\\bP75HD\\\\b|\\\\bP76v\\\\b|\\\\bA12\\\\b|\n \\\\bP75a\\\\b|\\\\bA15\\\\b|\\\\bP76Ti\\\\b|\\\\bP81HD\\\\b|\\\\bA10\\\\b|\\\\bT760VE\\\\b|\\\\bT720HD\\\\b|\\\\bP76\\\\b|\\\\bP73\\\\b|\\\\bP71\\\\b|\n \\\\bP72\\\\b|\\\\bT720SE\\\\b|\\\\bC520Ti\\\\b|\\\\bT760\\\\b|\\\\bT720VE\\\\b|T720-3GE|T720-WiFi`),\n OndaTablet: new RegExp(`\\\\b(V975i|Vi30|VX530|V701|Vi60|V701s|Vi50|V801s|V719|Vx610w|VX610W|V819i|Vi10|VX580W|Vi10|\n V711s|V813|V811|V820w|V820|Vi20|V711|VI30W|V712|V891w|V972|V819w|V820w|Vi60|V820w|V711|V813s|V801|V819|\n V975s|V801|V819|V819|V818|V811|V712|V975m|V101w|V961w|V812|V818|V971|V971s|V919|V989|V116w|V102w|V973|\n Vi40)\\\\b[\\s]+|V10 \\\\b4G\\\\b`),\n JaytechTablet: /TPC-PA762/,\n BlaupunktTablet: /Endeavour 800NG|Endeavour 1010/,\n DigmaTablet: /\\b(iDx10|iDx9|iDx8|iDx7|iDxD7|iDxD8|iDsQ8|iDsQ7|iDsQ8|iDsD10|iDnD7|3TS804H|iDsQ11|iDj7|iDs10)\\b/,\n EvolioTablet: /ARIA_Mini_wifi|Aria[ _]Mini|Evolio X10|Evolio X7|Evolio X8|\\bEvotab\\b|\\bNeura\\b/,\n LavaTablet: /QPAD E704|\\bIvoryS\\b|E-TAB IVORY|\\bE-TAB\\b/,\n AocTablet: /MW0811|MW0812|MW0922|MTK8382|MW1031|MW0831|MW0821|MW0931|MW0712/,\n MpmanTablet: new RegExp(`MP11 OCTA|MP10 OCTA|MPQC1114|MPQC1004|MPQC994|MPQC974|MPQC973|MPQC804|MPQC784|MPQC780|\n \\\\bMPG7\\\\b|MPDCG75|MPDCG71|MPDC1006|MP101DC|MPDC9000|MPDC905|MPDC706HD|MPDC706|MPDC705|MPDC110|\n MPDC100|MPDC99|MPDC97|MPDC88|MPDC8|MPDC77|MP709|MID701|MID711|MID170|MPDC703|MPQC1010`),\n CelkonTablet: /CT695|CT888|CT[\\s]?910|CT7 Tab|CT9 Tab|CT3 Tab|CT2 Tab|CT1 Tab|C820|C720|\\bCT-1\\b/,\n WolderTablet: new RegExp(`miTab \\\\b(DIAMOND|SPACE|BROOKLYN|NEO|FLY|MANHATTAN|FUNK|EVOLUTION|SKY|GOCAR|IRON|GENIUS|\n POP|MINT|EPSILON|BROADWAY|JUMP|HOP|LEGEND|NEW AGE|LINE|ADVANCE|FEEL|FOLLOW|LIKE|LINK|LIVE|THINK|\n FREEDOM|CHICAGO|CLEVELAND|BALTIMORE-GH|IOWA|BOSTON|SEATTLE|PHOENIX|DALLAS|IN 101|MasterChef)\\\\b`),\n MediacomTablet: 'M-MPI10C3G|M-SP10EG|M-SP10EGP|M-SP10HXAH|M-SP7HXAH|M-SP10HXBH|M-SP8HXAH|M-SP8MXA',\n MiTablet: /\\bMI PAD\\b|\\bHM NOTE 1W\\b/,\n NibiruTablet: /Nibiru M1|Nibiru Jupiter One/,\n NexoTablet: /NEXO NOVA|NEXO 10|NEXO AVIO|NEXO FREE|NEXO GO|NEXO EVO|NEXO 3G|NEXO SMART|NEXO KIDDO|NEXO MOBI/,\n LeaderTablet: new RegExp(`TBLT10Q|TBLT10I|TBL-10WDKB|TBL-10WDKBO2013|TBL-W230V2|TBL-W450|TBL-W500|SV572|TBLT7I|\n TBA-AC7-8G|TBLT79|TBL-8W16|TBL-10W32|TBL-10WKB|TBL-W100`),\n UbislateTablet: /UbiSlate[\\s]?7C/,\n PocketBookTablet: /Pocketbook/,\n KocasoTablet: /\\b(TB-1207)\\b/,\n HisenseTablet: /\\b(F5281|E2371)\\b/,\n Hudl: /Hudl HT7S3|Hudl 2/,\n TelstraTablet: /T-Hub2/,\n Honeywell: /RT10A/,\n GenericTablet: new RegExp(`Android.*\\\\b97D\\\\b|Tablet(?!.*PC)|BNTV250A|MID-WCDMA|LogicPD Zoom2|\\\\bA7EB\\\\b|CatNova8|\n A1_07|CT704|CT1002|\\\\bM721\\\\b|rk30sdk|\\\\bEVOTAB\\\\b|M758A|ET904|ALUMIUM10|Smartfren Tab|Endeavour 1010|\n Tablet-PC-4|Tagi Tab|\\\\bM6pro\\\\b|CT1020W|arc 10HD|\\\\bTP750\\\\b|\\\\bQTAQZ3\\\\b|WVT101|TM1088|KT107`),\n}\n \n \n\n\n \n \n\n projects/ngx-device-detector/src/lib/device-detector.service.ts\n \n \n \n \n \n \n \n iPad\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : 'iPad'\n \n \n\n\n \n \n\n\n\n\n \n \n results matching \"\"\n \n \n \n No results matching \"\"\n \n\n"}} } diff --git a/docs/properties.html b/docs/properties.html index 4e3c192..4e933ed 100644 --- a/docs/properties.html +++ b/docs/properties.html @@ -52,7 +52,7 @@ </ol> <ul class="properties-list"> <li> - <b>Version</b> : 5.0.0</li> + <b>Version</b> : 5.0.1</li> <li> <b>Keywords</b> : angular, device, device detector, device detection, ngx-device-detector, angular device detector, angular5, angular6, angular7, angular8</li> <li> diff --git a/package-lock.json b/package-lock.json index 8ab83f5..2b1b383 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "ngx-device-detector-ws", - "version": "5.0.0", + "version": "5.0.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "ngx-device-detector-ws", - "version": "5.0.0", + "version": "5.0.1", "license": "MIT", "dependencies": { "@angular/animations": "~15.0.2", @@ -21,7 +21,7 @@ "@nguniversal/express-engine": "~15.0.0", "conventional-changelog-cli": "~2.2.2", "express": "~4.18.2", - "ngx-device-detector": "^5.0.0", + "ngx-device-detector": "^5.0.1", "rxjs": "~7.5.7", "tslib": "~2.4.1", "zone.js": "~0.12.0" @@ -17327,9 +17327,9 @@ } }, "node_modules/ngx-device-detector": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ngx-device-detector/-/ngx-device-detector-5.0.0.tgz", - "integrity": "sha512-HP37bxH18oVejBsfc8cdkGkJR0732KwrGQoSZYX36jJ4BNUl784XjoNAxfEOa68QZsttRPq4syClQbIRGAIAvA==", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ngx-device-detector/-/ngx-device-detector-5.0.1.tgz", + "integrity": "sha512-hVKaGzyXzy6zeliYyN7runz3eOOsh3tmZ8A6P5MSpHIjVjSx3pUJcobFTKNyHGn/zGS4JFWuhSSb7QmNwmqK9w==", "dependencies": { "tslib": "^2.0.0" }, @@ -36570,9 +36570,9 @@ } }, "ngx-device-detector": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ngx-device-detector/-/ngx-device-detector-5.0.0.tgz", - "integrity": "sha512-HP37bxH18oVejBsfc8cdkGkJR0732KwrGQoSZYX36jJ4BNUl784XjoNAxfEOa68QZsttRPq4syClQbIRGAIAvA==", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ngx-device-detector/-/ngx-device-detector-5.0.1.tgz", + "integrity": "sha512-hVKaGzyXzy6zeliYyN7runz3eOOsh3tmZ8A6P5MSpHIjVjSx3pUJcobFTKNyHGn/zGS4JFWuhSSb7QmNwmqK9w==", "requires": { "tslib": "^2.0.0" } diff --git a/package.json b/package.json index 0f711d8..91b58a5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ngx-device-detector-ws", - "version": "5.0.0", + "version": "5.0.1", "license": "MIT", "scripts": { "ng": "ng", @@ -91,7 +91,7 @@ "@nguniversal/express-engine": "~15.0.0", "conventional-changelog-cli": "~2.2.2", "express": "~4.18.2", - "ngx-device-detector": "^5.0.0", + "ngx-device-detector": "^5.0.1", "rxjs": "~7.5.7", "tslib": "~2.4.1", "zone.js": "~0.12.0" diff --git a/projects/ngx-device-detector/README.md b/projects/ngx-device-detector/README.md index 3296dfa..674cb91 100644 --- a/projects/ngx-device-detector/README.md +++ b/projects/ngx-device-detector/README.md @@ -1,6 +1,6 @@ -<div style="text-align: center; width: 100%"> +<p align="center"> <img src="https://raw.githubusercontent.com/KoderLabs/ngx-device-detector/master/assets/logo.svg" width="200"> -</div> +</p> <a href="https://koderlabs.github.io/ngx-device-detector"> diff --git a/projects/ngx-device-detector/package.json b/projects/ngx-device-detector/package.json index 43bcac8..9548a14 100644 --- a/projects/ngx-device-detector/package.json +++ b/projects/ngx-device-detector/package.json @@ -1,6 +1,6 @@ { "name": "ngx-device-detector", - "version": "5.0.0", + "version": "5.0.1", "license": "MIT", "repository": { "type": "git",