Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

libai / footseen-large-website

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • footseen-large-website
  • mTest
  • lib
  • fingerprint2.js
Find file
BlameHistoryPermalink
  • libai's avatar
    测试 · b10e4e1f
    libai committed 2 years ago
    b10e4e1f
fingerprint2.js 60.3 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372
(function (name, context, definition) {
    'use strict'
    if (typeof window.define === 'function' && window.define.amd) { window.define(definition) } else if (typeof module !== 'undefined' && module.exports) { module.exports = definition() } else if (context.exports) { context.exports = definition() } else { context[name] = definition() }
  })('Fingerprint2', this, function () {
    'use strict'
    /**
     * @constructor
     * @param {Object=} options
     */
    var Fingerprint2 = function (options) {
      if (!(this instanceof Fingerprint2)) {
        return new Fingerprint2(options)
      }
  
      var defaultOptions = {
        swfContainerId: 'fingerprintjs2',
        swfPath: 'flash/compiled/FontList.swf',
        detectScreenOrientation: true,
        sortPluginsFor: [/palemoon/i],
        userDefinedFonts: [],
        excludeDoNotTrack: true,
        excludePixelRatio: true
      }
      this.options = this.extend(options, defaultOptions)
      this.nativeForEach = Array.prototype.forEach
      this.nativeMap = Array.prototype.map
    }
    Fingerprint2.prototype = {
      extend: function (source, target) {
        if (source == null) { return target }
        for (var k in source) {
          if (source[k] != null && target[k] !== source[k]) {
            target[k] = source[k]
          }
        }
        return target
      },
      get: function (done) {
        var that = this
        var keys = {
          data: [],
          addPreprocessedComponent: function (pair) {
            var componentValue = pair.value
            if (typeof that.options.preprocessor === 'function') {
              componentValue = that.options.preprocessor(pair.key, componentValue)
            }
            keys.data.push({key: pair.key, value: componentValue})
          }
        }
        keys = this.userAgentKey(keys)
        keys = this.languageKey(keys)
        keys = this.colorDepthKey(keys)
        keys = this.deviceMemoryKey(keys)
        keys = this.pixelRatioKey(keys)
        keys = this.hardwareConcurrencyKey(keys)
        keys = this.screenResolutionKey(keys)
        keys = this.availableScreenResolutionKey(keys)
        keys = this.timezoneOffsetKey(keys)
        keys = this.sessionStorageKey(keys)
        keys = this.localStorageKey(keys)
        keys = this.indexedDbKey(keys)
        keys = this.addBehaviorKey(keys)
        keys = this.openDatabaseKey(keys)
        keys = this.cpuClassKey(keys)
        keys = this.platformKey(keys)
        keys = this.doNotTrackKey(keys)
        keys = this.pluginsKey(keys)
        keys = this.canvasKey(keys)
        keys = this.webglKey(keys)
        keys = this.webglVendorAndRendererKey(keys)
        keys = this.adBlockKey(keys)
        keys = this.hasLiedLanguagesKey(keys)
        keys = this.hasLiedResolutionKey(keys)
        keys = this.hasLiedOsKey(keys)
        keys = this.hasLiedBrowserKey(keys)
        keys = this.touchSupportKey(keys)
        keys = this.customEntropyFunction(keys)
        this.fontsKey(keys, function (keysWithFont) {
          that.audioKey(keysWithFont, function (newKeys) {
            var values = []
            that.each(newKeys.data, function (pair) {
              var value = pair.value
              if (value && typeof value.join === 'function') {
                values.push(value.join(';'))
              } else {
                values.push(value)
              }
            })
            var murmur = that.x64hash128(values.join('~~~'), 31)
            return done(murmur, newKeys.data)
          })
        })
      },
      // Inspired by and based on https://github.com/cozylife/audio-fingerprint
      audioKey: function (keys, done) {
        if (this.options.excludeAudioFP) {
          return done(keys)
        }
  
        var AudioContext = window.OfflineAudioContext || window.webkitOfflineAudioContext
        var context = new AudioContext(1, 44100, 44100)
  
        var oscillator = context.createOscillator()
        oscillator.type = 'triangle'
        oscillator.frequency.setValueAtTime(10000, context.currentTime)
  
        var compressor = context.createDynamicsCompressor()
        this.each([
          ['threshold', -50],
          ['knee', 40],
          ['ratio', 12],
          ['reduction', -20],
          ['attack', 0],
          ['release', 0.25]
        ], function (item) {
          if (compressor[item[0]] !== undefined && typeof compressor[item[0]].setValueAtTime === 'function') {
            compressor[item[0]].setValueAtTime(item[1], context.currentTime)
          }
        })
  
        context.oncomplete = function (event) {
          var fingerprint = event.renderedBuffer.getChannelData(0)
                       .slice(4500, 5000)
                       .reduce(function (acc, val) { return acc + Math.abs(val) }, 0)
                       .toString()
          oscillator.disconnect()
          compressor.disconnect()
  
          keys.addPreprocessedComponent({key: 'audio_fp', value: fingerprint})
          return done(keys)
        }
  
        oscillator.connect(compressor)
        compressor.connect(context.destination)
        oscillator.start(0)
        context.startRendering()
      },
      customEntropyFunction: function (keys) {
        if (typeof this.options.customFunction === 'function') {
          keys.addPreprocessedComponent({key: 'custom', value: this.options.customFunction()})
        }
        return keys
      },
      userAgentKey: function (keys) {
        if (!this.options.excludeUserAgent) {
          keys.addPreprocessedComponent({key: 'user_agent', value: this.getUserAgent()})
        }
        return keys
      },
      // for tests
      getUserAgent: function () {
        return navigator.userAgent
      },
      languageKey: function (keys) {
        if (!this.options.excludeLanguage) {
          // IE 9,10 on Windows 10 does not have the `navigator.language` property any longer
          keys.addPreprocessedComponent({ key: 'language', value: navigator.language || navigator.userLanguage || navigator.browserLanguage || navigator.systemLanguage || '' })
        }
        return keys
      },
      colorDepthKey: function (keys) {
        if (!this.options.excludeColorDepth) {
          keys.addPreprocessedComponent({key: 'color_depth', value: window.screen.colorDepth || -1})
        }
        return keys
      },
      deviceMemoryKey: function (keys) {
        if (!this.options.excludeDeviceMemory) {
          keys.addPreprocessedComponent({key: 'device_memory', value: this.getDeviceMemory()})
        }
        return keys
      },
      getDeviceMemory: function () {
        return navigator.deviceMemory || -1
      },
      pixelRatioKey: function (keys) {
        if (!this.options.excludePixelRatio) {
          keys.addPreprocessedComponent({key: 'pixel_ratio', value: this.getPixelRatio()})
        }
        return keys
      },
      getPixelRatio: function () {
        return window.devicePixelRatio || ''
      },
      screenResolutionKey: function (keys) {
        if (!this.options.excludeScreenResolution) {
          return this.getScreenResolution(keys)
        }
        return keys
      },
      getScreenResolution: function (keys) {
        var resolution
        if (this.options.detectScreenOrientation) {
          resolution = (window.screen.height > window.screen.width) ? [window.screen.height, window.screen.width] : [window.screen.width, window.screen.height]
        } else {
          resolution = [window.screen.width, window.screen.height]
        }
        keys.addPreprocessedComponent({key: 'resolution', value: resolution})
        return keys
      },
      availableScreenResolutionKey: function (keys) {
        if (!this.options.excludeAvailableScreenResolution) {
          return this.getAvailableScreenResolution(keys)
        }
        return keys
      },
      getAvailableScreenResolution: function (keys) {
        var available
        if (window.screen.availWidth && window.screen.availHeight) {
          if (this.options.detectScreenOrientation) {
            available = (window.screen.availHeight > window.screen.availWidth) ? [window.screen.availHeight, window.screen.availWidth] : [window.screen.availWidth, window.screen.availHeight]
          } else {
            available = [window.screen.availHeight, window.screen.availWidth]
          }
        }
        if (typeof available !== 'undefined') { // headless browsers
          keys.addPreprocessedComponent({key: 'available_resolution', value: available})
        }
        return keys
      },
      timezoneOffsetKey: function (keys) {
        if (!this.options.excludeTimezoneOffset) {
          keys.addPreprocessedComponent({key: 'timezone_offset', value: new Date().getTimezoneOffset()})
        }
        return keys
      },
      sessionStorageKey: function (keys) {
        if (!this.options.excludeSessionStorage && this.hasSessionStorage()) {
          keys.addPreprocessedComponent({key: 'session_storage', value: 1})
        }
        return keys
      },
      localStorageKey: function (keys) {
        if (!this.options.excludeSessionStorage && this.hasLocalStorage()) {
          keys.addPreprocessedComponent({key: 'local_storage', value: 1})
        }
        return keys
      },
      indexedDbKey: function (keys) {
        if (!this.options.excludeIndexedDB && this.hasIndexedDB()) {
          keys.addPreprocessedComponent({key: 'indexed_db', value: 1})
        }
        return keys
      },
      addBehaviorKey: function (keys) {
        // body might not be defined at this point or removed programmatically
        if (!this.options.excludeAddBehavior && document.body && document.body.addBehavior) {
          keys.addPreprocessedComponent({key: 'add_behavior', value: 1})
        }
        return keys
      },
      openDatabaseKey: function (keys) {
        if (!this.options.excludeOpenDatabase && window.openDatabase) {
          keys.addPreprocessedComponent({key: 'open_database', value: 1})
        }
        return keys
      },
      cpuClassKey: function (keys) {
        if (!this.options.excludeCpuClass) {
          keys.addPreprocessedComponent({key: 'cpu_class', value: this.getNavigatorCpuClass()})
        }
        return keys
      },
      platformKey: function (keys) {
        if (!this.options.excludePlatform) {
          keys.addPreprocessedComponent({key: 'navigator_platform', value: this.getNavigatorPlatform()})
        }
        return keys
      },
      doNotTrackKey: function (keys) {
        if (!this.options.excludeDoNotTrack) {
          keys.addPreprocessedComponent({key: 'do_not_track', value: this.getDoNotTrack()})
        }
        return keys
      },
      canvasKey: function (keys) {
        if (!this.options.excludeCanvas && this.isCanvasSupported()) {
          keys.addPreprocessedComponent({key: 'canvas', value: this.getCanvasFp()})
        }
        return keys
      },
      webglKey: function (keys) {
        if (!this.options.excludeWebGL && this.isWebGlSupported()) {
          keys.addPreprocessedComponent({key: 'webgl', value: this.getWebglFp()})
        }
        return keys
      },
      webglVendorAndRendererKey: function (keys) {
        if (!this.options.excludeWebGLVendorAndRenderer && this.isWebGlSupported()) {
          keys.addPreprocessedComponent({key: 'webgl_vendor', value: this.getWebglVendorAndRenderer()})
        }
        return keys
      },
      adBlockKey: function (keys) {
        if (!this.options.excludeAdBlock) {
          keys.addPreprocessedComponent({key: 'adblock', value: this.getAdBlock()})
        }
        return keys
      },
      hasLiedLanguagesKey: function (keys) {
        if (!this.options.excludeHasLiedLanguages) {
          keys.addPreprocessedComponent({key: 'has_lied_languages', value: this.getHasLiedLanguages()})
        }
        return keys
      },
      hasLiedResolutionKey: function (keys) {
        if (!this.options.excludeHasLiedResolution) {
          keys.addPreprocessedComponent({key: 'has_lied_resolution', value: this.getHasLiedResolution()})
        }
        return keys
      },
      hasLiedOsKey: function (keys) {
        if (!this.options.excludeHasLiedOs) {
          keys.addPreprocessedComponent({key: 'has_lied_os', value: this.getHasLiedOs()})
        }
        return keys
      },
      hasLiedBrowserKey: function (keys) {
        if (!this.options.excludeHasLiedBrowser) {
          keys.addPreprocessedComponent({key: 'has_lied_browser', value: this.getHasLiedBrowser()})
        }
        return keys
      },
      fontsKey: function (keys, done) {
        if (this.options.excludeJsFonts) {
          return this.flashFontsKey(keys, done)
        }
        return this.jsFontsKey(keys, done)
      },
      // flash fonts (will increase fingerprinting time 20X to ~ 130-150ms)
      flashFontsKey: function (keys, done) {
        if (this.options.excludeFlashFonts) {
          return done(keys)
        }
        // we do flash if swfobject is loaded
        if (!this.hasSwfObjectLoaded()) {
          return done(keys)
        }
        if (!this.hasMinFlashInstalled()) {
          return done(keys)
        }
        if (typeof this.options.swfPath === 'undefined') {
          return done(keys)
        }
        this.loadSwfAndDetectFonts(function (fonts) {
          keys.addPreprocessedComponent({key: 'swf_fonts', value: fonts.join(';')})
          done(keys)
        })
      },
      // kudos to http://www.lalit.org/lab/javascript-css-font-detect/
      jsFontsKey: function (keys, done) {
        var that = this
        // doing js fonts detection in a pseudo-async fashion
        return setTimeout(function () {
          // a font will be compared against all the three default fonts.
          // and if it doesn't match all 3 then that font is not available.
          var baseFonts = ['monospace', 'sans-serif', 'serif']
  
          var fontList = [
            'Andale Mono', 'Arial', 'Arial Black', 'Arial Hebrew', 'Arial MT', 'Arial Narrow', 'Arial Rounded MT Bold', 'Arial Unicode MS',
            'Bitstream Vera Sans Mono', 'Book Antiqua', 'Bookman Old Style',
            'Calibri', 'Cambria', 'Cambria Math', 'Century', 'Century Gothic', 'Century Schoolbook', 'Comic Sans', 'Comic Sans MS', 'Consolas', 'Courier', 'Courier New',
            'Geneva', 'Georgia',
            'Helvetica', 'Helvetica Neue',
            'Impact',
            'Lucida Bright', 'Lucida Calligraphy', 'Lucida Console', 'Lucida Fax', 'LUCIDA GRANDE', 'Lucida Handwriting', 'Lucida Sans', 'Lucida Sans Typewriter', 'Lucida Sans Unicode',
            'Microsoft Sans Serif', 'Monaco', 'Monotype Corsiva', 'MS Gothic', 'MS Outlook', 'MS PGothic', 'MS Reference Sans Serif', 'MS Sans Serif', 'MS Serif', 'MYRIAD', 'MYRIAD PRO',
            'Palatino', 'Palatino Linotype',
            'Segoe Print', 'Segoe Script', 'Segoe UI', 'Segoe UI Light', 'Segoe UI Semibold', 'Segoe UI Symbol',
            'Tahoma', 'Times', 'Times New Roman', 'Times New Roman PS', 'Trebuchet MS',
            'Verdana', 'Wingdings', 'Wingdings 2', 'Wingdings 3'
          ]
          var extendedFontList = [
            'Abadi MT Condensed Light', 'Academy Engraved LET', 'ADOBE CASLON PRO', 'Adobe Garamond', 'ADOBE GARAMOND PRO', 'Agency FB', 'Aharoni', 'Albertus Extra Bold', 'Albertus Medium', 'Algerian', 'Amazone BT', 'American Typewriter',
            'American Typewriter Condensed', 'AmerType Md BT', 'Andalus', 'Angsana New', 'AngsanaUPC', 'Antique Olive', 'Aparajita', 'Apple Chancery', 'Apple Color Emoji', 'Apple SD Gothic Neo', 'Arabic Typesetting', 'ARCHER',
            'ARNO PRO', 'Arrus BT', 'Aurora Cn BT', 'AvantGarde Bk BT', 'AvantGarde Md BT', 'AVENIR', 'Ayuthaya', 'Bandy', 'Bangla Sangam MN', 'Bank Gothic', 'BankGothic Md BT', 'Baskerville',
            'Baskerville Old Face', 'Batang', 'BatangChe', 'Bauer Bodoni', 'Bauhaus 93', 'Bazooka', 'Bell MT', 'Bembo', 'Benguiat Bk BT', 'Berlin Sans FB', 'Berlin Sans FB Demi', 'Bernard MT Condensed', 'BernhardFashion BT', 'BernhardMod BT', 'Big Caslon', 'BinnerD',
            'Blackadder ITC', 'BlairMdITC TT', 'Bodoni 72', 'Bodoni 72 Oldstyle', 'Bodoni 72 Smallcaps', 'Bodoni MT', 'Bodoni MT Black', 'Bodoni MT Condensed', 'Bodoni MT Poster Compressed',
            'Bookshelf Symbol 7', 'Boulder', 'Bradley Hand', 'Bradley Hand ITC', 'Bremen Bd BT', 'Britannic Bold', 'Broadway', 'Browallia New', 'BrowalliaUPC', 'Brush Script MT', 'Californian FB', 'Calisto MT', 'Calligrapher', 'Candara',
            'CaslonOpnface BT', 'Castellar', 'Centaur', 'Cezanne', 'CG Omega', 'CG Times', 'Chalkboard', 'Chalkboard SE', 'Chalkduster', 'Charlesworth', 'Charter Bd BT', 'Charter BT', 'Chaucer',
            'ChelthmITC Bk BT', 'Chiller', 'Clarendon', 'Clarendon Condensed', 'CloisterBlack BT', 'Cochin', 'Colonna MT', 'Constantia', 'Cooper Black', 'Copperplate', 'Copperplate Gothic', 'Copperplate Gothic Bold',
            'Copperplate Gothic Light', 'CopperplGoth Bd BT', 'Corbel', 'Cordia New', 'CordiaUPC', 'Cornerstone', 'Coronet', 'Cuckoo', 'Curlz MT', 'DaunPenh', 'Dauphin', 'David', 'DB LCD Temp', 'DELICIOUS', 'Denmark',
            'DFKai-SB', 'Didot', 'DilleniaUPC', 'DIN', 'DokChampa', 'Dotum', 'DotumChe', 'Ebrima', 'Edwardian Script ITC', 'Elephant', 'English 111 Vivace BT', 'Engravers MT', 'EngraversGothic BT', 'Eras Bold ITC', 'Eras Demi ITC', 'Eras Light ITC', 'Eras Medium ITC',
            'EucrosiaUPC', 'Euphemia', 'Euphemia UCAS', 'EUROSTILE', 'Exotc350 Bd BT', 'FangSong', 'Felix Titling', 'Fixedsys', 'FONTIN', 'Footlight MT Light', 'Forte',
            'FrankRuehl', 'Fransiscan', 'Freefrm721 Blk BT', 'FreesiaUPC', 'Freestyle Script', 'French Script MT', 'FrnkGothITC Bk BT', 'Fruitger', 'FRUTIGER',
            'Futura', 'Futura Bk BT', 'Futura Lt BT', 'Futura Md BT', 'Futura ZBlk BT', 'FuturaBlack BT', 'Gabriola', 'Galliard BT', 'Gautami', 'Geeza Pro', 'Geometr231 BT', 'Geometr231 Hv BT', 'Geometr231 Lt BT', 'GeoSlab 703 Lt BT',
            'GeoSlab 703 XBd BT', 'Gigi', 'Gill Sans', 'Gill Sans MT', 'Gill Sans MT Condensed', 'Gill Sans MT Ext Condensed Bold', 'Gill Sans Ultra Bold', 'Gill Sans Ultra Bold Condensed', 'Gisha', 'Gloucester MT Extra Condensed', 'GOTHAM', 'GOTHAM BOLD',
            'Goudy Old Style', 'Goudy Stout', 'GoudyHandtooled BT', 'GoudyOLSt BT', 'Gujarati Sangam MN', 'Gulim', 'GulimChe', 'Gungsuh', 'GungsuhChe', 'Gurmukhi MN', 'Haettenschweiler', 'Harlow Solid Italic', 'Harrington', 'Heather', 'Heiti SC', 'Heiti TC', 'HELV',
            'Herald', 'High Tower Text', 'Hiragino Kaku Gothic ProN', 'Hiragino Mincho ProN', 'Hoefler Text', 'Humanst 521 Cn BT', 'Humanst521 BT', 'Humanst521 Lt BT', 'Imprint MT Shadow', 'Incised901 Bd BT', 'Incised901 BT',
            'Incised901 Lt BT', 'INCONSOLATA', 'Informal Roman', 'Informal011 BT', 'INTERSTATE', 'IrisUPC', 'Iskoola Pota', 'JasmineUPC', 'Jazz LET', 'Jenson', 'Jester', 'Jokerman', 'Juice ITC', 'Kabel Bk BT', 'Kabel Ult BT', 'Kailasa', 'KaiTi', 'Kalinga', 'Kannada Sangam MN',
            'Kartika', 'Kaufmann Bd BT', 'Kaufmann BT', 'Khmer UI', 'KodchiangUPC', 'Kokila', 'Korinna BT', 'Kristen ITC', 'Krungthep', 'Kunstler Script', 'Lao UI', 'Latha', 'Leelawadee', 'Letter Gothic', 'Levenim MT', 'LilyUPC', 'Lithograph', 'Lithograph Light', 'Long Island',
            'Lydian BT', 'Magneto', 'Maiandra GD', 'Malayalam Sangam MN', 'Malgun Gothic',
            'Mangal', 'Marigold', 'Marion', 'Marker Felt', 'Market', 'Marlett', 'Matisse ITC', 'Matura MT Script Capitals', 'Meiryo', 'Meiryo UI', 'Microsoft Himalaya', 'Microsoft JhengHei', 'Microsoft New Tai Lue', 'Microsoft PhagsPa', 'Microsoft Tai Le',
            'Microsoft Uighur', 'Microsoft YaHei', 'Microsoft Yi Baiti', 'MingLiU', 'MingLiU_HKSCS', 'MingLiU_HKSCS-ExtB', 'MingLiU-ExtB', 'Minion', 'Minion Pro', 'Miriam', 'Miriam Fixed', 'Mistral', 'Modern', 'Modern No. 20', 'Mona Lisa Solid ITC TT', 'Mongolian Baiti',
            'MONO', 'MoolBoran', 'Mrs Eaves', 'MS LineDraw', 'MS Mincho', 'MS PMincho', 'MS Reference Specialty', 'MS UI Gothic', 'MT Extra', 'MUSEO', 'MV Boli',
            'Nadeem', 'Narkisim', 'NEVIS', 'News Gothic', 'News GothicMT', 'NewsGoth BT', 'Niagara Engraved', 'Niagara Solid', 'Noteworthy', 'NSimSun', 'Nyala', 'OCR A Extended', 'Old Century', 'Old English Text MT', 'Onyx', 'Onyx BT', 'OPTIMA', 'Oriya Sangam MN',
            'OSAKA', 'OzHandicraft BT', 'Palace Script MT', 'Papyrus', 'Parchment', 'Party LET', 'Pegasus', 'Perpetua', 'Perpetua Titling MT', 'PetitaBold', 'Pickwick', 'Plantagenet Cherokee', 'Playbill', 'PMingLiU', 'PMingLiU-ExtB',
            'Poor Richard', 'Poster', 'PosterBodoni BT', 'PRINCETOWN LET', 'Pristina', 'PTBarnum BT', 'Pythagoras', 'Raavi', 'Rage Italic', 'Ravie', 'Ribbon131 Bd BT', 'Rockwell', 'Rockwell Condensed', 'Rockwell Extra Bold', 'Rod', 'Roman', 'Sakkal Majalla',
            'Santa Fe LET', 'Savoye LET', 'Sceptre', 'Script', 'Script MT Bold', 'SCRIPTINA', 'Serifa', 'Serifa BT', 'Serifa Th BT', 'ShelleyVolante BT', 'Sherwood',
            'Shonar Bangla', 'Showcard Gothic', 'Shruti', 'Signboard', 'SILKSCREEN', 'SimHei', 'Simplified Arabic', 'Simplified Arabic Fixed', 'SimSun', 'SimSun-ExtB', 'Sinhala Sangam MN', 'Sketch Rockwell', 'Skia', 'Small Fonts', 'Snap ITC', 'Snell Roundhand', 'Socket',
            'Souvenir Lt BT', 'Staccato222 BT', 'Steamer', 'Stencil', 'Storybook', 'Styllo', 'Subway', 'Swis721 BlkEx BT', 'Swiss911 XCm BT', 'Sylfaen', 'Synchro LET', 'System', 'Tamil Sangam MN', 'Technical', 'Teletype', 'Telugu Sangam MN', 'Tempus Sans ITC',
            'Terminal', 'Thonburi', 'Traditional Arabic', 'Trajan', 'TRAJAN PRO', 'Tristan', 'Tubular', 'Tunga', 'Tw Cen MT', 'Tw Cen MT Condensed', 'Tw Cen MT Condensed Extra Bold',
            'TypoUpright BT', 'Unicorn', 'Univers', 'Univers CE 55 Medium', 'Univers Condensed', 'Utsaah', 'Vagabond', 'Vani', 'Vijaya', 'Viner Hand ITC', 'VisualUI', 'Vivaldi', 'Vladimir Script', 'Vrinda', 'Westminster', 'WHITNEY', 'Wide Latin',
            'ZapfEllipt BT', 'ZapfHumnst BT', 'ZapfHumnst Dm BT', 'Zapfino', 'Zurich BlkEx BT', 'Zurich Ex BT', 'ZWAdobeF']
  
          if (that.options.extendedJsFonts) {
            fontList = fontList.concat(extendedFontList)
          }
  
          fontList = fontList.concat(that.options.userDefinedFonts)
  
          // remove duplicate fonts
          fontList = fontList.filter(function (font, position) {
            return fontList.indexOf(font) === position
          })
  
          // we use m or w because these two characters take up the maximum width.
          // And we use a LLi so that the same matching fonts can get separated
          var testString = 'mmmmmmmmmmlli'
  
          // we test using 72px font size, we may use any size. I guess larger the better.
          var testSize = '72px'
  
          var h = document.getElementsByTagName('body')[0]
  
          // div to load spans for the base fonts
          var baseFontsDiv = document.createElement('div')
  
          // div to load spans for the fonts to detect
          var fontsDiv = document.createElement('div')
  
          var defaultWidth = {}
          var defaultHeight = {}
  
          // creates a span where the fonts will be loaded
          var createSpan = function () {
            var s = document.createElement('span')
              /*
               * We need this css as in some weird browser this
               * span elements shows up for a microSec which creates a
               * bad user experience
               */
            s.style.position = 'absolute'
            s.style.left = '-9999px'
            s.style.fontSize = testSize
  
            // css font reset to reset external styles
            s.style.fontStyle = 'normal'
            s.style.fontWeight = 'normal'
            s.style.letterSpacing = 'normal'
            s.style.lineBreak = 'auto'
            s.style.lineHeight = 'normal'
            s.style.textTransform = 'none'
            s.style.textAlign = 'left'
            s.style.textDecoration = 'none'
            s.style.textShadow = 'none'
            s.style.whiteSpace = 'normal'
            s.style.wordBreak = 'normal'
            s.style.wordSpacing = 'normal'
  
            s.innerHTML = testString
            return s
          }
  
          // creates a span and load the font to detect and a base font for fallback
          var createSpanWithFonts = function (fontToDetect, baseFont) {
            var s = createSpan()
            s.style.fontFamily = "'" + fontToDetect + "'," + baseFont
            return s
          }
  
          // creates spans for the base fonts and adds them to baseFontsDiv
          var initializeBaseFontsSpans = function () {
            var spans = []
            for (var index = 0, length = baseFonts.length; index < length; index++) {
              var s = createSpan()
              s.style.fontFamily = baseFonts[index]
              baseFontsDiv.appendChild(s)
              spans.push(s)
            }
            return spans
          }
  
          // creates spans for the fonts to detect and adds them to fontsDiv
          var initializeFontsSpans = function () {
            var spans = {}
            for (var i = 0, l = fontList.length; i < l; i++) {
              var fontSpans = []
              for (var j = 0, numDefaultFonts = baseFonts.length; j < numDefaultFonts; j++) {
                var s = createSpanWithFonts(fontList[i], baseFonts[j])
                fontsDiv.appendChild(s)
                fontSpans.push(s)
              }
              spans[fontList[i]] = fontSpans // Stores {fontName : [spans for that font]}
            }
            return spans
          }
  
          // checks if a font is available
          var isFontAvailable = function (fontSpans) {
            var detected = false
            for (var i = 0; i < baseFonts.length; i++) {
              detected = (fontSpans[i].offsetWidth !== defaultWidth[baseFonts[i]] || fontSpans[i].offsetHeight !== defaultHeight[baseFonts[i]])
              if (detected) {
                return detected
              }
            }
            return detected
          }
  
          // create spans for base fonts
          var baseFontsSpans = initializeBaseFontsSpans()
  
          // add the spans to the DOM
          h.appendChild(baseFontsDiv)
  
          // get the default width for the three base fonts
          for (var index = 0, length = baseFonts.length; index < length; index++) {
            defaultWidth[baseFonts[index]] = baseFontsSpans[index].offsetWidth // width for the default font
            defaultHeight[baseFonts[index]] = baseFontsSpans[index].offsetHeight // height for the default font
          }
  
          // create spans for fonts to detect
          var fontsSpans = initializeFontsSpans()
  
          // add all the spans to the DOM
          h.appendChild(fontsDiv)
  
          // check available fonts
          var available = []
          for (var i = 0, l = fontList.length; i < l; i++) {
            if (isFontAvailable(fontsSpans[fontList[i]])) {
              available.push(fontList[i])
            }
          }
  
          // remove spans from DOM
          h.removeChild(fontsDiv)
          h.removeChild(baseFontsDiv)
  
          keys.addPreprocessedComponent({key: 'js_fonts', value: available})
          done(keys)
        }, 1)
      },
      pluginsKey: function (keys) {
        if (!this.options.excludePlugins) {
          if (this.isIE()) {
            if (!this.options.excludeIEPlugins) {
              keys.addPreprocessedComponent({key: 'ie_plugins', value: this.getIEPlugins()})
            }
          } else {
            keys.addPreprocessedComponent({key: 'regular_plugins', value: this.getRegularPlugins()})
          }
        }
        return keys
      },
      getRegularPlugins: function () {
        var plugins = []
        if (navigator.plugins) {
          // plugins isn't defined in Node envs.
          for (var i = 0, l = navigator.plugins.length; i < l; i++) {
            if (navigator.plugins[i]) { plugins.push(navigator.plugins[i]) }
          }
        }
        // sorting plugins only for those user agents, that we know randomize the plugins
        // every time we try to enumerate them
        if (this.pluginsShouldBeSorted()) {
          plugins = plugins.sort(function (a, b) {
            if (a.name > b.name) { return 1 }
            if (a.name < b.name) { return -1 }
            return 0
          })
        }
        return this.map(plugins, function (p) {
          var mimeTypes = this.map(p, function (mt) {
            return [mt.type, mt.suffixes].join('~')
          }).join(',')
          return [p.name, p.description, mimeTypes].join('::')
        }, this)
      },
      getIEPlugins: function () {
        var result = []
        if ((Object.getOwnPropertyDescriptor && Object.getOwnPropertyDescriptor(window, 'ActiveXObject')) || ('ActiveXObject' in window)) {
          var names = [
            'AcroPDF.PDF', // Adobe PDF reader 7+
            'Adodb.Stream',
            'AgControl.AgControl', // Silverlight
            'DevalVRXCtrl.DevalVRXCtrl.1',
            'MacromediaFlashPaper.MacromediaFlashPaper',
            'Msxml2.DOMDocument',
            'Msxml2.XMLHTTP',
            'PDF.PdfCtrl', // Adobe PDF reader 6 and earlier, brrr
            'QuickTime.QuickTime', // QuickTime
            'QuickTimeCheckObject.QuickTimeCheck.1',
            'RealPlayer',
            'RealPlayer.RealPlayer(tm) ActiveX Control (32-bit)',
            'RealVideo.RealVideo(tm) ActiveX Control (32-bit)',
            'Scripting.Dictionary',
            'SWCtl.SWCtl', // ShockWave player
            'Shell.UIHelper',
            'ShockwaveFlash.ShockwaveFlash', // flash plugin
            'Skype.Detection',
            'TDCCtl.TDCCtl',
            'WMPlayer.OCX', // Windows media player
            'rmocx.RealPlayer G2 Control',
            'rmocx.RealPlayer G2 Control.1'
          ]
          // starting to detect plugins in IE
          result = this.map(names, function (name) {
            try {
              // eslint-disable-next-line no-new
              new window.ActiveXObject(name)
              return name
            } catch (e) {
              return null
            }
          })
        }
        if (navigator.plugins) {
          result = result.concat(this.getRegularPlugins())
        }
        return result
      },
      pluginsShouldBeSorted: function () {
        var should = false
        for (var i = 0, l = this.options.sortPluginsFor.length; i < l; i++) {
          var re = this.options.sortPluginsFor[i]
          if (navigator.userAgent.match(re)) {
            should = true
            break
          }
        }
        return should
      },
      touchSupportKey: function (keys) {
        if (!this.options.excludeTouchSupport) {
          keys.addPreprocessedComponent({key: 'touch_support', value: this.getTouchSupport()})
        }
        return keys
      },
      hardwareConcurrencyKey: function (keys) {
        if (!this.options.excludeHardwareConcurrency) {
          keys.addPreprocessedComponent({key: 'hardware_concurrency', value: this.getHardwareConcurrency()})
        }
        return keys
      },
      hasSessionStorage: function () {
        try {
          return !!window.sessionStorage
        } catch (e) {
          return true // SecurityError when referencing it means it exists
        }
      },
      // https://bugzilla.mozilla.org/show_bug.cgi?id=781447
      hasLocalStorage: function () {
        try {
          return !!window.localStorage
        } catch (e) {
          return true // SecurityError when referencing it means it exists
        }
      },
      hasIndexedDB: function () {
        try {
          return !!window.indexedDB
        } catch (e) {
          return true // SecurityError when referencing it means it exists
        }
      },
      getHardwareConcurrency: function () {
        if (navigator.hardwareConcurrency) {
          return navigator.hardwareConcurrency
        }
        return 'unknown'
      },
      getNavigatorCpuClass: function () {
        if (navigator.cpuClass) {
          return navigator.cpuClass
        } else {
          return 'unknown'
        }
      },
      getNavigatorPlatform: function () {
        if (navigator.platform) {
          return navigator.platform
        } else {
          return 'unknown'
        }
      },
      getDoNotTrack: function () {
        if (navigator.doNotTrack) {
          return navigator.doNotTrack
        } else if (navigator.msDoNotTrack) {
          return navigator.msDoNotTrack
        } else if (window.doNotTrack) {
          return window.doNotTrack
        } else {
          return 'unknown'
        }
      },
      // This is a crude and primitive touch screen detection.
      // It's not possible to currently reliably detect the  availability of a touch screen
      // with a JS, without actually subscribing to a touch event.
      // http://www.stucox.com/blog/you-cant-detect-a-touchscreen/
      // https://github.com/Modernizr/Modernizr/issues/548
      // method returns an array of 3 values:
      // maxTouchPoints, the success or failure of creating a TouchEvent,
      // and the availability of the 'ontouchstart' property
      getTouchSupport: function () {
        var maxTouchPoints = 0
        var touchEvent = false
        if (typeof navigator.maxTouchPoints !== 'undefined') {
          maxTouchPoints = navigator.maxTouchPoints
        } else if (typeof navigator.msMaxTouchPoints !== 'undefined') {
          maxTouchPoints = navigator.msMaxTouchPoints
        }
        try {
          document.createEvent('TouchEvent')
          touchEvent = true
        } catch (_) { /* squelch */ }
        var touchStart = 'ontouchstart' in window
        return [maxTouchPoints, touchEvent, touchStart]
      },
      // https://www.browserleaks.com/canvas#how-does-it-work
      getCanvasFp: function () {
        var result = []
        // Very simple now, need to make it more complex (geo shapes etc)
        var canvas = document.createElement('canvas')
        canvas.width = 2000
        canvas.height = 200
        canvas.style.display = 'inline'
        var ctx = canvas.getContext('2d')
        // detect browser support of canvas winding
        // http://blogs.adobe.com/webplatform/2013/01/30/winding-rules-in-canvas/
        // https://github.com/Modernizr/Modernizr/blob/master/feature-detects/canvas/winding.js
        ctx.rect(0, 0, 10, 10)
        ctx.rect(2, 2, 6, 6)
        result.push('canvas winding:' + ((ctx.isPointInPath(5, 5, 'evenodd') === false) ? 'yes' : 'no'))
  
        ctx.textBaseline = 'alphabetic'
        ctx.fillStyle = '#f60'
        ctx.fillRect(125, 1, 62, 20)
        ctx.fillStyle = '#069'
        // https://github.com/Valve/fingerprintjs2/issues/66
        if (this.options.dontUseFakeFontInCanvas) {
          ctx.font = '11pt Arial'
        } else {
          ctx.font = '11pt no-real-font-123'
        }
        ctx.fillText('Cwm fjordbank glyphs vext quiz, \ud83d\ude03', 2, 15)
        ctx.fillStyle = 'rgba(102, 204, 0, 0.2)'
        ctx.font = '18pt Arial'
        ctx.fillText('Cwm fjordbank glyphs vext quiz, \ud83d\ude03', 4, 45)
  
        // canvas blending
        // http://blogs.adobe.com/webplatform/2013/01/28/blending-features-in-canvas/
        // http://jsfiddle.net/NDYV8/16/
        ctx.globalCompositeOperation = 'multiply'
        ctx.fillStyle = 'rgb(255,0,255)'
        ctx.beginPath()
        ctx.arc(50, 50, 50, 0, Math.PI * 2, true)
        ctx.closePath()
        ctx.fill()
        ctx.fillStyle = 'rgb(0,255,255)'
        ctx.beginPath()
        ctx.arc(100, 50, 50, 0, Math.PI * 2, true)
        ctx.closePath()
        ctx.fill()
        ctx.fillStyle = 'rgb(255,255,0)'
        ctx.beginPath()
        ctx.arc(75, 100, 50, 0, Math.PI * 2, true)
        ctx.closePath()
        ctx.fill()
        ctx.fillStyle = 'rgb(255,0,255)'
        // canvas winding
        // http://blogs.adobe.com/webplatform/2013/01/30/winding-rules-in-canvas/
        // http://jsfiddle.net/NDYV8/19/
        ctx.arc(75, 75, 75, 0, Math.PI * 2, true)
        ctx.arc(75, 75, 25, 0, Math.PI * 2, true)
        ctx.fill('evenodd')
  
        if (canvas.toDataURL) { result.push('canvas fp:' + canvas.toDataURL()) }
        return result.join('~')
      },
  
      getWebglFp: function () {
        var gl
        var fa2s = function (fa) {
          gl.clearColor(0.0, 0.0, 0.0, 1.0)
          gl.enable(gl.DEPTH_TEST)
          gl.depthFunc(gl.LEQUAL)
          gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT)
          return '[' + fa[0] + ', ' + fa[1] + ']'
        }
        var maxAnisotropy = function (gl) {
          var ext = gl.getExtension('EXT_texture_filter_anisotropic') || gl.getExtension('WEBKIT_EXT_texture_filter_anisotropic') || gl.getExtension('MOZ_EXT_texture_filter_anisotropic')
          if (ext) {
            var anisotropy = gl.getParameter(ext.MAX_TEXTURE_MAX_ANISOTROPY_EXT)
            if (anisotropy === 0) {
              anisotropy = 2
            }
            return anisotropy
          } else {
            return null
          }
        }
        gl = this.getWebglCanvas()
        if (!gl) { return null }
        // WebGL fingerprinting is a combination of techniques, found in MaxMind antifraud script & Augur fingerprinting.
        // First it draws a gradient object with shaders and convers the image to the Base64 string.
        // Then it enumerates all WebGL extensions & capabilities and appends them to the Base64 string, resulting in a huge WebGL string, potentially very unique on each device
        // Since iOS supports webgl starting from version 8.1 and 8.1 runs on several graphics chips, the results may be different across ios devices, but we need to verify it.
        var result = []
        var vShaderTemplate = 'attribute vec2 attrVertex;varying vec2 varyinTexCoordinate;uniform vec2 uniformOffset;void main(){varyinTexCoordinate=attrVertex+uniformOffset;gl_Position=vec4(attrVertex,0,1);}'
        var fShaderTemplate = 'precision mediump float;varying vec2 varyinTexCoordinate;void main() {gl_FragColor=vec4(varyinTexCoordinate,0,1);}'
        var vertexPosBuffer = gl.createBuffer()
        gl.bindBuffer(gl.ARRAY_BUFFER, vertexPosBuffer)
        var vertices = new Float32Array([-0.2, -0.9, 0, 0.4, -0.26, 0, 0, 0.732134444, 0])
        gl.bufferData(gl.ARRAY_BUFFER, vertices, gl.STATIC_DRAW)
        vertexPosBuffer.itemSize = 3
        vertexPosBuffer.numItems = 3
        var program = gl.createProgram()
        var vshader = gl.createShader(gl.VERTEX_SHADER)
        gl.shaderSource(vshader, vShaderTemplate)
        gl.compileShader(vshader)
        var fshader = gl.createShader(gl.FRAGMENT_SHADER)
        gl.shaderSource(fshader, fShaderTemplate)
        gl.compileShader(fshader)
        gl.attachShader(program, vshader)
        gl.attachShader(program, fshader)
        gl.linkProgram(program)
        gl.useProgram(program)
        program.vertexPosAttrib = gl.getAttribLocation(program, 'attrVertex')
        program.offsetUniform = gl.getUniformLocation(program, 'uniformOffset')
        gl.enableVertexAttribArray(program.vertexPosArray)
        gl.vertexAttribPointer(program.vertexPosAttrib, vertexPosBuffer.itemSize, gl.FLOAT, !1, 0, 0)
        gl.uniform2f(program.offsetUniform, 1, 1)
        gl.drawArrays(gl.TRIANGLE_STRIP, 0, vertexPosBuffer.numItems)
        try {
          result.push(gl.canvas.toDataURL())
        } catch (e) {
          /* .toDataURL may be absent or broken (blocked by extension) */
        }
        result.push('extensions:' + (gl.getSupportedExtensions() || []).join(';'))
        result.push('webgl aliased line width range:' + fa2s(gl.getParameter(gl.ALIASED_LINE_WIDTH_RANGE)))
        result.push('webgl aliased point size range:' + fa2s(gl.getParameter(gl.ALIASED_POINT_SIZE_RANGE)))
        result.push('webgl alpha bits:' + gl.getParameter(gl.ALPHA_BITS))
        result.push('webgl antialiasing:' + (gl.getContextAttributes().antialias ? 'yes' : 'no'))
        result.push('webgl blue bits:' + gl.getParameter(gl.BLUE_BITS))
        result.push('webgl depth bits:' + gl.getParameter(gl.DEPTH_BITS))
        result.push('webgl green bits:' + gl.getParameter(gl.GREEN_BITS))
        result.push('webgl max anisotropy:' + maxAnisotropy(gl))
        result.push('webgl max combined texture image units:' + gl.getParameter(gl.MAX_COMBINED_TEXTURE_IMAGE_UNITS))
        result.push('webgl max cube map texture size:' + gl.getParameter(gl.MAX_CUBE_MAP_TEXTURE_SIZE))
        result.push('webgl max fragment uniform vectors:' + gl.getParameter(gl.MAX_FRAGMENT_UNIFORM_VECTORS))
        result.push('webgl max render buffer size:' + gl.getParameter(gl.MAX_RENDERBUFFER_SIZE))
        result.push('webgl max texture image units:' + gl.getParameter(gl.MAX_TEXTURE_IMAGE_UNITS))
        result.push('webgl max texture size:' + gl.getParameter(gl.MAX_TEXTURE_SIZE))
        result.push('webgl max varying vectors:' + gl.getParameter(gl.MAX_VARYING_VECTORS))
        result.push('webgl max vertex attribs:' + gl.getParameter(gl.MAX_VERTEX_ATTRIBS))
        result.push('webgl max vertex texture image units:' + gl.getParameter(gl.MAX_VERTEX_TEXTURE_IMAGE_UNITS))
        result.push('webgl max vertex uniform vectors:' + gl.getParameter(gl.MAX_VERTEX_UNIFORM_VECTORS))
        result.push('webgl max viewport dims:' + fa2s(gl.getParameter(gl.MAX_VIEWPORT_DIMS)))
        result.push('webgl red bits:' + gl.getParameter(gl.RED_BITS))
        result.push('webgl renderer:' + gl.getParameter(gl.RENDERER))
        result.push('webgl shading language version:' + gl.getParameter(gl.SHADING_LANGUAGE_VERSION))
        result.push('webgl stencil bits:' + gl.getParameter(gl.STENCIL_BITS))
        result.push('webgl vendor:' + gl.getParameter(gl.VENDOR))
        result.push('webgl version:' + gl.getParameter(gl.VERSION))
  
        try {
          // Add the unmasked vendor and unmasked renderer if the debug_renderer_info extension is available
          var extensionDebugRendererInfo = gl.getExtension('WEBGL_debug_renderer_info')
          if (extensionDebugRendererInfo) {
            result.push('webgl unmasked vendor:' + gl.getParameter(extensionDebugRendererInfo.UNMASKED_VENDOR_WEBGL))
            result.push('webgl unmasked renderer:' + gl.getParameter(extensionDebugRendererInfo.UNMASKED_RENDERER_WEBGL))
          }
        } catch (e) { /* squelch */ }
  
        if (!gl.getShaderPrecisionFormat) {
          return result.join('~')
        }
  
        var that = this
  
        that.each(['FLOAT', 'INT'], function (numType) {
          that.each(['VERTEX', 'FRAGMENT'], function (shader) {
            that.each(['HIGH', 'MEDIUM', 'LOW'], function (numSize) {
              that.each(['precision', 'rangeMin', 'rangeMax'], function (key) {
                var format = gl.getShaderPrecisionFormat(gl[shader + '_SHADER'], gl[numSize + '_' + numType])[key]
                if (key !== 'precision') {
                  key = 'precision ' + key
                }
                var line = ['webgl ', shader.toLowerCase(), ' shader ', numSize.toLowerCase(), ' ', numType.toLowerCase(), ' ', key, ':', format]
                result.push(line.join(''))
              })
            })
          })
        })
        return result.join('~')
      },
      getWebglVendorAndRenderer: function () {
        /* This a subset of the WebGL fingerprint with a lot of entropy, while being reasonably browser-independent */
        try {
          var glContext = this.getWebglCanvas()
          var extensionDebugRendererInfo = glContext.getExtension('WEBGL_debug_renderer_info')
          return glContext.getParameter(extensionDebugRendererInfo.UNMASKED_VENDOR_WEBGL) + '~' + glContext.getParameter(extensionDebugRendererInfo.UNMASKED_RENDERER_WEBGL)
        } catch (e) {
          return null
        }
      },
      getAdBlock: function () {
        var ads = document.createElement('div')
        ads.innerHTML = '&nbsp;'
        ads.className = 'adsbox'
        var result = false
        try {
          // body may not exist, that's why we need try/catch
          document.body.appendChild(ads)
          result = document.getElementsByClassName('adsbox')[0].offsetHeight === 0
          document.body.removeChild(ads)
        } catch (e) {
          result = false
        }
        return result
      },
      getHasLiedLanguages: function () {
        // We check if navigator.language is equal to the first language of navigator.languages
        if (typeof navigator.languages !== 'undefined') {
          try {
            var firstLanguages = navigator.languages[0].substr(0, 2)
            if (firstLanguages !== navigator.language.substr(0, 2)) {
              return true
            }
          } catch (err) {
            return true
          }
        }
        return false
      },
      getHasLiedResolution: function () {
        if (window.screen.width < window.screen.availWidth) {
          return true
        }
        if (window.screen.height < window.screen.availHeight) {
          return true
        }
        return false
      },
      getHasLiedOs: function () {
        var userAgent = navigator.userAgent.toLowerCase()
        var oscpu = navigator.oscpu
        var platform = navigator.platform.toLowerCase()
        var os
        // We extract the OS from the user agent (respect the order of the if else if statement)
        if (userAgent.indexOf('windows phone') >= 0) {
          os = 'Windows Phone'
        } else if (userAgent.indexOf('win') >= 0) {
          os = 'Windows'
        } else if (userAgent.indexOf('android') >= 0) {
          os = 'Android'
        } else if (userAgent.indexOf('linux') >= 0) {
          os = 'Linux'
        } else if (userAgent.indexOf('iphone') >= 0 || userAgent.indexOf('ipad') >= 0) {
          os = 'iOS'
        } else if (userAgent.indexOf('mac') >= 0) {
          os = 'Mac'
        } else {
          os = 'Other'
        }
        // We detect if the person uses a mobile device
        var mobileDevice
        if (('ontouchstart' in window) ||
             (navigator.maxTouchPoints > 0) ||
             (navigator.msMaxTouchPoints > 0)) {
          mobileDevice = true
        } else {
          mobileDevice = false
        }
  
        if (mobileDevice && os !== 'Windows Phone' && os !== 'Android' && os !== 'iOS' && os !== 'Other') {
          return true
        }
  
        // We compare oscpu with the OS extracted from the UA
        if (typeof oscpu !== 'undefined') {
          oscpu = oscpu.toLowerCase()
          if (oscpu.indexOf('win') >= 0 && os !== 'Windows' && os !== 'Windows Phone') {
            return true
          } else if (oscpu.indexOf('linux') >= 0 && os !== 'Linux' && os !== 'Android') {
            return true
          } else if (oscpu.indexOf('mac') >= 0 && os !== 'Mac' && os !== 'iOS') {
            return true
          } else if ((oscpu.indexOf('win') === -1 && oscpu.indexOf('linux') === -1 && oscpu.indexOf('mac') === -1) !== (os === 'Other')) {
            return true
          }
        }
  
        // We compare platform with the OS extracted from the UA
        if (platform.indexOf('win') >= 0 && os !== 'Windows' && os !== 'Windows Phone') {
          return true
        } else if ((platform.indexOf('linux') >= 0 || platform.indexOf('android') >= 0 || platform.indexOf('pike') >= 0) && os !== 'Linux' && os !== 'Android') {
          return true
        } else if ((platform.indexOf('mac') >= 0 || platform.indexOf('ipad') >= 0 || platform.indexOf('ipod') >= 0 || platform.indexOf('iphone') >= 0) && os !== 'Mac' && os !== 'iOS') {
          return true
        } else if ((platform.indexOf('win') === -1 && platform.indexOf('linux') === -1 && platform.indexOf('mac') === -1) !== (os === 'Other')) {
          return true
        }
  
        if (typeof navigator.plugins === 'undefined' && os !== 'Windows' && os !== 'Windows Phone') {
          // We are are in the case where the person uses ie, therefore we can infer that it's windows
          return true
        }
  
        return false
      },
      getHasLiedBrowser: function () {
        var userAgent = navigator.userAgent.toLowerCase()
        var productSub = navigator.productSub
  
        // we extract the browser from the user agent (respect the order of the tests)
        var browser
        if (userAgent.indexOf('firefox') >= 0) {
          browser = 'Firefox'
        } else if (userAgent.indexOf('opera') >= 0 || userAgent.indexOf('opr') >= 0) {
          browser = 'Opera'
        } else if (userAgent.indexOf('chrome') >= 0) {
          browser = 'Chrome'
        } else if (userAgent.indexOf('safari') >= 0) {
          browser = 'Safari'
        } else if (userAgent.indexOf('trident') >= 0) {
          browser = 'Internet Explorer'
        } else {
          browser = 'Other'
        }
  
        if ((browser === 'Chrome' || browser === 'Safari' || browser === 'Opera') && productSub !== '20030107') {
          return true
        }
  
        // eslint-disable-next-line no-eval
        var tempRes = eval.toString().length
        if (tempRes === 37 && browser !== 'Safari' && browser !== 'Firefox' && browser !== 'Other') {
          return true
        } else if (tempRes === 39 && browser !== 'Internet Explorer' && browser !== 'Other') {
          return true
        } else if (tempRes === 33 && browser !== 'Chrome' && browser !== 'Opera' && browser !== 'Other') {
          return true
        }
  
        // We create an error to see how it is handled
        var errFirefox
        try {
          // eslint-disable-next-line no-throw-literal
          throw 'a'
        } catch (err) {
          try {
            err.toSource()
            errFirefox = true
          } catch (errOfErr) {
            errFirefox = false
          }
        }
        if (errFirefox && browser !== 'Firefox' && browser !== 'Other') {
          return true
        }
        return false
      },
      isCanvasSupported: function () {
        var elem = document.createElement('canvas')
        return !!(elem.getContext && elem.getContext('2d'))
      },
      isWebGlSupported: function () {
        // code taken from Modernizr
        if (!this.isCanvasSupported()) {
          return false
        }
  
        var glContext = this.getWebglCanvas()
        return !!window.WebGLRenderingContext && !!glContext
      },
      isIE: function () {
        if (navigator.appName === 'Microsoft Internet Explorer') {
          return true
        } else if (navigator.appName === 'Netscape' && /Trident/.test(navigator.userAgent)) { // IE 11
          return true
        }
        return false
      },
      hasSwfObjectLoaded: function () {
        return typeof window.swfobject !== 'undefined'
      },
      hasMinFlashInstalled: function () {
        return window.swfobject.hasFlashPlayerVersion('9.0.0')
      },
      addFlashDivNode: function () {
        var node = document.createElement('div')
        node.setAttribute('id', this.options.swfContainerId)
        document.body.appendChild(node)
      },
      loadSwfAndDetectFonts: function (done) {
        var hiddenCallback = '___fp_swf_loaded'
        window[hiddenCallback] = function (fonts) {
          done(fonts)
        }
        var id = this.options.swfContainerId
        this.addFlashDivNode()
        var flashvars = { onReady: hiddenCallback }
        var flashparams = { allowScriptAccess: 'always', menu: 'false' }
        window.swfobject.embedSWF(this.options.swfPath, id, '1', '1', '9.0.0', false, flashvars, flashparams, {})
      },
      getWebglCanvas: function () {
        var canvas = document.createElement('canvas')
        var gl = null
        try {
          gl = canvas.getContext('webgl') || canvas.getContext('experimental-webgl')
        } catch (e) { /* squelch */ }
        if (!gl) { gl = null }
        return gl
      },
  
      /**
       * @template T
       * @param {T=} context
       */
      each: function (obj, iterator, context) {
        if (obj === null) {
          return
        }
        if (this.nativeForEach && obj.forEach === this.nativeForEach) {
          obj.forEach(iterator, context)
        } else if (obj.length === +obj.length) {
          for (var i = 0, l = obj.length; i < l; i++) {
            if (iterator.call(context, obj[i], i, obj) === {}) { return }
          }
        } else {
          for (var key in obj) {
            if (obj.hasOwnProperty(key)) {
              if (iterator.call(context, obj[key], key, obj) === {}) { return }
            }
          }
        }
      },
  
      /**
       * @template T,V
       * @param {T=} context
       * @param {function(this:T, ?, (string|number), T=):V} iterator
       * @return {V}
       */
      map: function (obj, iterator, context) {
        var results = []
        // Not using strict equality so that this acts as a
        // shortcut to checking for `null` and `undefined`.
        if (obj == null) { return results }
        if (this.nativeMap && obj.map === this.nativeMap) { return obj.map(iterator, context) }
        this.each(obj, function (value, index, list) {
          results[results.length] = iterator.call(context, value, index, list)
        })
        return results
      },
  
      /// MurmurHash3 related functions
  
      //
      // Given two 64bit ints (as an array of two 32bit ints) returns the two
      // added together as a 64bit int (as an array of two 32bit ints).
      //
      x64Add: function (m, n) {
        m = [m[0] >>> 16, m[0] & 0xffff, m[1] >>> 16, m[1] & 0xffff]
        n = [n[0] >>> 16, n[0] & 0xffff, n[1] >>> 16, n[1] & 0xffff]
        var o = [0, 0, 0, 0]
        o[3] += m[3] + n[3]
        o[2] += o[3] >>> 16
        o[3] &= 0xffff
        o[2] += m[2] + n[2]
        o[1] += o[2] >>> 16
        o[2] &= 0xffff
        o[1] += m[1] + n[1]
        o[0] += o[1] >>> 16
        o[1] &= 0xffff
        o[0] += m[0] + n[0]
        o[0] &= 0xffff
        return [(o[0] << 16) | o[1], (o[2] << 16) | o[3]]
      },
  
      //
      // Given two 64bit ints (as an array of two 32bit ints) returns the two
      // multiplied together as a 64bit int (as an array of two 32bit ints).
      //
      x64Multiply: function (m, n) {
        m = [m[0] >>> 16, m[0] & 0xffff, m[1] >>> 16, m[1] & 0xffff]
        n = [n[0] >>> 16, n[0] & 0xffff, n[1] >>> 16, n[1] & 0xffff]
        var o = [0, 0, 0, 0]
        o[3] += m[3] * n[3]
        o[2] += o[3] >>> 16
        o[3] &= 0xffff
        o[2] += m[2] * n[3]
        o[1] += o[2] >>> 16
        o[2] &= 0xffff
        o[2] += m[3] * n[2]
        o[1] += o[2] >>> 16
        o[2] &= 0xffff
        o[1] += m[1] * n[3]
        o[0] += o[1] >>> 16
        o[1] &= 0xffff
        o[1] += m[2] * n[2]
        o[0] += o[1] >>> 16
        o[1] &= 0xffff
        o[1] += m[3] * n[1]
        o[0] += o[1] >>> 16
        o[1] &= 0xffff
        o[0] += (m[0] * n[3]) + (m[1] * n[2]) + (m[2] * n[1]) + (m[3] * n[0])
        o[0] &= 0xffff
        return [(o[0] << 16) | o[1], (o[2] << 16) | o[3]]
      },
      //
      // Given a 64bit int (as an array of two 32bit ints) and an int
      // representing a number of bit positions, returns the 64bit int (as an
      // array of two 32bit ints) rotated left by that number of positions.
      //
      x64Rotl: function (m, n) {
        n %= 64
        if (n === 32) {
          return [m[1], m[0]]
        } else if (n < 32) {
          return [(m[0] << n) | (m[1] >>> (32 - n)), (m[1] << n) | (m[0] >>> (32 - n))]
        } else {
          n -= 32
          return [(m[1] << n) | (m[0] >>> (32 - n)), (m[0] << n) | (m[1] >>> (32 - n))]
        }
      },
      //
      // Given a 64bit int (as an array of two 32bit ints) and an int
      // representing a number of bit positions, returns the 64bit int (as an
      // array of two 32bit ints) shifted left by that number of positions.
      //
      x64LeftShift: function (m, n) {
        n %= 64
        if (n === 0) {
          return m
        } else if (n < 32) {
          return [(m[0] << n) | (m[1] >>> (32 - n)), m[1] << n]
        } else {
          return [m[1] << (n - 32), 0]
        }
      },
      //
      // Given two 64bit ints (as an array of two 32bit ints) returns the two
      // xored together as a 64bit int (as an array of two 32bit ints).
      //
      x64Xor: function (m, n) {
        return [m[0] ^ n[0], m[1] ^ n[1]]
      },
      //
      // Given a block, returns murmurHash3's final x64 mix of that block.
      // (`[0, h[0] >>> 1]` is a 33 bit unsigned right shift. This is the
      // only place where we need to right shift 64bit ints.)
      //
      x64Fmix: function (h) {
        h = this.x64Xor(h, [0, h[0] >>> 1])
        h = this.x64Multiply(h, [0xff51afd7, 0xed558ccd])
        h = this.x64Xor(h, [0, h[0] >>> 1])
        h = this.x64Multiply(h, [0xc4ceb9fe, 0x1a85ec53])
        h = this.x64Xor(h, [0, h[0] >>> 1])
        return h
      },
  
      //
      // Given a string and an optional seed as an int, returns a 128 bit
      // hash using the x64 flavor of MurmurHash3, as an unsigned hex.
      //
      x64hash128: function (key, seed) {
        key = key || ''
        seed = seed || 0
        var remainder = key.length % 16
        var bytes = key.length - remainder
        var h1 = [0, seed]
        var h2 = [0, seed]
        var k1 = [0, 0]
        var k2 = [0, 0]
        var c1 = [0x87c37b91, 0x114253d5]
        var c2 = [0x4cf5ad43, 0x2745937f]
        for (var i = 0; i < bytes; i = i + 16) {
          k1 = [((key.charCodeAt(i + 4) & 0xff)) | ((key.charCodeAt(i + 5) & 0xff) << 8) | ((key.charCodeAt(i + 6) & 0xff) << 16) | ((key.charCodeAt(i + 7) & 0xff) << 24), ((key.charCodeAt(i) & 0xff)) | ((key.charCodeAt(i + 1) & 0xff) << 8) | ((key.charCodeAt(i + 2) & 0xff) << 16) | ((key.charCodeAt(i + 3) & 0xff) << 24)]
          k2 = [((key.charCodeAt(i + 12) & 0xff)) | ((key.charCodeAt(i + 13) & 0xff) << 8) | ((key.charCodeAt(i + 14) & 0xff) << 16) | ((key.charCodeAt(i + 15) & 0xff) << 24), ((key.charCodeAt(i + 8) & 0xff)) | ((key.charCodeAt(i + 9) & 0xff) << 8) | ((key.charCodeAt(i + 10) & 0xff) << 16) | ((key.charCodeAt(i + 11) & 0xff) << 24)]
          k1 = this.x64Multiply(k1, c1)
          k1 = this.x64Rotl(k1, 31)
          k1 = this.x64Multiply(k1, c2)
          h1 = this.x64Xor(h1, k1)
          h1 = this.x64Rotl(h1, 27)
          h1 = this.x64Add(h1, h2)
          h1 = this.x64Add(this.x64Multiply(h1, [0, 5]), [0, 0x52dce729])
          k2 = this.x64Multiply(k2, c2)
          k2 = this.x64Rotl(k2, 33)
          k2 = this.x64Multiply(k2, c1)
          h2 = this.x64Xor(h2, k2)
          h2 = this.x64Rotl(h2, 31)
          h2 = this.x64Add(h2, h1)
          h2 = this.x64Add(this.x64Multiply(h2, [0, 5]), [0, 0x38495ab5])
        }
        k1 = [0, 0]
        k2 = [0, 0]
        switch (remainder) {
          case 15:
            k2 = this.x64Xor(k2, this.x64LeftShift([0, key.charCodeAt(i + 14)], 48))
            // fallthrough
          case 14:
            k2 = this.x64Xor(k2, this.x64LeftShift([0, key.charCodeAt(i + 13)], 40))
            // fallthrough
          case 13:
            k2 = this.x64Xor(k2, this.x64LeftShift([0, key.charCodeAt(i + 12)], 32))
            // fallthrough
          case 12:
            k2 = this.x64Xor(k2, this.x64LeftShift([0, key.charCodeAt(i + 11)], 24))
            // fallthrough
          case 11:
            k2 = this.x64Xor(k2, this.x64LeftShift([0, key.charCodeAt(i + 10)], 16))
            // fallthrough
          case 10:
            k2 = this.x64Xor(k2, this.x64LeftShift([0, key.charCodeAt(i + 9)], 8))
            // fallthrough
          case 9:
            k2 = this.x64Xor(k2, [0, key.charCodeAt(i + 8)])
            k2 = this.x64Multiply(k2, c2)
            k2 = this.x64Rotl(k2, 33)
            k2 = this.x64Multiply(k2, c1)
            h2 = this.x64Xor(h2, k2)
            // fallthrough
          case 8:
            k1 = this.x64Xor(k1, this.x64LeftShift([0, key.charCodeAt(i + 7)], 56))
            // fallthrough
          case 7:
            k1 = this.x64Xor(k1, this.x64LeftShift([0, key.charCodeAt(i + 6)], 48))
            // fallthrough
          case 6:
            k1 = this.x64Xor(k1, this.x64LeftShift([0, key.charCodeAt(i + 5)], 40))
            // fallthrough
          case 5:
            k1 = this.x64Xor(k1, this.x64LeftShift([0, key.charCodeAt(i + 4)], 32))
            // fallthrough
          case 4:
            k1 = this.x64Xor(k1, this.x64LeftShift([0, key.charCodeAt(i + 3)], 24))
            // fallthrough
          case 3:
            k1 = this.x64Xor(k1, this.x64LeftShift([0, key.charCodeAt(i + 2)], 16))
            // fallthrough
          case 2:
            k1 = this.x64Xor(k1, this.x64LeftShift([0, key.charCodeAt(i + 1)], 8))
            // fallthrough
          case 1:
            k1 = this.x64Xor(k1, [0, key.charCodeAt(i)])
            k1 = this.x64Multiply(k1, c1)
            k1 = this.x64Rotl(k1, 31)
            k1 = this.x64Multiply(k1, c2)
            h1 = this.x64Xor(h1, k1)
            // fallthrough
        }
        h1 = this.x64Xor(h1, [0, key.length])
        h2 = this.x64Xor(h2, [0, key.length])
        h1 = this.x64Add(h1, h2)
        h2 = this.x64Add(h2, h1)
        h1 = this.x64Fmix(h1)
        h2 = this.x64Fmix(h2)
        h1 = this.x64Add(h1, h2)
        h2 = this.x64Add(h2, h1)
        return ('00000000' + (h1[0] >>> 0).toString(16)).slice(-8) + ('00000000' + (h1[1] >>> 0).toString(16)).slice(-8) + ('00000000' + (h2[0] >>> 0).toString(16)).slice(-8) + ('00000000' + (h2[1] >>> 0).toString(16)).slice(-8)
      }
    }
    Fingerprint2.VERSION = '1.8.0'
    return Fingerprint2
  })