diff --git a/.travis.yml b/.travis.yml index 83880550..3a5791da 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,6 @@ before_install: + - git fetch origin master:master + - git fetch origin v2.0.0:v2.0.0 - sudo apt-get install libicu-dev -y - gem update --system 2.1.11 rvm: diff --git a/README.md b/README.md index 660ac00c..d497e8c2 100644 --- a/README.md +++ b/README.md @@ -152,4 +152,4 @@ If you are the current maintainer of this gem: 0. Test behavior locally, branch deploy, whatever needs to happen 0. Merge github/linguist PR 0. Tag and push: `git tag vx.xx.xx; git push --tags` - 0. Push to rubygems.org -- `gem push github-linguist-2.10.12.gem` + 0. Push to rubygems.org -- `gem push github-linguist-3.0.0.gem` diff --git a/bin/linguist b/bin/linguist index 2cfa8064..e086dcea 100755 --- a/bin/linguist +++ b/bin/linguist @@ -5,6 +5,7 @@ require 'linguist/file_blob' require 'linguist/repository' +require 'rugged' path = ARGV[0] || Dir.pwd @@ -18,7 +19,8 @@ ARGV.shift breakdown = true if ARGV[0] == "--breakdown" if File.directory?(path) - repo = Linguist::Repository.from_directory(path) + rugged = Rugged::Repository.new(path) + repo = Linguist::Repository.new(rugged, rugged.head.target_id) repo.languages.sort_by { |_, size| size }.reverse.each do |language, size| percentage = ((size / repo.size.to_f) * 100) percentage = sprintf '%.2f' % percentage diff --git a/github-linguist.gemspec b/github-linguist.gemspec index d4c2337a..936550f3 100644 --- a/github-linguist.gemspec +++ b/github-linguist.gemspec @@ -17,6 +17,7 @@ Gem::Specification.new do |s| s.add_dependency 'escape_utils', '~> 1.0.1' s.add_dependency 'mime-types', '~> 1.19' s.add_dependency 'pygments.rb', '~> 0.6.0' + s.add_dependency 'rugged', '~> 0.21.0' s.add_development_dependency 'json' s.add_development_dependency 'mocha' diff --git a/lib/linguist/blob_helper.rb b/lib/linguist/blob_helper.rb index 15ab2d9f..27c4b3dd 100644 --- a/lib/linguist/blob_helper.rb +++ b/lib/linguist/blob_helper.rb @@ -313,15 +313,7 @@ module Linguist # # Returns a Language or nil if none is detected def language - return @language if defined? @language - - if defined?(@data) && @data.is_a?(String) - data = @data - else - data = lambda { (binary_mime_type? || binary?) ? "" : self.data } - end - - @language = Language.detect(name.to_s, data, mode) + @language ||= Language.detect(self) end # Internal: Get the lexer of the blob. diff --git a/lib/linguist/generated.rb b/lib/linguist/generated.rb index 5c3de141..761288f0 100644 --- a/lib/linguist/generated.rb +++ b/lib/linguist/generated.rb @@ -63,7 +63,8 @@ module Linguist generated_jni_header? || composer_lock? || node_modules? || - vcr_cassette? + vcr_cassette? || + generated_by_zephir? end # Internal: Is the blob an XCode project file? @@ -237,6 +238,13 @@ module Linguist !!name.match(/composer.lock/) end + # Internal: Is the blob a generated by Zephir + # + # Returns true or false. + def generated_by_zephir? + !!name.match(/.\.zep\.(?:c|h|php)$/) + end + # Is the blob a VCR Cassette file? # # Returns true or false diff --git a/lib/linguist/language.rb b/lib/linguist/language.rb index 3fcf448b..9088cfc0 100644 --- a/lib/linguist/language.rb +++ b/lib/linguist/language.rb @@ -92,14 +92,20 @@ module Linguist # Public: Detects the Language of the blob. # - # name - String filename - # data - String blob data. A block also maybe passed in for lazy - # loading. This behavior is deprecated and you should always - # pass in a String. - # mode - Optional String mode (defaults to nil) + # blob - an object that includes the Linguist `BlobHelper` interface; + # see Linguist::LazyBlob and Linguist::FileBlob for examples # # Returns Language or nil. - def self.detect(name, data, mode = nil) + def self.detect(blob) + name = blob.name.to_s + + # Check if the blob is possibly binary and bail early; this is a cheap + # test that uses the extension name to guess a binary binary mime type. + # + # We'll perform a more comprehensive test later which actually involves + # looking for binary characters in the blob + return nil if blob.likely_binary? || blob.binary? + # A bit of an elegant hack. If the file is executable but extensionless, # append a "magic" extension so it can be classified with other # languages that have shebang scripts. @@ -115,10 +121,10 @@ module Linguist # extension at all, in the case of extensionless scripts), we need to continue # our detection work if possible_languages.length > 1 - data = data.call() if data.respond_to?(:call) + data = blob.data possible_language_names = possible_languages.map(&:name) - # Don't bother with emptiness + # Don't bother with binary contents or an empty file if data.nil? || data == "" nil # Check if there's a shebang line and use that as authoritative @@ -397,7 +403,7 @@ module Linguist # # Returns the extensions Array attr_reader :filenames - + # Public: Return all possible extensions for language def all_extensions (extensions + [primary_extension]).uniq diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index dc824387..120cee58 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -89,7 +89,7 @@ Agda: Alloy: type: programming # 'modeling' would be more appropiate - lexer: Text only + lexer: Alloy color: "#cc5c24" extensions: - .als @@ -157,7 +157,6 @@ Assembly: - nasm extensions: - .asm - - .inc Augeas: type: programming @@ -222,6 +221,8 @@ BlitzBasic: - .decls BlitzMax: + type: programming + color: "#cd6400" extensions: - .bmx @@ -529,15 +530,6 @@ Dart: extensions: - .dart -DCPU-16 ASM: - type: programming - lexer: dasm16 - extensions: - - .dasm16 - - .dasm - aliases: - - dasm16 - Diff: extensions: - .diff @@ -744,12 +736,14 @@ GLSL: - .glsl - .fp - .frag + - .frg - .fshader - .geom - .glslv - .gshader - .shader - .vert + - .vrx - .vshader Genshi: @@ -807,6 +801,12 @@ Gosu: extensions: - .gs +Grace: + type: programming + lexer: Text only + extensions: + - .grace + Grammatical Framework: type: programming lexer: Haskell @@ -941,7 +941,7 @@ Hy: IDL: type: programming - lexer: Text only + lexer: IDL color: "#e3592c" extensions: - .pro @@ -960,7 +960,7 @@ Inno Setup: Idris: type: programming - lexer: Text only + lexer: Idris extensions: - .idr - .lidr @@ -1095,6 +1095,8 @@ JavaScript: - .pac - .sjs - .ssjs + - .xsjs + - .xsjslib filenames: - Jakefile interpreters: @@ -1293,6 +1295,8 @@ Mathematica: type: programming extensions: - .mathematica + - .m + - .nb lexer: Text only Matlab: @@ -1400,6 +1404,19 @@ Nimrod: - .nim - .nimrod +Nit: + type: programming + lexer: Text only + color: "#0d8921" + extensions: + - .nit + +Nix: + type: programming + lexer: Nix + extensions: + - .nix + Nu: type: programming lexer: Scheme @@ -1535,6 +1552,8 @@ PHP: - .phpt filenames: - Phakefile + interpreters: + - php Pan: type: programming @@ -1609,7 +1628,7 @@ Perl6: Pike: type: programming color: "#066ab2" - lexer: C + lexer: Pike extensions: - .pike - .pmod @@ -1706,6 +1725,7 @@ Python: - .gyp - .lmi - .pyde + - .pyp - .pyt - .pyw - .wsgi @@ -1731,6 +1751,12 @@ QML: extensions: - .qml +QMake: + lexer: Text only + extensions: + - .pro + - .pri + R: type: programming color: "#198ce7" @@ -1870,13 +1896,17 @@ Ruby: interpreters: - ruby filenames: + - .pryrc - Appraisals - Berksfile - Buildfile - Gemfile - Gemfile.lock - Guardfile + - Jarfile + - Mavenfile - Podfile + - Puppetfile - Thorfile - Vagrantfile - buildfile diff --git a/lib/linguist/lazy_blob.rb b/lib/linguist/lazy_blob.rb new file mode 100644 index 00000000..bb262241 --- /dev/null +++ b/lib/linguist/lazy_blob.rb @@ -0,0 +1,37 @@ +require 'linguist/blob_helper' +require 'rugged' + +module Linguist + class LazyBlob + include BlobHelper + + MAX_SIZE = 128 * 1024 + + attr_reader :repository + attr_reader :oid + attr_reader :name + attr_reader :mode + + def initialize(repo, oid, name, mode = nil) + @repository = repo + @oid = oid + @name = name + @mode = mode + end + + def data + load_blob! + @data + end + + def size + load_blob! + @size + end + + protected + def load_blob! + @data, @size = Rugged::Blob.to_buffer(repository, oid, MAX_SIZE) if @data.nil? + end + end +end diff --git a/lib/linguist/repository.rb b/lib/linguist/repository.rb index a62bf281..a89c81e6 100644 --- a/lib/linguist/repository.rb +++ b/lib/linguist/repository.rb @@ -1,4 +1,5 @@ -require 'linguist/file_blob' +require 'linguist/lazy_blob' +require 'rugged' module Linguist # A Repository is an abstraction of a Grit::Repo or a basic file @@ -7,100 +8,146 @@ module Linguist # Its primary purpose is for gathering language statistics across # the entire project. class Repository - # Public: Initialize a new Repository from a File directory - # - # base_path - A path String - # - # Returns a Repository - def self.from_directory(base_path) - new Dir["#{base_path}/**/*"]. - select { |f| File.file?(f) }. - map { |path| FileBlob.new(path, base_path) } + attr_reader :repository + + # Public: Create a new Repository based on the stats of + # an existing one + def self.incremental(repo, commit_oid, old_commit_oid, old_stats) + repo = self.new(repo, commit_oid) + repo.load_existing_stats(old_commit_oid, old_stats) + repo end - # Public: Initialize a new Repository + # Public: Initialize a new Repository to be analyzed for language + # data # - # enum - Enumerator that responds to `each` and - # yields Blob objects + # repo - a Rugged::Repository object + # commit_oid - the sha1 of the commit that will be analyzed; + # this is usually the master branch # # Returns a Repository - def initialize(enum) - @enum = enum - @computed_stats = false - @language = @size = nil - @sizes = Hash.new { 0 } - @file_breakdown = Hash.new { |h,k| h[k] = Array.new } + def initialize(repo, commit_oid) + @repository = repo + @commit_oid = commit_oid + + raise TypeError, 'commit_oid must be a commit SHA1' unless commit_oid.is_a?(String) + end + + # Public: Load the results of a previous analysis on this repository + # to speed up the new scan. + # + # The new analysis will be performed incrementally as to only take + # into account the file changes since the last time the repository + # was scanned + # + # old_commit_oid - the sha1 of the commit that was previously analyzed + # old_stats - the result of the previous analysis, obtained by calling + # Repository#cache on the old repository + # + # Returns nothing + def load_existing_stats(old_commit_oid, old_stats) + @old_commit_oid = old_commit_oid + @old_stats = old_stats + nil end # Public: Returns a breakdown of language stats. # # Examples # - # # => { Language['Ruby'] => 46319, - # Language['JavaScript'] => 258 } + # # => { 'Ruby' => 46319, + # 'JavaScript' => 258 } # - # Returns a Hash of Language keys and Integer size values. + # Returns a Hash of language names and Integer size values. def languages - compute_stats - @sizes + @sizes ||= begin + sizes = Hash.new { 0 } + cache.each do |_, (language, size)| + sizes[language] += size + end + sizes + end end # Public: Get primary Language of repository. # - # Returns a Language + # Returns a language name def language - compute_stats - @language + @language ||= begin + primary = languages.max_by { |(_, size)| size } + primary && primary[0] + end end # Public: Get the total size of the repository. # # Returns a byte size Integer def size - compute_stats - @size + @size ||= languages.inject(0) { |s,(_,v)| s + v } end # Public: Return the language breakdown of this repository by file + # + # Returns a map of language names => [filenames...] def breakdown_by_file - compute_stats - @file_breakdown + @file_breakdown ||= begin + breakdown = Hash.new { |h,k| h[k] = Array.new } + cache.each do |filename, (language, _)| + breakdown[language] << filename + end + breakdown + end end - # Internal: Compute language breakdown for each blob in the Repository. + # Public: Return the cached results of the analysis # - # Returns nothing - def compute_stats - return if @computed_stats + # This is a per-file breakdown that can be passed to other instances + # of Linguist::Repository to perform incremental scans + # + # Returns a map of filename => [language, size] + def cache + @cache ||= begin + if @old_commit_oid == @commit_oid + @old_stats + else + compute_stats(@old_commit_oid, @commit_oid, @old_stats) + end + end + end - @enum.each do |blob| - # Skip files that are likely binary - next if blob.likely_binary? + protected + def compute_stats(old_commit_oid, commit_oid, cache = nil) + file_map = cache ? cache.dup : {} + old_tree = old_commit_oid && Rugged::Commit.lookup(repository, old_commit_oid).tree + new_tree = Rugged::Commit.lookup(repository, commit_oid).tree - # Skip vendored or generated blobs - next if blob.vendored? || blob.generated? || blob.language.nil? + diff = Rugged::Tree.diff(repository, old_tree, new_tree) - # Only include programming languages and acceptable markup languages - if blob.language.type == :programming || Language.detectable_markup.include?(blob.language.name) + diff.each_delta do |delta| + old = delta.old_file[:path] + new = delta.new_file[:path] - # Build up the per-file breakdown stats - @file_breakdown[blob.language.group.name] << blob.name + file_map.delete(old) + next if delta.binary - @sizes[blob.language.group] += blob.size + if [:added, :modified].include? delta.status + # Skip submodules + mode = delta.new_file[:mode] + next if (mode & 040000) != 0 + + blob = Linguist::LazyBlob.new(repository, delta.new_file[:oid], new, mode.to_s(8)) + + # Skip vendored or generated blobs + next if blob.vendored? || blob.generated? || blob.language.nil? + + # Only include programming languages and acceptable markup languages + if blob.language.type == :programming || Language.detectable_markup.include?(blob.language.name) + file_map[new] = [blob.language.group.name, blob.size] + end end end - # Compute total size - @size = @sizes.inject(0) { |s,(_,v)| s + v } - - # Get primary language - if primary = @sizes.max_by { |(_, size)| size } - @language = primary[0] - end - - @computed_stats = true - - nil + file_map end end end diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index 27a46251..c78ed491 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -1,41 +1,439 @@ { "extnames": { - "Stylus": [ - ".styl" + "ABAP": [ + ".abap" ], - "IDL": [ - ".dlm", - ".pro" + "ATS": [ + ".atxt", + ".dats", + ".hats", + ".sats" ], - "OpenEdge ABL": [ - ".cls", - ".p" + "Agda": [ + ".agda" ], - "Latte": [ - ".latte" + "Alloy": [ + ".als" ], - "Racket": [ - ".scrbl" + "Apex": [ + ".cls" ], - "Assembly": [ - ".asm", - ".inc" + "AppleScript": [ + ".applescript" + ], + "Arduino": [ + ".ino" ], "AsciiDoc": [ ".adoc", ".asc", ".asciidoc" ], - "Gnuplot": [ - ".gnu", - ".gp" + "AspectJ": [ + ".aj" + ], + "Assembly": [ + ".asm" + ], + "AutoHotkey": [ + ".ahk" + ], + "Awk": [ + ".awk" + ], + "BlitzBasic": [ + ".bb" + ], + "BlitzMax": [ + ".bmx" + ], + "Bluespec": [ + ".bsv" + ], + "Brightscript": [ + ".brs" + ], + "C": [ + ".c", + ".cats", + ".h" + ], + "C#": [ + ".cs", + ".cshtml" + ], + "C++": [ + ".cc", + ".cpp", + ".h", + ".hpp", + ".inl", + ".ipp" + ], + "COBOL": [ + ".cbl", + ".ccp", + ".cob", + ".cpy" + ], + "CSS": [ + ".css" + ], + "Ceylon": [ + ".ceylon" + ], + "Cirru": [ + ".cirru" + ], + "Clojure": [ + ".cl2", + ".clj", + ".cljc", + ".cljs", + ".cljscm", + ".cljx", + ".hic" + ], + "CoffeeScript": [ + ".coffee" + ], + "Common Lisp": [ + ".cl", + ".lisp" + ], + "Component Pascal": [ + ".cp", + ".cps" + ], + "Coq": [ + ".v" + ], + "Creole": [ + ".creole" + ], + "Crystal": [ + ".cr" + ], + "Cuda": [ + ".cu", + ".cuh" + ], + "DM": [ + ".dm" + ], + "Dart": [ + ".dart" + ], + "Diff": [ + ".patch" ], "Dogescript": [ ".djs" ], + "E": [ + ".E" + ], + "ECL": [ + ".ecl" + ], + "Eagle": [ + ".brd", + ".sch" + ], + "Elm": [ + ".elm" + ], + "Emacs Lisp": [ + ".el" + ], + "Erlang": [ + ".erl", + ".escript", + ".script!" + ], + "Forth": [ + ".forth", + ".fth" + ], + "Frege": [ + ".fr" + ], + "GAMS": [ + ".gms" + ], + "GAP": [ + ".g", + ".gd", + ".gi" + ], + "GAS": [ + ".s" + ], + "GLSL": [ + ".fp", + ".frag", + ".frg", + ".glsl", + ".vrx" + ], + "Game Maker Language": [ + ".gml" + ], + "Gnuplot": [ + ".gnu", + ".gp" + ], + "Gosu": [ + ".gs", + ".gst", + ".gsx", + ".vark" + ], + "Grace": [ + ".grace" + ], + "Grammatical Framework": [ + ".gf" + ], + "Groovy": [ + ".gradle", + ".grt", + ".gtpl", + ".gvy", + ".script!" + ], + "Groovy Server Pages": [ + ".gsp" + ], + "HTML": [ + ".html", + ".st" + ], + "Haml": [ + ".haml" + ], + "Handlebars": [ + ".handlebars", + ".hbs" + ], + "Haskell": [ + ".hs" + ], + "Hy": [ + ".hy" + ], + "IDL": [ + ".dlm", + ".pro" + ], + "Idris": [ + ".idr" + ], + "Inform 7": [ + ".i7x", + ".ni" + ], + "Ioke": [ + ".ik" + ], + "Isabelle": [ + ".thy" + ], + "JSON": [ + ".json", + ".lock" + ], + "JSON5": [ + ".json5" + ], + "JSONLD": [ + ".jsonld" + ], + "JSONiq": [ + ".jq" + ], + "Jade": [ + ".jade" + ], + "Java": [ + ".java" + ], + "JavaScript": [ + ".frag", + ".js", + ".script!", + ".xsjs", + ".xsjslib" + ], + "Julia": [ + ".jl" + ], + "KRL": [ + ".krl" + ], + "Kit": [ + ".kit" + ], + "Kotlin": [ + ".kt" + ], + "LFE": [ + ".lfe" + ], + "Lasso": [ + ".las", + ".lasso", + ".lasso9", + ".ldml" + ], + "Latte": [ + ".latte" + ], + "Less": [ + ".less" + ], + "Liquid": [ + ".liquid" + ], + "Literate Agda": [ + ".lagda" + ], + "Literate CoffeeScript": [ + ".litcoffee" + ], + "LiveScript": [ + ".ls" + ], + "Logos": [ + ".xm" + ], + "Logtalk": [ + ".lgt" + ], + "Lua": [ + ".pd_lua" + ], + "M": [ + ".m" + ], + "MTML": [ + ".mtml" + ], + "Makefile": [ + ".script!" + ], "Markdown": [ ".md" ], + "Mask": [ + ".mask" + ], + "Mathematica": [ + ".m", + ".nb" + ], + "Matlab": [ + ".m" + ], + "Max": [ + ".maxhelp", + ".maxpat", + ".mxt" + ], + "MediaWiki": [ + ".mediawiki" + ], + "Mercury": [ + ".m", + ".moo" + ], + "Monkey": [ + ".monkey" + ], + "Moocode": [ + ".moo" + ], + "MoonScript": [ + ".moon" + ], + "NSIS": [ + ".nsh", + ".nsi" + ], + "Nemerle": [ + ".n" + ], + "NetLogo": [ + ".nlogo" + ], + "Nimrod": [ + ".nim" + ], + "Nit": [ + ".nit" + ], + "Nix": [ + ".nix" + ], + "Nu": [ + ".nu", + ".script!" + ], + "OCaml": [ + ".eliom", + ".ml" + ], + "Objective-C": [ + ".h", + ".m" + ], + "Objective-C++": [ + ".mm" + ], + "Omgrofl": [ + ".omgrofl" + ], + "Opa": [ + ".opa" + ], + "OpenCL": [ + ".cl" + ], + "OpenEdge ABL": [ + ".cls", + ".p" + ], + "Org": [ + ".org" + ], + "Ox": [ + ".ox", + ".oxh", + ".oxo" + ], + "Oxygene": [ + ".oxygene" + ], + "PAWN": [ + ".pwn" + ], + "PHP": [ + ".module", + ".php", + ".script!" + ], + "Pan": [ + ".pan" + ], + "Parrot Assembly": [ + ".pasm" + ], + "Parrot Internal Representation": [ + ".pir" + ], + "Pascal": [ + ".dpr" + ], "Perl": [ ".fcgi", ".pl", @@ -44,6 +442,232 @@ ".script!", ".t" ], + "Perl6": [ + ".p6", + ".pm6" + ], + "Pike": [ + ".pike", + ".pmod" + ], + "Pod": [ + ".pod" + ], + "PogoScript": [ + ".pogo" + ], + "PostScript": [ + ".ps" + ], + "PowerShell": [ + ".ps1", + ".psm1" + ], + "Processing": [ + ".pde" + ], + "Prolog": [ + ".ecl", + ".pl", + ".prolog" + ], + "Propeller Spin": [ + ".spin" + ], + "Protocol Buffer": [ + ".proto" + ], + "PureScript": [ + ".purs" + ], + "Python": [ + ".py", + ".pyde", + ".pyp", + ".script!" + ], + "QMake": [ + ".pri", + ".pro", + ".script!" + ], + "R": [ + ".R", + ".Rd", + ".r", + ".rsx", + ".script!" + ], + "RDoc": [ + ".rdoc" + ], + "RMarkdown": [ + ".rmd" + ], + "Racket": [ + ".scrbl" + ], + "Ragel in Ruby Host": [ + ".rl" + ], + "Rebol": [ + ".r", + ".r2", + ".r3", + ".reb", + ".rebol" + ], + "Red": [ + ".red", + ".reds" + ], + "RobotFramework": [ + ".robot" + ], + "Ruby": [ + ".pluginspec", + ".rabl", + ".rake", + ".rb", + ".script!" + ], + "Rust": [ + ".rs" + ], + "SAS": [ + ".sas" + ], + "SCSS": [ + ".scss" + ], + "SQL": [ + ".prc", + ".sql", + ".tab", + ".udf", + ".viw" + ], + "STON": [ + ".ston" + ], + "Sass": [ + ".sass", + ".scss" + ], + "Scala": [ + ".sbt", + ".sc", + ".script!" + ], + "Scaml": [ + ".scaml" + ], + "Scheme": [ + ".sld", + ".sps" + ], + "Scilab": [ + ".sce", + ".sci", + ".tst" + ], + "Shell": [ + ".bash", + ".script!", + ".sh", + ".zsh" + ], + "ShellSession": [ + ".sh-session" + ], + "Shen": [ + ".shen" + ], + "Slash": [ + ".sl" + ], + "Slim": [ + ".slim" + ], + "Smalltalk": [ + ".st" + ], + "SourcePawn": [ + ".sp" + ], + "Squirrel": [ + ".nut" + ], + "Standard ML": [ + ".ML", + ".fun", + ".sig", + ".sml" + ], + "Stata": [ + ".ado", + ".do", + ".doh", + ".ihlp", + ".mata", + ".matah", + ".sthlp" + ], + "Stylus": [ + ".styl" + ], + "SuperCollider": [ + ".scd" + ], + "Swift": [ + ".swift" + ], + "SystemVerilog": [ + ".sv", + ".svh", + ".vh" + ], + "TXL": [ + ".txl" + ], + "Tcl": [ + ".tm" + ], + "TeX": [ + ".cls" + ], + "Tea": [ + ".tea" + ], + "Turing": [ + ".t" + ], + "TypeScript": [ + ".ts" + ], + "UnrealScript": [ + ".uc" + ], + "VCL": [ + ".vcl" + ], + "VHDL": [ + ".vhd" + ], + "Verilog": [ + ".v" + ], + "Visual Basic": [ + ".cls", + ".vb", + ".vbhtml" + ], + "Volt": [ + ".volt" + ], + "XC": [ + ".xc" + ], "XML": [ ".ant", ".csproj", @@ -58,75 +682,14 @@ ".vcxproj", ".xml" ], - "MTML": [ - ".mtml" + "XProc": [ + ".xpl" ], - "Lasso": [ - ".las", - ".lasso", - ".lasso9", - ".ldml" + "XQuery": [ + ".xqm" ], - "Max": [ - ".maxhelp", - ".maxpat", - ".mxt" - ], - "Awk": [ - ".awk" - ], - "JavaScript": [ - ".frag", - ".js", - ".script!" - ], - "Visual Basic": [ - ".cls", - ".vb", - ".vbhtml" - ], - "GAP": [ - ".g", - ".gd", - ".gi" - ], - "Logtalk": [ - ".lgt" - ], - "Scheme": [ - ".sld", - ".sps" - ], - "C++": [ - ".cc", - ".cpp", - ".h", - ".hpp", - ".inl", - ".ipp" - ], - "JSON5": [ - ".json5" - ], - "MoonScript": [ - ".moon" - ], - "Mercury": [ - ".m", - ".moo" - ], - "Perl6": [ - ".p6", - ".pm6" - ], - "VHDL": [ - ".vhd" - ], - "Literate CoffeeScript": [ - ".litcoffee" - ], - "KRL": [ - ".krl" + "XSLT": [ + ".xslt" ], "Xojo": [ ".xojo_code", @@ -136,584 +699,61 @@ ".xojo_toolbar", ".xojo_window" ], - "Nimrod": [ - ".nim" - ], - "Pascal": [ - ".dpr" - ], - "C#": [ - ".cs", - ".cshtml" - ], - "Groovy Server Pages": [ - ".gsp" - ], - "GAMS": [ - ".gms" - ], - "COBOL": [ - ".cbl", - ".ccp", - ".cob", - ".cpy" - ], - "Cuda": [ - ".cu", - ".cuh" - ], - "Gosu": [ - ".gs", - ".gst", - ".gsx", - ".vark" - ], - "Prolog": [ - ".ecl", - ".pl", - ".prolog" - ], - "Tcl": [ - ".tm" - ], - "Squirrel": [ - ".nut" + "Xtend": [ + ".xtend" ], "YAML": [ ".yml" ], - "Clojure": [ - ".cl2", - ".clj", - ".cljc", - ".cljs", - ".cljscm", - ".cljx", - ".hic" - ], - "Tea": [ - ".tea" - ], - "M": [ - ".m" - ], - "NSIS": [ - ".nsh", - ".nsi" - ], - "Pod": [ - ".pod" - ], - "AutoHotkey": [ - ".ahk" - ], - "TXL": [ - ".txl" - ], - "wisp": [ - ".wisp" - ], - "Mathematica": [ - ".m" - ], - "Coq": [ - ".v" - ], - "GAS": [ - ".s" - ], - "Verilog": [ - ".v" - ], - "Apex": [ - ".cls" - ], - "Scala": [ - ".sbt", - ".sc", - ".script!" - ], - "JSONLD": [ - ".jsonld" - ], - "LiveScript": [ - ".ls" - ], - "Org": [ - ".org" - ], - "Liquid": [ - ".liquid" - ], - "UnrealScript": [ - ".uc" - ], - "Component Pascal": [ - ".cp", - ".cps" - ], - "PogoScript": [ - ".pogo" - ], - "Creole": [ - ".creole" - ], - "Processing": [ - ".pde" - ], - "Emacs Lisp": [ - ".el" - ], - "Elm": [ - ".elm" - ], - "Inform 7": [ - ".i7x", - ".ni" - ], - "XC": [ - ".xc" - ], - "JSON": [ - ".json", - ".lock" - ], - "Scaml": [ - ".scaml" - ], - "Shell": [ - ".bash", - ".script!", - ".sh", - ".zsh" - ], - "Sass": [ - ".sass", - ".scss" - ], - "Oxygene": [ - ".oxygene" - ], - "ATS": [ - ".atxt", - ".dats", - ".hats", - ".sats" - ], - "SCSS": [ - ".scss" - ], - "R": [ - ".R", - ".Rd", - ".r", - ".rsx", - ".script!" - ], - "Brightscript": [ - ".brs" - ], - "HTML": [ - ".html", - ".st" - ], - "Frege": [ - ".fr" - ], - "Literate Agda": [ - ".lagda" - ], - "Lua": [ - ".pd_lua" - ], - "XSLT": [ - ".xslt" + "Zephir": [ + ".zep" ], "Zimpl": [ ".zmpl" ], - "Groovy": [ - ".gradle", - ".grt", - ".gtpl", - ".gvy", - ".script!" - ], - "Ioke": [ - ".ik" - ], - "Jade": [ - ".jade" - ], - "TypeScript": [ - ".ts" - ], - "Erlang": [ - ".erl", - ".escript", - ".script!" - ], - "ABAP": [ - ".abap" - ], - "Rebol": [ - ".r", - ".r2", - ".r3", - ".reb", - ".rebol" - ], - "SuperCollider": [ - ".scd" - ], - "CoffeeScript": [ - ".coffee" - ], - "PHP": [ - ".module", - ".php", - ".script!" - ], - "MediaWiki": [ - ".mediawiki" - ], - "Ceylon": [ - ".ceylon" + "edn": [ + ".edn" ], "fish": [ ".fish" ], - "Diff": [ - ".patch" - ], - "Slash": [ - ".sl" - ], - "Objective-C": [ - ".h", - ".m" - ], - "Stata": [ - ".ado", - ".do", - ".doh", - ".ihlp", - ".mata", - ".matah", - ".sthlp" - ], - "Shen": [ - ".shen" - ], - "Mask": [ - ".mask" - ], - "SAS": [ - ".sas" - ], - "Xtend": [ - ".xtend" - ], - "Arduino": [ - ".ino" - ], - "XProc": [ - ".xpl" - ], - "Haml": [ - ".haml" - ], - "AspectJ": [ - ".aj" - ], - "RDoc": [ - ".rdoc" - ], - "AppleScript": [ - ".applescript" - ], - "Ox": [ - ".ox", - ".oxh", - ".oxo" - ], - "STON": [ - ".ston" - ], - "Scilab": [ - ".sce", - ".sci", - ".tst" - ], - "Dart": [ - ".dart" - ], - "Nu": [ - ".nu", - ".script!" - ], - "Alloy": [ - ".als" - ], - "Red": [ - ".red", - ".reds" - ], - "BlitzBasic": [ - ".bb" - ], - "RobotFramework": [ - ".robot" - ], - "Agda": [ - ".agda" - ], - "Hy": [ - ".hy" - ], - "Less": [ - ".less" - ], - "Kit": [ - ".kit" - ], - "E": [ - ".E" - ], - "DM": [ - ".dm" - ], - "OpenCL": [ - ".cl" - ], - "ShellSession": [ - ".sh-session" - ], - "GLSL": [ - ".fp", - ".frag", - ".glsl" - ], - "ECL": [ - ".ecl" - ], - "Makefile": [ - ".script!" - ], - "Haskell": [ - ".hs" - ], - "Slim": [ - ".slim" - ], - "Zephir": [ - ".zep" - ], - "OCaml": [ - ".eliom", - ".ml" - ], - "VCL": [ - ".vcl" - ], - "Smalltalk": [ - ".st" - ], - "Parrot Assembly": [ - ".pasm" - ], - "Isabelle": [ - ".thy" - ], - "Protocol Buffer": [ - ".proto" - ], - "SQL": [ - ".prc", - ".sql", - ".tab", - ".udf", - ".viw" - ], - "Nemerle": [ - ".n" - ], - "Bluespec": [ - ".bsv" - ], - "Swift": [ - ".swift" - ], - "SourcePawn": [ - ".sp" - ], - "Propeller Spin": [ - ".spin" - ], - "Cirru": [ - ".cirru" - ], - "Julia": [ - ".jl" - ], - "Ragel in Ruby Host": [ - ".rl" - ], - "JSONiq": [ - ".jq" - ], - "TeX": [ - ".cls" - ], - "XQuery": [ - ".xqm" - ], - "RMarkdown": [ - ".rmd" - ], - "Crystal": [ - ".cr" - ], - "edn": [ - ".edn" - ], - "PowerShell": [ - ".ps1", - ".psm1" - ], - "Game Maker Language": [ - ".gml" - ], - "Volt": [ - ".volt" - ], - "Monkey": [ - ".monkey" - ], - "SystemVerilog": [ - ".sv", - ".svh", - ".vh" - ], - "Grammatical Framework": [ - ".gf" - ], - "PostScript": [ - ".ps" - ], - "CSS": [ - ".css" - ], - "Forth": [ - ".forth", - ".fth" - ], - "LFE": [ - ".lfe" - ], - "Moocode": [ - ".moo" - ], - "Java": [ - ".java" - ], - "Turing": [ - ".t" - ], - "Kotlin": [ - ".kt" - ], - "Idris": [ - ".idr" - ], - "PureScript": [ - ".purs" - ], - "NetLogo": [ - ".nlogo" - ], - "Eagle": [ - ".brd", - ".sch" - ], - "Common Lisp": [ - ".cl", - ".lisp" - ], - "Parrot Internal Representation": [ - ".pir" - ], - "Objective-C++": [ - ".mm" - ], - "Rust": [ - ".rs" - ], - "Matlab": [ - ".m" - ], - "Pan": [ - ".pan" - ], - "PAWN": [ - ".pwn" - ], - "Ruby": [ - ".pluginspec", - ".rabl", - ".rake", - ".rb", - ".script!" - ], - "C": [ - ".c", - ".cats", - ".h" - ], - "Standard ML": [ - ".ML", - ".fun", - ".sig", - ".sml" - ], - "Logos": [ - ".xm" - ], - "Omgrofl": [ - ".omgrofl" - ], - "Opa": [ - ".opa" - ], - "Python": [ - ".py", - ".pyde", - ".script!" - ], - "Handlebars": [ - ".handlebars", - ".hbs" + "wisp": [ + ".wisp" ] }, "interpreters": { }, "filenames": { + "ApacheConf": [ + ".htaccess", + "apache2.conf", + "httpd.conf" + ], + "INI": [ + ".editorconfig", + ".gitconfig" + ], + "Makefile": [ + "Makefile" + ], "Nginx": [ "nginx.conf" ], + "PHP": [ + ".php" + ], "Perl": [ "ack" ], - "XML": [ - ".cproject" + "R": [ + "expr-dist" ], - "YAML": [ - ".gemrc" - ], - "VimL": [ - ".gvimrc", - ".vimrc" + "Ruby": [ + ".pryrc", + "Appraisals", + "Capfile", + "Rakefile" ], "Shell": [ ".bash_logout", @@ -741,34958 +781,25 @@ "zshenv", "zshrc" ], - "R": [ - "expr-dist" + "VimL": [ + ".gvimrc", + ".vimrc" ], - "PHP": [ - ".php" + "XML": [ + ".cproject" ], - "ApacheConf": [ - ".htaccess", - "apache2.conf", - "httpd.conf" + "YAML": [ + ".gemrc" ], - "Makefile": [ - "Makefile" - ], - "INI": [ - ".editorconfig", - ".gitconfig" - ], - "Ruby": [ - "Appraisals", - "Capfile", - "Rakefile" + "Zephir": [ + "exception.zep.c", + "exception.zep.h", + "exception.zep.php" ] }, - "tokens_total": 638387, - "languages_total": 826, + "tokens_total": 630435, + "languages_total": 869, "tokens": { - "Stylus": { - "border": 6, - "-": 10, - "radius": 5, - "(": 1, - ")": 1, - "webkit": 1, - "arguments": 3, - "moz": 1, - "a.button": 1, - "px": 5, - "fonts": 2, - "helvetica": 1, - "arial": 1, - "sans": 1, - "serif": 1, - "body": 1, - "{": 1, - "padding": 3, - ";": 2, - "font": 1, - "px/1.4": 1, - "}": 1, - "form": 2, - "input": 2, - "[": 2, - "type": 2, - "text": 2, - "]": 2, - "solid": 1, - "#eee": 1, - "color": 2, - "#ddd": 1, - "textarea": 1, - "@extends": 2, - "foo": 2, - "#FFF": 1, - ".bar": 1, - "background": 1, - "#000": 1 - }, - "IDL": { - "MODULE": 1, - "mg_analysis": 1, - "DESCRIPTION": 1, - "Tools": 1, - "for": 2, - "analysis": 1, - "VERSION": 1, - "SOURCE": 1, - "mgalloy": 1, - "BUILD_DATE": 1, - "January": 1, - "FUNCTION": 2, - "MG_ARRAY_EQUAL": 1, - "KEYWORDS": 1, - "MG_TOTAL": 1, - ";": 59, - "docformat": 3, - "+": 8, - "Find": 1, - "the": 7, - "greatest": 1, - "common": 1, - "denominator": 1, - "(": 26, - "GCD": 1, - ")": 26, - "two": 1, - "positive": 2, - "integers.": 1, - "Returns": 3, - "integer": 5, - "Params": 3, - "a": 4, - "in": 4, - "required": 4, - "type": 5, - "first": 1, - "b": 4, - "second": 1, - "-": 14, - "function": 4, - "mg_gcd": 2, - "compile_opt": 3, - "strictarr": 3, - "on_error": 1, - "if": 5, - "n_params": 1, - "ne": 1, - "then": 5, - "message": 2, - "mg_isinteger": 2, - "||": 1, - "begin": 2, - "endif": 2, - "_a": 3, - "abs": 2, - "_b": 3, - "minArg": 5, - "<": 1, - "maxArg": 3, - "eq": 2, - "return": 5, - "remainder": 3, - "mod": 1, - "end": 5, - "Inverse": 1, - "hyperbolic": 2, - "cosine.": 1, - "Uses": 1, - "formula": 1, - "text": 1, - "{": 3, - "acosh": 1, - "}": 3, - "z": 9, - "ln": 1, - "sqrt": 4, - "Examples": 2, - "The": 1, - "arc": 1, - "sine": 1, - "looks": 1, - "like": 2, - "IDL": 5, - "x": 8, - "*": 2, - "findgen": 1, - "/": 1, - "plot": 1, - "mg_acosh": 2, - "xstyle": 1, - "This": 1, - "should": 1, - "look": 1, - "..": 1, - "image": 1, - "acosh.png": 1, - "float": 1, - "double": 2, - "complex": 2, - "or": 1, - "depending": 1, - "on": 1, - "input": 2, - "numeric": 1, - "alog": 1, - "Truncate": 1, - "argument": 2, - "towards": 1, - "i.e.": 1, - "takes": 1, - "FLOOR": 1, - "of": 4, - "values": 2, - "and": 1, - "CEIL": 1, - "negative": 1, - "values.": 1, - "Try": 1, - "main": 2, - "level": 2, - "program": 2, - "at": 1, - "this": 1, - "file.": 1, - "It": 1, - "does": 1, - "print": 4, - "mg_trunc": 3, - "[": 6, - "]": 6, - "floor": 2, - "ceil": 2, - "array": 2, - "same": 1, - "as": 1, - "float/double": 1, - "containing": 1, - "to": 1, - "truncate": 1, - "result": 3, - "posInd": 3, - "where": 1, - "gt": 2, - "nposInd": 2, - "L": 1, - "example": 1 - }, - "OpenEdge ABL": { - "DEFINE": 16, - "INPUT": 11, - "PARAMETER": 3, - "objSendEmailAlg": 2, - "AS": 21, - "email.SendEmailSocket": 1, - "NO": 13, - "-": 73, - "UNDO.": 12, - "VARIABLE": 12, - "vbuffer": 9, - "MEMPTR": 2, - "vstatus": 1, - "LOGICAL": 1, - "vState": 2, - "INTEGER": 6, - "ASSIGN": 2, - "vstate": 1, - "FUNCTION": 1, - "getHostname": 1, - "RETURNS": 1, - "CHARACTER": 9, - "(": 44, - ")": 44, - "cHostname": 1, - "THROUGH": 1, - "hostname": 1, - "ECHO.": 1, - "IMPORT": 1, - "UNFORMATTED": 1, - "cHostname.": 2, - "CLOSE.": 1, - "RETURN": 7, - "END": 12, - "FUNCTION.": 1, - "PROCEDURE": 2, - "newState": 2, - "INTEGER.": 1, - "pstring": 4, - "CHARACTER.": 1, - "newState.": 1, - "IF": 2, - "THEN": 2, - "RETURN.": 1, - "SET": 5, - "SIZE": 5, - "LENGTH": 3, - "+": 21, - "PUT": 1, - "STRING": 7, - "pstring.": 1, - "SELF": 4, - "WRITE": 1, - ".": 14, - "PROCEDURE.": 2, - "ReadSocketResponse": 1, - "vlength": 5, - "str": 3, - "v": 1, - "MESSAGE": 2, - "GET": 3, - "BYTES": 2, - "AVAILABLE": 2, - "VIEW": 1, - "ALERT": 1, - "BOX.": 1, - "DO": 2, - "READ": 1, - "handleResponse": 1, - "END.": 2, - "USING": 3, - "Progress.Lang.*.": 3, - "CLASS": 2, - "email.Email": 2, - "USE": 2, - "WIDGET": 2, - "POOL": 2, - "&": 3, - "SCOPED": 1, - "QUOTES": 1, - "@#": 1, - "%": 2, - "*": 2, - "._MIME_BOUNDARY_.": 1, - "#@": 1, - "WIN": 1, - "From": 4, - "To": 8, - "CC": 2, - "BCC": 2, - "Personal": 1, - "Private": 1, - "Company": 2, - "confidential": 2, - "normal": 1, - "urgent": 2, - "non": 1, - "Cannot": 3, - "locate": 3, - "file": 6, - "in": 3, - "the": 3, - "filesystem": 3, - "R": 3, - "File": 3, - "exists": 3, - "but": 3, - "is": 3, - "not": 3, - "readable": 3, - "Error": 3, - "copying": 3, - "from": 3, - "<\">": 8, - "ttSenders": 2, - "cEmailAddress": 8, - "n": 13, - "ttToRecipients": 1, - "Reply": 3, - "ttReplyToRecipients": 1, - "Cc": 2, - "ttCCRecipients": 1, - "Bcc": 2, - "ttBCCRecipients": 1, - "Return": 1, - "Receipt": 1, - "ttDeliveryReceiptRecipients": 1, - "Disposition": 3, - "Notification": 1, - "ttReadReceiptRecipients": 1, - "Subject": 2, - "Importance": 3, - "H": 1, - "High": 1, - "L": 1, - "Low": 1, - "Sensitivity": 2, - "Priority": 2, - "Date": 4, - "By": 1, - "Expiry": 2, - "Mime": 1, - "Version": 1, - "Content": 10, - "Type": 4, - "multipart/mixed": 1, - ";": 5, - "boundary": 1, - "text/plain": 2, - "charset": 2, - "Transfer": 4, - "Encoding": 4, - "base64": 2, - "bit": 2, - "application/octet": 1, - "stream": 1, - "attachment": 2, - "filename": 2, - "ttAttachments.cFileName": 2, - "cNewLine.": 1, - "lcReturnData.": 1, - "METHOD.": 6, - "METHOD": 6, - "PUBLIC": 6, - "send": 1, - "objSendEmailAlgorithm": 1, - "sendEmail": 2, - "THIS": 1, - "OBJECT": 2, - "CLASS.": 2, - "INTERFACE": 1, - "email.SendEmailAlgorithm": 1, - "ipobjEmail": 1, - "INTERFACE.": 1, - "email.Util": 1, - "FINAL": 1, - "PRIVATE": 1, - "STATIC": 5, - "cMonthMap": 2, - "EXTENT": 1, - "INITIAL": 1, - "[": 2, - "]": 2, - "ABLDateTimeToEmail": 3, - "ipdttzDateTime": 6, - "DATETIME": 3, - "TZ": 2, - "DAY": 1, - "MONTH": 1, - "YEAR": 1, - "TRUNCATE": 2, - "MTIME": 1, - "/": 2, - "ABLTimeZoneToString": 2, - "TIMEZONE": 1, - "ipdtDateTime": 2, - "ipiTimeZone": 3, - "ABSOLUTE": 1, - "MODULO": 1, - "LONGCHAR": 4, - "ConvertDataToBase64": 1, - "iplcNonEncodedData": 2, - "lcPreBase64Data": 4, - "lcPostBase64Data": 3, - "mptrPostBase64Data": 3, - "i": 3, - "COPY": 1, - "LOB": 1, - "FROM": 1, - "TO": 2, - "mptrPostBase64Data.": 1, - "BASE64": 1, - "ENCODE": 1, - "BY": 1, - "SUBSTRING": 1, - "CHR": 2, - "lcPostBase64Data.": 1 - }, - "Latte": { - "{": 54, - "**": 1, - "*": 4, - "@param": 3, - "string": 2, - "basePath": 1, - "web": 1, - "base": 1, - "path": 1, - "robots": 2, - "tell": 1, - "how": 1, - "to": 2, - "index": 1, - "the": 1, - "content": 1, - "of": 3, - "a": 4, - "page": 1, - "(": 18, - "optional": 1, - ")": 18, - "array": 1, - "flashes": 1, - "flash": 3, - "messages": 1, - "}": 54, - "": 1, - "html": 1, - "": 1, - "
": 1, - "": 6, - "charset=": 1, - "name=": 4, - "content=": 5, - "n": 8, - "ifset=": 1, - "http": 1, - "equiv=": 1, - "": 1,
- "alias.": 2,
- "response.": 1,
- "Setter": 2,
- "either": 2,
- "headers.": 1,
- "body_str": 1,
- "io": 1,
- "sets": 4,
- "body.": 1,
- "IO": 1,
- "Handle": 1,
- "": 1,
- "X": 2,
- "text/plain": 1,
- "gzip": 1,
- "normalize": 1,
- "given": 10,
- "string.": 1,
- "Users": 1,
- "responsible": 1,
- "properly": 1,
- "": 1,
- "names": 1,
- "their": 1,
- "corresponding": 1,
- "": 2,
- "everything": 1,
- "": 1,
- "": 2,
- "": 1,
- "": 1,
- "": 1,
- "integer": 1,
- "epoch": 1,
- "time": 3,
- "": 1,
- "convert": 1,
- "formats": 1,
- "<+3M>": 1,
- "reference.": 1,
- "AUTHOR": 1,
- "MAIN": 1,
- "main": 3,
- "env_is_usable": 3,
- "th": 1,
- "pt": 1,
- "@keys": 2,
- "ACK_/": 1,
- "@ENV": 1,
- "load_colors": 1,
- "ACK_SWITCHES": 1,
- "Unbuffer": 1,
- "mode": 1,
- "build_regex": 3,
- "nargs": 2,
- "Resource": 5,
- "file_matching": 2,
- "check_regex": 2,
- "finder": 1,
- "options": 7,
- "FILE...": 1,
- "DIRECTORY...": 1,
- "designed": 1,
- "replacement": 1,
- "uses": 2,
- "": 5,
- "searches": 1,
- "named": 3,
- "FILEs": 1,
- "standard": 1,
- "PATTERN.": 1,
- "By": 2,
- "prints": 2,
- "also": 7,
- "actually": 1,
- "let": 1,
- "advantage": 1,
- ".wango": 1,
- "won": 1,
- "throw": 1,
- "away": 1,
- "times": 2,
- "symlinks": 1,
- "whatever": 1,
- "were": 1,
- "specified": 3,
- "line.": 4,
- "default.": 2,
- "": 11,
- "included": 1,
- "search.": 1,
- "matched": 1,
- "against": 1,
- "shell": 4,
- "glob.": 1,
- "<-i>": 5,
- "<-w>": 2,
- "<-v>": 3,
- "<-Q>": 4,
- "relative": 1,
- "convenience": 1,
- "<-f>": 6,
- "<--group>": 2,
- "<--nogroup>": 2,
- "groups": 1,
- "with.": 1,
- "interactively.": 1,
- "result": 1,
- "per": 1,
- "grep.": 2,
- "redirected.": 1,
- "<-H>": 1,
- "<--with-filename>": 1,
- "<-h>": 1,
- "<--no-filename>": 1,
- "Suppress": 1,
- "prefixing": 1,
- "searched.": 1,
- "<--help>": 1,
- "short": 1,
- "help": 2,
- "statement.": 1,
- "<--ignore-case>": 1,
- "Ignore": 3,
- "case": 3,
- "strings.": 1,
- "applies": 3,
- "regexes": 3,
- "<-g>": 5,
- "<-G>": 3,
- "options.": 4,
- "": 2,
- "etc": 2,
- "directories.": 2,
- "mason": 1,
- "may": 3,
- "wish": 1,
- "include": 1,
- "<--ignore-dir=data>": 1,
- "<--noignore-dir>": 1,
- "normally": 1,
- "perhaps": 1,
- "research": 1,
- "<.svn/props>": 1,
- "name.": 1,
- "Nested": 1,
- "": 1,
- "NOT": 1,
- "supported.": 1,
- "specify": 1,
- "<--ignore-dir=foo>": 1,
- "taken": 1,
- "account": 1,
- "explicitly": 1,
- "": 2,
- "Multiple": 1,
- "<--line>": 1,
- "comma": 1,
- "separated": 2,
- "<--line=3,5,7>": 1,
- "<--line=4-7>": 1,
- "works.": 1,
- "ascending": 1,
- "order": 2,
- "matter": 1,
- "<-l>": 2,
- "<--files-with-matches>": 1,
- "text.": 1,
- "<-L>": 1,
- "<--files-without-matches>": 1,
- "equivalent": 2,
- "specifying": 1,
- "Specify": 1,
- "explicitly.": 1,
- "helpful": 2,
- "": 1,
- "via": 1,
- "": 4,
- "": 4,
- "environment": 2,
- "variables.": 1,
- "Using": 3,
- "suppress": 3,
- "grouping": 3,
- "coloring": 3,
- "piping": 3,
- "does.": 2,
- "<--passthru>": 1,
- "whether": 1,
- "they": 1,
- "expression.": 1,
- "Highlighting": 1,
- "though": 1,
- "highlight": 1,
- "seeing": 1,
- "tail": 1,
- "/access.log": 1,
- "<--print0>": 1,
- "works": 1,
- "conjunction": 1,
- "null": 1,
- "byte": 1,
- "usual": 1,
- "newline.": 1,
- "dealing": 1,
- "whitespace": 1,
- "html": 1,
- "xargs": 2,
- "rm": 1,
- "<--literal>": 1,
- "Quote": 1,
- "metacharacters": 2,
- "treated": 1,
- "literal.": 1,
- "<-r>": 1,
- "<-R>": 1,
- "<--recurse>": 1,
- "compatibility": 2,
- "turning": 1,
- "<--no-recurse>": 1,
- "off.": 1,
- "<--smart-case>": 1,
- "<--no-smart-case>": 1,
- "strings": 1,
- "uppercase": 1,
- "characters.": 1,
- "similar": 1,
- "": 1,
- "vim.": 1,
- "overrides": 2,
- "option.": 1,
- "<--sort-files>": 1,
- "Sorts": 1,
- "Use": 6,
- "listings": 1,
- "deterministic": 1,
- "runs": 1,
- "<--show-types>": 1,
- "Outputs": 1,
- "associates": 1,
- "Works": 1,
- "<--thpppt>": 1,
- "Display": 1,
- "important": 1,
- "Bill": 1,
- "Cat": 1,
- "logo.": 1,
- "exact": 1,
- "spelling": 1,
- "<--thpppppt>": 1,
- "important.": 1,
- "make": 3,
- "perl": 8,
- "php": 2,
- "python": 1,
- "location.": 1,
- "variable": 1,
- "specifies": 1,
- "placed": 1,
- "front": 1,
- "explicit": 1,
- "Specifies": 4,
- "recognized": 1,
- "clear": 2,
- "dark": 1,
- "underline": 1,
- "underscore": 2,
- "blink": 1,
- "reverse": 1,
- "concealed": 1,
- "red": 1,
- "blue": 1,
- "magenta": 1,
- "on_black": 1,
- "on_red": 1,
- "on_green": 1,
- "on_blue": 1,
- "on_magenta": 1,
- "on_cyan": 1,
- "on_white.": 1,
- "Case": 1,
- "significant.": 1,
- "Underline": 1,
- "reset.": 1,
- "alone": 1,
- "foreground": 1,
- "on_color": 1,
- "background": 1,
- "color.": 2,
- "<--color-filename>": 1,
- "printed": 1,
- "<--color>": 1,
- "mode.": 1,
- "<--color-lineno>": 1,
- "See": 1,
- "": 1,
- "specifications.": 1,
- "": 1,
- "": 1,
- "": 1,
- "send": 1,
- "output.": 1,
- "except": 1,
- "assume": 1,
- "both": 1,
- "understands": 1,
- "sequences.": 1,
- "never": 1,
- "ACK": 2,
- "OTHER": 1,
- "TOOLS": 1,
- "Vim": 3,
- "integration": 3,
- "integrates": 1,
- "easily": 2,
- "editor.": 1,
- "<.vimrc>": 1,
- "grepprg": 1,
- "That": 3,
- "examples": 1,
- "<-a>": 1,
- "flags.": 1,
- "Now": 1,
- "step": 1,
- "Dumper": 1,
- "perllib": 1,
- "Emacs": 1,
- "Phil": 1,
- "Jackson": 1,
- "put": 1,
- "": 1,
- "extension": 1,
- "": 1,
- "TextMate": 2,
- "Pedro": 1,
- "Melo": 1,
- "who": 1,
- "writes": 1,
- "Shell": 2,
- "Code": 1,
- "greater": 1,
- "normal": 1,
- "<$?=256>": 1,
- "": 1,
- "backticks.": 1,
- "errors": 1,
- "used.": 1,
- "least": 1,
- "returned.": 1,
- "DEBUGGING": 1,
- "PROBLEMS": 1,
- "expecting": 1,
- "forgotten": 1,
- "<--noenv>": 1,
- "<.ackrc>": 1,
- "remember.": 1,
- "Put": 1,
- "definitions": 1,
- "it.": 1,
- "smart": 1,
- "too.": 1,
- "there.": 1,
- "working": 1,
- "big": 1,
- "codesets": 1,
- "ideal": 1,
- "sending": 1,
- "": 1,
- "prefer": 1,
- "doubt": 1,
- "day": 1,
- "find": 1,
- "trouble": 1,
- "spots": 1,
- "website": 1,
- "visitor.": 1,
- "had": 1,
- "problem": 1,
- "loading": 1,
- "": 1,
- "took": 1,
- "log": 3,
- "scanned": 1,
- "twice.": 1,
- "aa.bb.cc.dd": 1,
- "/path/to/access.log": 1,
- "B5": 1,
- "troublesome.gif": 1,
- "first": 1,
- "finds": 2,
- "IP.": 1,
- "second": 1,
- "troublesome": 1,
- "GIF": 1,
- "shows": 1,
- "previous": 1,
- "five": 1,
- "case.": 1,
- "Share": 1,
- "knowledge": 1,
- "Join": 1,
- "mailing": 1,
- "list.": 1,
- "Send": 1,
- "me": 1,
- "tips": 1,
- "here.": 1,
- "FAQ": 1,
- "isn": 1,
- "driven": 1,
- "filetype.": 1,
- "": 1,
- "kind": 1,
- "ignores": 1,
- "switch": 1,
- "you.": 1,
- "source": 2,
- "compiled": 1,
- "control": 1,
- "metadata": 1,
- "wastes": 1,
- "lot": 1,
- "those": 2,
- "returning": 1,
- "great": 1,
- "did": 1,
- "only.": 1,
- "perfectly": 1,
- "<-p>": 1,
- "<-n>": 1,
- "switches.": 1,
- "select": 1,
- "update.": 1,
- "change": 1,
- "PHP": 1,
- "Unix": 1,
- "Can": 1,
- "recognize": 1,
- "<.xyz>": 1,
- "already": 2,
- "program/package": 1,
- "ack.": 2,
- "Yes": 1,
- "know.": 1,
- "nothing": 1,
- "suggest": 1,
- "symlink": 1,
- "points": 1,
- "": 1,
- "crucial": 1,
- "benefits": 1,
- "having": 1,
- "Regan": 1,
- "Slaven": 1,
- "ReziE": 1,
- "<0x107>": 1,
- "Mark": 1,
- "Stosberg": 1,
- "David": 1,
- "Alan": 1,
- "Pisoni": 1,
- "Adriano": 1,
- "Ferreira": 1,
- "James": 1,
- "Keenan": 1,
- "Leland": 1,
- "Johnson": 1,
- "Ricardo": 1,
- "Signes": 1,
- "Pete": 1,
- "Krawczyk.": 1,
- "files_defaults": 3,
- "skip_dirs": 3,
- "CORE": 3,
- "curdir": 1,
- "updir": 1,
- "__PACKAGE__": 1,
- "parms": 15,
- "@queue": 8,
- "_setup": 2,
- "fullpath": 12,
- "local": 5,
- "_candidate_files": 2,
- "sort_standard": 2,
- "cmp": 2,
- "sort_reverse": 1,
- "@parts": 3,
- "passed_parms": 6,
- "parm": 1,
- "badkey": 1,
- "dh": 4,
- "opendir": 1,
- "@newfiles": 5,
- "sort_sub": 4,
- "readdir": 1,
- "has_stat": 3,
- "closedir": 1,
- "": 1,
- "updated": 1,
- "update": 1,
- "message": 1,
- "bak": 1,
- "core": 1,
- "swp": 1,
- "js": 1,
- "1": 1,
- "str": 12,
- "regex_is_lc": 2,
- "S": 1,
- ".*//": 1,
- "_my_program": 3,
- "Basename": 2,
- "FAIL": 12,
- "confess": 2,
- "@ISA": 2,
- "could_be_binary": 4,
- "opened": 1,
- "size": 5,
- "_000": 1,
- "sysread": 1,
- "regex/m": 1,
- "readline": 1,
- "nexted": 3
- },
- "XML": {
- "": 12,
- "version=": 21,
- "encoding=": 8,
- "": 7,
- "ToolsVersion=": 6,
- "DefaultTargets=": 5,
- "xmlns=": 8,
- "": 21,
- "Project=": 12,
- "Condition=": 37,
- "": 26,
- "": 6,
- "Debug": 10,
- " ": 6,
- "": 6,
- "AnyCPU": 10,
- " ": 6,
- "": 5,
- "{": 6,
- "D377F": 1,
- "-": 90,
- "A": 21,
- "A798": 1,
- "B3FD04C": 1,
- "}": 6,
- " ": 5,
- "": 4,
- "Exe": 4,
- " ": 4,
- "": 1,
- "vbproj_sample.Module1": 1,
- " ": 1,
- "": 5,
- "vbproj_sample": 1,
- " ": 5,
- "": 4,
- "vbproj": 3,
- "sample": 6,
- " ": 4,
- "": 3,
- " ": 3,
- "": 1,
- "Console": 3,
- " ": 1,
- "": 5,
- "v4.5.1": 5,
- " ": 5,
- "": 3,
- "true": 24,
- " ": 3,
- " ": 25,
- "": 6,
- " ": 6,
- "": 5,
- " ": 5,
- "": 6,
- "full": 4,
- " ": 6,
- "": 2,
- " ": 2,
- "": 2,
- " ": 2,
- "": 8,
- "bin": 11,
- " ": 8,
- "": 5,
- "sample.xml": 2,
- " ": 5,
- "": 2,
- " ": 2,
- "pdbonly": 3,
- "false": 11,
- "": 7,
- " ": 7,
- "Release": 6,
- "": 1,
- "On": 2,
- " ": 1,
- "": 1,
- "Binary": 1,
- " ": 1,
- "": 1,
- "Off": 1,
- " ": 1,
- "": 1,
- " ": 1,
- "": 26,
- "": 30,
- "Include=": 78,
- " ": 26,
- "": 10,
- "": 3,
- "True": 13,
- " ": 3,
- "": 3,
- "Application.myapp": 1,
- " ": 3,
- " ": 3,
- "": 1,
- " ": 1,
- "Resources.resx": 1,
- "Settings.settings": 1,
- "": 1,
- " ": 1,
- "": 1,
- "": 3,
- "VbMyResourcesResXFileCodeGenerator": 1,
- " ": 3,
- "": 3,
- "Resources.Designer.vb": 1,
- " ": 3,
- "": 2,
- "My.Resources": 1,
- " ": 2,
- "": 1,
- "Designer": 1,
- " ": 1,
- " ": 1,
- "": 5,
- "MyApplicationCodeGenerator": 1,
- "Application.Designer.vb": 1,
- " ": 2,
- "SettingsSingleFileGenerator": 1,
- "My": 1,
- "Settings.Designer.vb": 1,
- " ": 7,
- "": 3,
- "MyCommon": 1,
- " ": 3,
- "": 1,
- "Name=": 1,
- "": 1,
- "Text=": 1,
- " ": 1,
- "": 1,
- "xmlns": 2,
- "ea=": 2,
- "": 1,
- "organisation=": 3,
- "module=": 3,
- "revision=": 3,
- "status=": 1,
- "": 4,
- "this": 77,
- "is": 123,
- "a": 128,
- "easyant": 3,
- "module.ivy": 1,
- "file": 3,
- "for": 60,
- "java": 1,
- "standard": 1,
- "application": 2,
- " ": 4,
- "": 1,
- "": 1,
- "name=": 270,
- "value=": 11,
- "": 1,
- " ": 1,
- " ": 1,
- "": 1,
- "": 2,
- "visibility=": 2,
- "description=": 4,
- " ": 1,
- "": 1,
- "": 4,
- "org=": 1,
- "rev=": 1,
- "conf=": 1,
- "default": 9,
- "junit": 2,
- "test": 7,
- "/": 6,
- " ": 1,
- " ": 1,
- "": 2,
- "This": 21,
- "module.ant": 1,
- "optionnal": 1,
- "and": 44,
- "designed": 1,
- "to": 164,
- "customize": 1,
- "your": 8,
- "build": 1,
- "with": 23,
- "own": 2,
- "specific": 8,
- "target.": 1,
- "": 2,
- "": 2,
- "my": 2,
- "awesome": 1,
- "additionnal": 1,
- "target": 6,
- " ": 2,
- " ": 2,
- "extensionOf=": 1,
- "i": 2,
- "would": 2,
- "love": 1,
- "could": 1,
- "easily": 1,
- "plug": 1,
- "pre": 1,
- "compile": 1,
- "step": 1,
- " ": 1,
- "": 2,
- " ": 2,
- "cfa7a11": 1,
- "a5cd": 1,
- "bd7b": 1,
- "b210d4d51a29": 1,
- "fsproj_sample": 2,
- "": 1,
- " ": 1,
- "fsproj": 1,
- "": 2,
- " ": 2,
- "": 6,
- "DEBUG": 3,
- ";": 52,
- "TRACE": 6,
- " ": 6,
- "": 8,
- " ": 8,
- "fsproj_sample.XML": 2,
- "": 2,
- " ": 2,
- "": 2,
- " ": 2,
- "": 5,
- "": 1,
- " ": 1,
- "": 1,
- "": 1,
- "": 2,
- "(": 65,
- "MSBuildExtensionsPath32": 2,
- ")": 58,
- "..": 1,
- "Microsoft": 2,
- "SDKs": 1,
- "F#": 1,
- "Framework": 1,
- "v4.0": 1,
- "Microsoft.FSharp.Targets": 2,
- " ": 2,
- " ": 1,
- "": 1,
- "VisualStudio": 1,
- "v": 1,
- "VisualStudioVersion": 1,
- "FSharp": 1,
- " ": 1,
- " ": 1,
- "": 1,
- " ": 1,
- "c67af951": 1,
- "d8d6376993e7": 1,
- "": 2,
- "Properties": 3,
- " ": 2,
- "nproj_sample": 2,
- "": 1,
- " ": 1,
- "": 1,
- "Net": 1,
- " ": 1,
- "": 1,
- "ProgramFiles": 1,
- "Nemerle": 3,
- " ": 1,
- "": 1,
- "NemerleBinPathRoot": 1,
- "NemerleVersion": 1,
- " ": 1,
- "nproj": 1,
- "": 4,
- "prompt": 4,
- " ": 4,
- "OutputPath": 1,
- "AssemblyName": 1,
- ".xml": 1,
- "": 3,
- " ": 3,
- "": 1,
- "False": 1,
- " ": 1,
- "": 2,
- "Nemerle.dll": 1,
- " ": 2,
- "": 1,
- "Nemerle.Linq.dll": 1,
- " ": 1,
- "": 1,
- "": 1,
- "TS": 1,
- "": 1,
- "language=": 1,
- "": 1,
- "": 2,
- "MainWindow": 1,
- " ": 2,
- "": 8,
- "": 8,
- "filename=": 8,
- "line=": 8,
- "": 8,
- "United": 1,
- "Kingdom": 1,
- " ": 8,
- "": 8,
- "Reino": 1,
- "Unido": 1,
- " ": 8,
- " ": 8,
- "God": 1,
- "save": 2,
- "the": 261,
- "Queen": 1,
- "Deus": 1,
- "salve": 1,
- "Rainha": 1,
- "England": 1,
- "Inglaterra": 1,
- "Wales": 1,
- "Gales": 1,
- "Scotland": 1,
- "Esc": 1,
- "cia": 1,
- "Northern": 1,
- "Ireland": 1,
- "Irlanda": 1,
- "Norte": 1,
- "Portuguese": 1,
- "Portugu": 1,
- "s": 3,
- "English": 1,
- "Ingl": 1,
- " ": 1,
- " ": 1,
- "": 1,
- "compatVersion=": 1,
- "": 1,
- "FreeMedForms": 1,
- " ": 1,
- "": 1,
- "C": 1,
- "by": 14,
- "Eric": 1,
- "MAEKER": 1,
- "MD": 1,
- " ": 1,
- "": 1,
- "GPLv3": 1,
- " ": 1,
- "": 1,
- "Patient": 1,
- "data": 2,
- " ": 1,
- "The": 75,
- "XML": 1,
- "form": 1,
- "loader/saver": 1,
- "FreeMedForms.": 1,
- "": 1,
- "http": 2,
- "//www.freemedforms.com/": 1,
- " ": 1,
- "": 1,
- " ": 1,
- " ": 1,
- "D9BF15": 1,
- "D10": 1,
- "ABAD688E8B": 1,
- "csproj_sample": 1,
- "csproj": 1,
- "": 1,
- "": 1,
- "ReactiveUI": 2,
- " ": 1,
- "": 1,
- "": 120,
- "": 121,
- "IObservedChange": 5,
- "generic": 3,
- "interface": 4,
- "that": 94,
- "replaces": 1,
- "non": 1,
- "PropertyChangedEventArgs.": 1,
- "Note": 7,
- "it": 16,
- "used": 19,
- "both": 2,
- "Changing": 5,
- "i.e.": 23,
- "Changed": 4,
- "Observables.": 2,
- "In": 6,
- "future": 2,
- "will": 65,
- "be": 57,
- "Covariant": 1,
- "which": 12,
- "allow": 1,
- "simpler": 1,
- "casting": 1,
- "between": 15,
- "changes.": 2,
- " ": 122,
- " ": 120,
- "object": 42,
- "has": 16,
- "raised": 1,
- "change.": 12,
- "name": 7,
- "of": 76,
- "property": 74,
- "changed": 18,
- "on": 35,
- "Sender.": 1,
- "value": 44,
- "changed.": 9,
- "IMPORTANT": 1,
- "NOTE": 1,
- "often": 3,
- "not": 9,
- "set": 41,
- "performance": 1,
- "reasons": 1,
- "unless": 1,
- "you": 20,
- "have": 17,
- "explicitly": 1,
- "requested": 1,
- "an": 88,
- "Observable": 56,
- "via": 8,
- "method": 34,
- "such": 5,
- "as": 25,
- "ObservableForProperty.": 1,
- "To": 4,
- "retrieve": 3,
- "use": 5,
- "Value": 3,
- "extension": 2,
- "method.": 2,
- "IReactiveNotifyPropertyChanged": 6,
- "represents": 4,
- "extended": 1,
- "version": 3,
- "INotifyPropertyChanged": 1,
- "also": 17,
- "exposes": 1,
- "IEnableLogger": 1,
- "dummy": 1,
- "attaching": 1,
- "any": 11,
- "class": 11,
- "give": 1,
- "access": 3,
- "Log": 2,
- "When": 5,
- "called": 5,
- "fire": 11,
- "change": 26,
- "notifications": 22,
- "neither": 3,
- "traditional": 3,
- "nor": 3,
- "until": 7,
- "return": 11,
- "disposed.": 3,
- "": 36,
- "An": 26,
- "when": 38,
- "disposed": 4,
- "reenables": 3,
- "notifications.": 5,
- " ": 36,
- "Represents": 4,
- "fires": 6,
- "*before*": 2,
- "about": 5,
- "should": 10,
- "duplicate": 2,
- "if": 27,
- "same": 8,
- "multiple": 6,
- "times.": 4,
- "*after*": 2,
- "TSender": 1,
- "helper": 5,
- "adds": 2,
- "typed": 2,
- "versions": 2,
- "Changed.": 1,
- "IReactiveCollection": 3,
- "collection": 27,
- "can": 11,
- "notify": 3,
- "its": 4,
- "contents": 2,
- "are": 13,
- "either": 1,
- "items": 27,
- "added/removed": 1,
- "or": 24,
- "itself": 2,
- "changes": 13,
- ".": 20,
- "It": 2,
- "important": 6,
- "implement": 5,
- "Changing/Changed": 1,
- "from": 12,
- "semantically": 3,
- "Fires": 14,
- "added": 6,
- "once": 4,
- "per": 2,
- "item": 19,
- "added.": 4,
- "Functions": 2,
- "add": 2,
- "AddRange": 2,
- "provided": 14,
- "was": 6,
- "before": 8,
- "going": 4,
- "collection.": 6,
- "been": 5,
- "removed": 4,
- "providing": 20,
- "removed.": 4,
- "whenever": 18,
- "number": 9,
- "in": 45,
- "new": 10,
- "Count.": 4,
- "previous": 2,
- "Provides": 4,
- "Item": 4,
- "implements": 8,
- "IReactiveNotifyPropertyChanged.": 4,
- "only": 18,
- "enabled": 8,
- "ChangeTrackingEnabled": 2,
- "True.": 2,
- "Enables": 2,
- "ItemChanging": 2,
- "ItemChanged": 2,
- "properties": 29,
- "implementing": 2,
- "rebroadcast": 2,
- "through": 3,
- "ItemChanging/ItemChanged.": 2,
- "T": 1,
- "type": 23,
- "specified": 7,
- "Observables": 4,
- "IMessageBus": 1,
- "act": 2,
- "simple": 2,
- "way": 2,
- "ViewModels": 3,
- "other": 9,
- "objects": 4,
- "communicate": 2,
- "each": 7,
- "loosely": 2,
- "coupled": 2,
- "way.": 2,
- "Specifying": 2,
- "messages": 22,
- "go": 2,
- "where": 4,
- "done": 2,
- "combination": 2,
- "Type": 9,
- "message": 30,
- "well": 2,
- "additional": 3,
- "parameter": 6,
- "unique": 12,
- "string": 13,
- "distinguish": 12,
- "arbitrarily": 2,
- "client.": 2,
- "Listen": 4,
- "provides": 6,
- "Message": 2,
- "RegisterMessageSource": 4,
- "SendMessage.": 2,
- "": 12,
- "listen": 6,
- "to.": 7,
- " ": 12,
- "": 84,
- "identical": 11,
- "types": 10,
- "one": 27,
- "purpose": 10,
- "leave": 10,
- "null.": 10,
- "": 83,
- "Determins": 2,
- "particular": 2,
- "registered.": 2,
- "message.": 1,
- "posted": 3,
- "Type.": 2,
- "Registers": 3,
- "representing": 20,
- "stream": 7,
- "send.": 4,
- "Another": 2,
- "part": 2,
- "code": 4,
- "then": 3,
- "call": 5,
- "Observable.": 6,
- "subscribed": 2,
- "sent": 2,
- "out": 4,
- "provided.": 5,
- "Sends": 2,
- "single": 2,
- "using": 9,
- "contract.": 2,
- "Consider": 2,
- "instead": 2,
- "sending": 2,
- "response": 2,
- "events.": 2,
- "actual": 2,
- "send": 3,
- "returns": 5,
- "current": 10,
- "logger": 2,
- "allows": 15,
- "log": 2,
- "attached.": 1,
- "structure": 1,
- "representation": 1,
- "memoizing": 2,
- "cache": 14,
- "evaluate": 1,
- "function": 13,
- "but": 7,
- "keep": 1,
- "recently": 3,
- "evaluated": 1,
- "parameters.": 1,
- "Since": 1,
- "mathematical": 2,
- "sense": 1,
- "key": 12,
- "*always*": 1,
- "maps": 1,
- "corresponding": 2,
- "value.": 2,
- "calculation": 8,
- "function.": 6,
- "returned": 2,
- "Constructor": 2,
- "whose": 7,
- "results": 6,
- "want": 2,
- "Tag": 1,
- "user": 2,
- "defined": 1,
- "size": 1,
- "maintain": 1,
- "after": 1,
- "old": 1,
- "start": 1,
- "thrown": 1,
- "out.": 1,
- "result": 3,
- "gets": 1,
- "evicted": 2,
- "because": 2,
- "Invalidate": 2,
- "Evaluates": 1,
- "returning": 1,
- "cached": 2,
- "possible": 1,
- "pass": 2,
- "optional": 2,
- "parameter.": 1,
- "Ensure": 1,
- "next": 1,
- "time": 3,
- "queried": 1,
- "called.": 1,
- "all": 4,
- "Returns": 5,
- "values": 4,
- "currently": 2,
- "MessageBus": 3,
- "bus.": 1,
- "scheduler": 11,
- "post": 2,
- "RxApp.DeferredScheduler": 2,
- "default.": 2,
- "Current": 1,
- "RxApp": 1,
- "global": 1,
- "object.": 3,
- "ViewModel": 8,
- "another": 3,
- "Return": 1,
- "instance": 2,
- "type.": 3,
- "registered": 1,
- "ObservableAsPropertyHelper": 6,
- "help": 1,
- "backed": 1,
- "read": 3,
- "still": 1,
- "created": 2,
- "directly": 1,
- "more": 16,
- "ToProperty": 2,
- "ObservableToProperty": 1,
- "methods.": 2,
- "so": 1,
- "output": 1,
- "chained": 2,
- "example": 2,
- "property.": 12,
- "Constructs": 4,
- "base": 3,
- "on.": 6,
- "action": 2,
- "take": 2,
- "typically": 1,
- "t": 2,
- "bindings": 13,
- "null": 4,
- "OAPH": 2,
- "at": 2,
- "startup.": 1,
- "initial": 28,
- "normally": 6,
- "Dispatcher": 3,
- "based": 9,
- "last": 1,
- "Exception": 1,
- "steps": 1,
- "taken": 1,
- "ensure": 3,
- "never": 3,
- "complete": 1,
- "fail.": 1,
- "Converts": 2,
- "automatically": 3,
- "onChanged": 2,
- "raise": 2,
- "notification.": 2,
- "equivalent": 2,
- "convenient.": 1,
- "Expression": 7,
- "initialized": 2,
- "backing": 9,
- "field": 10,
- "ReactiveObject": 11,
- "ObservableAsyncMRUCache": 2,
- "memoization": 2,
- "asynchronous": 4,
- "expensive": 2,
- "compute": 1,
- "MRU": 1,
- "fixed": 1,
- "limit": 5,
- "cache.": 5,
- "guarantees": 6,
- "given": 11,
- "flight": 2,
- "subsequent": 1,
- "requests": 4,
- "wait": 3,
- "first": 1,
- "empty": 1,
- "web": 6,
- "image": 1,
- "receives": 1,
- "two": 1,
- "concurrent": 5,
- "issue": 2,
- "WebRequest": 1,
- "does": 1,
- "mean": 1,
- "request": 3,
- "Concurrency": 1,
- "limited": 1,
- "maxConcurrent": 1,
- "too": 1,
- "many": 1,
- "operations": 6,
- "progress": 1,
- "further": 1,
- "queued": 1,
- "slot": 1,
- "available.": 1,
- "performs": 1,
- "asyncronous": 1,
- "async": 3,
- "CPU": 1,
- "Observable.Return": 1,
- "may": 1,
- "result.": 2,
- "*must*": 1,
- "equivalently": 1,
- "input": 2,
- "being": 1,
- "memoized": 1,
- "calculationFunc": 2,
- "depends": 1,
- "varables": 1,
- "than": 5,
- "unpredictable.": 1,
- "reached": 2,
- "discarded.": 4,
- "maximum": 2,
- "regardless": 2,
- "caches": 2,
- "server.": 2,
- "clean": 1,
- "up": 25,
- "manage": 1,
- "disk": 1,
- "download": 1,
- "temporary": 1,
- "folder": 1,
- "onRelease": 1,
- "delete": 1,
- "file.": 1,
- "run": 7,
- "defaults": 1,
- "TaskpoolScheduler": 2,
- "Issues": 1,
- "fetch": 1,
- "operation.": 1,
- "operation": 2,
- "finishes.": 1,
- "If": 6,
- "immediately": 3,
- "upon": 1,
- "subscribing": 1,
- "returned.": 2,
- "provide": 2,
- "synchronous": 1,
- "AsyncGet": 1,
- "resulting": 1,
- "Works": 2,
- "like": 2,
- "SelectMany": 2,
- "memoizes": 2,
- "selector": 5,
- "calls.": 2,
- "addition": 3,
- "no": 4,
- "selectors": 2,
- "running": 4,
- "concurrently": 2,
- "queues": 2,
- "rest.": 2,
- "very": 2,
- "services": 2,
- "avoid": 2,
- "potentially": 2,
- "spamming": 2,
- "server": 2,
- "hundreds": 2,
- "requests.": 2,
- "similar": 3,
- "passed": 1,
- "SelectMany.": 1,
- "similarly": 1,
- "ObservableAsyncMRUCache.AsyncGet": 1,
- "must": 2,
- "sense.": 1,
- "flattened": 2,
- "selector.": 2,
- "overload": 2,
- "useful": 2,
- "making": 3,
- "service": 1,
- "several": 1,
- "places": 1,
- "paths": 1,
- "already": 1,
- "configured": 1,
- "ObservableAsyncMRUCache.": 1,
- "notification": 6,
- "Attempts": 1,
- "expression": 3,
- "expression.": 1,
- "entire": 1,
- "able": 1,
- "followed": 1,
- "otherwise": 1,
- "Given": 3,
- "fully": 3,
- "filled": 1,
- "SetValueToProperty": 1,
- "apply": 3,
- "target.property": 1,
- "This.GetValue": 1,
- "observed": 1,
- "onto": 1,
- "convert": 2,
- "stream.": 3,
- "ValueIfNotDefault": 1,
- "filters": 1,
- "BindTo": 1,
- "takes": 1,
- "applies": 1,
- "Conceptually": 1,
- "child": 2,
- "without": 1,
- "checks.": 1,
- "set.": 3,
- "x.Foo.Bar.Baz": 1,
- "disconnects": 1,
- "binding.": 1,
- "ReactiveCollection.": 1,
- "ReactiveCollection": 1,
- "existing": 3,
- "list.": 2,
- "list": 1,
- "populate": 1,
- "anything": 2,
- "Change": 2,
- "Tracking": 2,
- "Creates": 3,
- "adding": 2,
- "completes": 4,
- "optionally": 2,
- "ensuring": 2,
- "delay.": 2,
- "withDelay": 2,
- "leak": 2,
- "Timer.": 2,
- "always": 4,
- "UI": 2,
- "thread.": 3,
- "put": 2,
- "into": 2,
- "populated": 4,
- "faster": 2,
- "delay": 2,
- "Select": 3,
- "item.": 3,
- "creating": 2,
- "collections": 1,
- "updated": 1,
- "respective": 1,
- "Model": 1,
- "updated.": 1,
- "Collection.Select": 1,
- "mirror": 1,
- "ObservableForProperty": 14,
- "ReactiveObject.": 1,
- "unlike": 13,
- "Selector": 1,
- "classes": 2,
- "INotifyPropertyChanged.": 1,
- "monitor": 1,
- "RaiseAndSetIfChanged": 2,
- "Setter": 2,
- "write": 2,
- "assumption": 4,
- "named": 2,
- "RxApp.GetFieldNameForPropertyNameFunc.": 2,
- "almost": 2,
- "keyword.": 2,
- "newly": 2,
- "intended": 5,
- "Silverlight": 2,
- "WP7": 1,
- "reflection": 1,
- "cannot": 1,
- "private": 1,
- "field.": 1,
- "Reference": 1,
- "Use": 15,
- "custom": 4,
- "raiseAndSetIfChanged": 1,
- "doesn": 1,
- "x": 1,
- "x.SomeProperty": 1,
- "suffice.": 1,
- "RaisePropertyChanging": 2,
- "mock": 4,
- "scenarios": 4,
- "manually": 4,
- "fake": 4,
- "invoke": 4,
- "raisePropertyChanging": 4,
- "faking": 4,
- "RaisePropertyChanged": 2,
- "helps": 1,
- "make": 2,
- "them": 1,
- "compatible": 1,
- "Rx.Net.": 1,
- "declare": 1,
- "initialize": 1,
- "derive": 1,
- "properties/methods": 1,
- "MakeObjectReactiveHelper.": 1,
- "InUnitTestRunner": 1,
- "attempts": 1,
- "determine": 1,
- "heuristically": 1,
- "unit": 3,
- "framework.": 1,
- "we": 1,
- "determined": 1,
- "framework": 1,
- "running.": 1,
- "GetFieldNameForProperty": 1,
- "convention": 2,
- "GetFieldNameForPropertyNameFunc.": 1,
- "needs": 1,
- "found.": 1,
- "name.": 1,
- "DeferredScheduler": 1,
- "schedule": 2,
- "work": 2,
- "normal": 2,
- "mode": 2,
- "DispatcherScheduler": 1,
- "Unit": 1,
- "Test": 1,
- "Immediate": 1,
- "simplify": 1,
- "writing": 1,
- "common": 1,
- "tests.": 1,
- "background": 1,
- "modes": 1,
- "TPL": 1,
- "Task": 1,
- "Pool": 1,
- "Threadpool": 1,
- "Set": 3,
- "provider": 1,
- "usually": 1,
- "entry": 1,
- "MessageBus.Current.": 1,
- "override": 1,
- "naming": 1,
- "one.": 1,
- "WhenAny": 12,
- "observe": 12,
- "constructors": 12,
- "need": 12,
- "setup.": 12,
- " ": 1,
- " ": 1,
- "": 10,
- "": 3,
- "FC737F1": 1,
- "C7A5": 1,
- "A066": 1,
- "A32D752A2FF": 1,
- " ": 3,
- "": 3,
- "cpp": 1,
- "c": 1,
- "cc": 1,
- "cxx": 1,
- "def": 1,
- "odl": 1,
- "idl": 1,
- "hpj": 1,
- "bat": 1,
- "asm": 1,
- "asmx": 1,
- " ": 3,
- " ": 10,
- "BD": 1,
- "b04": 1,
- "EB": 1,
- "FBE52EBFB": 1,
- "h": 1,
- "hh": 1,
- "hpp": 1,
- "hxx": 1,
- "hm": 1,
- "inl": 1,
- "inc": 1,
- "xsd": 1,
- "DA6AB6": 1,
- "F800": 1,
- "c08": 1,
- "B7A": 1,
- "BB121AAD01": 1,
- "rc": 1,
- "ico": 1,
- "cur": 1,
- "bmp": 1,
- "dlg": 1,
- "rc2": 1,
- "rct": 1,
- "rgs": 1,
- "gif": 1,
- "jpg": 1,
- "jpeg": 1,
- "jpe": 1,
- "resx": 1,
- "tiff": 1,
- "tif": 1,
- "png": 1,
- "wav": 1,
- "mfcribbon": 1,
- "ms": 1,
- "": 2,
- "": 4,
- "Header": 2,
- "Files": 7,
- " ": 2,
- "": 2,
- "Resource": 2,
- " ": 1,
- "": 8,
- "Source": 3,
- " ": 6,
- "": 2,
- " ": 1,
- "Label=": 11,
- "": 2,
- "Win32": 2,
- " ": 2,
- "BF6EED48": 1,
- "BF18": 1,
- "C54": 1,
- "F": 1,
- "BBF19EEDC7C": 1,
- "": 1,
- "ManagedCProj": 1,
- " ": 1,
- "vcxprojsample": 1,
- "": 2,
- "Application": 2,
- " ": 2,
- "": 2,
- " ": 2,
- "": 2,
- "v120": 2,
- " ": 2,
- "": 2,
- " ": 2,
- "": 2,
- "Unicode": 2,
- " ": 2,
- "": 4,
- " ": 4,
- "": 2,
- " ": 2,
- "": 2,
- "Level3": 2,
- "": 1,
- "Disabled": 1,
- " ": 1,
- "": 2,
- "WIN32": 2,
- "_DEBUG": 1,
- "%": 2,
- "PreprocessorDefinitions": 2,
- " ": 2,
- "": 4,
- " ": 4,
- "": 2,
- "": 2,
- " ": 2,
- "": 2,
- "": 2,
- " ": 2,
- "": 2,
- " ": 2,
- "NDEBUG": 1,
- "Create": 2,
- "standalone=": 1,
- "": 1,
- "4": 1,
- "0": 2,
- "": 1,
- "storage_type_id=": 1,
- "": 14,
- "moduleId=": 14,
- "": 2,
- "id=": 141,
- "buildSystemId=": 2,
- " ": 2,
- "": 2,
- "": 12,
- "point=": 12,
- " ": 2,
- " ": 7,
- "": 2,
- "artifactName=": 2,
- "buildArtefactType=": 2,
- "buildProperties=": 2,
- "cleanCommand=": 2,
- "cdt": 2,
- "managedbuild": 2,
- "config": 2,
- "gnu": 2,
- "exe": 2,
- "debug": 1,
- "1803931088": 1,
- "parent=": 2,
- "": 2,
- "resourcePath=": 2,
- "": 2,
- "superClass=": 42,
- "": 2,
- "": 2,
- "buildPath=": 2,
- "keepEnvironmentInBuildfile=": 2,
- "managedBuildOn=": 2,
- "": 12,
- "": 4,
- "": 8,
- " ": 8,
- "defaultValue=": 2,
- "": 4,
- "kind=": 6,
- "paths=": 4,
- "": 2,
- " ": 2,
- " ": 2,
- "": 2,
- "": 2,
- "flags=": 2,
- " ": 2,
- " ": 2,
- "": 2,
- "release": 1,
- "32754498": 1,
- "projectType=": 1,
- "": 5,
- "enabled=": 125,
- "problemReportingEnabled=": 5,
- "selectedProfileId=": 5,
- "": 40,
- "": 40,
- "": 40,
- "filePath=": 40,
- "": 80,
- " ": 40,
- "": 40,
- "": 40,
- "arguments=": 40,
- "command=": 40,
- "useDefault=": 40,
- " ": 40,
- " ": 40,
- "": 4,
- "instanceId=": 4,
- " ": 4,
- " ": 1,
- "": 1,
- "": 1,
- "": 1,
- "Sample": 2,
- " ": 1,
- "": 1,
- " ": 1,
- "": 1,
- " ": 1,
- "": 1,
- "Hugh": 2,
- "Bot": 2,
- " ": 1,
- "": 1,
- " ": 1,
- "package": 1,
- "nuget": 1,
- "just": 1,
- "works": 1,
- "": 1,
- "//hubot.github.com": 1,
- " ": 1,
- " ": 1,
- "": 1,
- "https": 1,
- "//github.com/github/hubot/LICENSEmd": 1,
- " ": 1,
- "": 1,
- " ": 1,
- " ": 1,
- "": 1,
- "": 1,
- "src=": 1,
- "target=": 1,
- " ": 1,
- " ": 1
- },
- "MTML": {
- "<$mt:Var>": 15,
- "name=": 19,
- "value=": 9,
- "": 1,
- "op=": 8,
- "setvar=": 9,
- "": 1,
- "<": 2,
- "a": 1,
- "href": 1,
- "<$mt:CategoryLabel>": 1,
- "remove_html=": 1,
- "": 1,
- " ": 1,
- " ": 1,
- "function=": 1,
- "": 1,
- "gt=": 2,
- "": 1,
- " ": 1,
- "": 1,
- "": 1,
- " ": 1,
- " ": 1,
- "": 2,
- "from=": 2,
- "to=": 2,
- "div": 1,
- "class": 1,
- "col_num": 1,
- " ": 2,
- "": 1
- },
- "Lasso": {
- "[": 22,
- "]": 23,
- "//": 169,
- "-": 2248,
- "": 6,
- "2009": 14,
- "09": 10,
- "04": 8,
- "JS": 126,
- "Added": 40,
- "content_body": 14,
- "tag": 11,
- "for": 65,
- "compatibility": 4,
- "with": 25,
- "pre": 4,
- "8": 6,
- "5": 4,
- "05": 4,
- "07": 6,
- "timestamp": 4,
- "to": 98,
- "knop_cachestore": 4,
- "and": 52,
- "maxage": 2,
- "parameter": 8,
- "knop_cachefetch": 4,
- "Corrected": 8,
- "construction": 2,
- "of": 24,
- "cache_name": 2,
- "internally": 2,
- "in": 46,
- "the": 86,
- "knop_cache": 2,
- "tags": 14,
- "so": 16,
- "it": 20,
- "will": 12,
- "work": 6,
- "correctly": 2,
- "at": 10,
- "site": 4,
- "root": 2,
- "2008": 6,
- "11": 8,
- "dummy": 2,
- "knop_debug": 4,
- "ctype": 2,
- "be": 38,
- "able": 14,
- "transparently": 2,
- "or": 6,
- "without": 4,
- "L": 2,
- "Debug": 2,
- "24": 2,
- "knop_stripbackticks": 2,
- "01": 4,
- "28": 2,
- "Cache": 2,
- "name": 32,
- "is": 35,
- "now": 23,
- "used": 12,
- "also": 5,
- "when": 10,
- "using": 8,
- "session": 4,
- "storage": 8,
- "2007": 6,
- "12": 8,
- "knop_cachedelete": 2,
- "Created": 4,
- "03": 2,
- "knop_foundrows": 2,
- "condition": 4,
- "returning": 2,
- "normal": 2,
- "found_count": 11,
- "For": 2,
- "Lasso": 15,
- "if": 76,
- "lasso_tagexists": 4,
- "define_tag": 48,
- "namespace=": 12,
- "return": 75,
- "__html_reply__": 4,
- "define_type": 14,
- "debug": 2,
- "_unknowntag": 6,
- "onconvert": 2,
- "stripbackticks": 2,
- "description=": 2,
- "priority=": 2,
- "required=": 2,
- "local": 116,
- "output": 30,
- "string": 59,
- "input": 2,
- "split": 2,
- "(": 640,
- ")": 639,
- "first": 12,
- ";": 573,
- "@#output": 2,
- "/define_tag": 36,
- "description": 34,
- "namespace": 16,
- "priority": 8,
- "Johan": 2,
- "S": 2,
- "lve": 2,
- "integer": 30,
- "#charlist": 6,
- "size": 24,
- "start": 5,
- "current": 10,
- "date": 23,
- "time": 8,
- "a": 52,
- "mixed": 2,
- "up": 4,
- "format": 7,
- "as": 26,
- "seed": 6,
- "#seed": 36,
- "convert": 4,
- "this": 14,
- "base": 6,
- "conversion": 4,
- "while": 9,
- "#output": 50,
- "get": 12,
- "%": 14,
- "#base": 8,
- "+": 146,
- "/": 6,
- "/while": 7,
- "over": 2,
- "new": 14,
- "chunk": 2,
- "millisecond": 2,
- "math_random": 2,
- "lower": 2,
- "upper": 2,
- "__lassoservice_ip__": 2,
- "response_localpath": 8,
- "removetrailing": 8,
- "response_filepath": 8,
- "http": 6,
- "//tagswap.net/found_rows": 2,
- "action_statement": 2,
- "string_findregexp": 8,
- "#sql": 42,
- "find": 57,
- "ignorecase": 12,
- "||": 8,
- "<": 7,
- "maxrecords_value": 2,
- "inaccurate": 2,
- "must": 4,
- "accurate": 2,
- "/if": 53,
- "Default": 2,
- "method": 7,
- "usually": 2,
- "fastest.": 2,
- "Can": 2,
- "not": 10,
- "GROUP": 4,
- "BY": 6,
- "example.": 2,
- "First": 4,
- "normalize": 4,
- "whitespace": 3,
- "around": 2,
- "FROM": 2,
- "expression": 6,
- "string_replaceregexp": 8,
- "replace": 8,
- "ReplaceOnlyOne": 2,
- "substring": 6,
- "remove": 6,
- "ORDER": 2,
- "statement": 4,
- "since": 4,
- "causes": 4,
- "problems": 2,
- "field": 26,
- "aliases": 2,
- "we": 2,
- "can": 14,
- "simple": 2,
- "later": 2,
- "else": 32,
- "query": 4,
- "contains": 2,
- "use": 10,
- "SQL_CALC_FOUND_ROWS": 2,
- "which": 2,
- "much": 2,
- "slower": 2,
- "see": 16,
- "//bugs.mysql.com/bug.php": 2,
- "id": 7,
- "removeleading": 2,
- "inline": 4,
- "sql": 2,
- "exit": 2,
- "here": 2,
- "normally": 2,
- "/inline": 2,
- "fallback": 4,
- "required": 10,
- "optional": 36,
- "local_defined": 26,
- "knop_seed": 2,
- "Local": 7,
- "#RandChars": 4,
- "Get": 2,
- "Math_Random": 2,
- "Min": 2,
- "Max": 2,
- "Size": 2,
- "#value": 14,
- "join": 5,
- "#numericValue": 4,
- "&&": 30,
- "length": 8,
- "#cryptvalue": 10,
- "#anyChar": 2,
- "Encrypt_Blowfish": 2,
- "decrypt_blowfish": 2,
- "String_Remove": 2,
- "StartPosition": 2,
- "EndPosition": 2,
- "Seed": 2,
- "String_IsAlphaNumeric": 2,
- "self": 72,
- "_date_msec": 4,
- "/define_type": 4,
- "type": 63,
- "seconds": 4,
- "map": 23,
- "default": 4,
- "store": 4,
- "all": 6,
- "page": 14,
- "vars": 8,
- "specified": 8,
- "iterate": 12,
- "keys": 6,
- "var": 38,
- "#item": 10,
- "isa": 25,
- "#type": 26,
- "#data": 14,
- "insert": 18,
- "/iterate": 12,
- "//fail_if": 6,
- "session_id": 6,
- "#session": 10,
- "session_addvar": 4,
- "#cache_name": 72,
- "duration": 4,
- "second": 8,
- "#expires": 4,
- "server_name": 6,
- "initiate": 10,
- "thread": 6,
- "RW": 6,
- "lock": 24,
- "global": 40,
- "Thread_RWLock": 6,
- "create": 6,
- "reference": 10,
- "@": 8,
- "writing": 6,
- "#lock": 12,
- "writelock": 4,
- "check": 6,
- "cache": 4,
- "unlock": 6,
- "writeunlock": 4,
- "null": 26,
- "#maxage": 4,
- "cached": 8,
- "data": 12,
- "too": 4,
- "old": 4,
- "reading": 2,
- "readlock": 2,
- "readunlock": 2,
- "value": 14,
- "true": 12,
- "false": 8,
- "ignored": 2,
- "//##################################################################": 4,
- "knoptype": 2,
- "All": 4,
- "Knop": 6,
- "custom": 8,
- "types": 10,
- "should": 4,
- "have": 6,
- "parent": 5,
- "This": 5,
- "identify": 2,
- "registered": 2,
- "knop": 6,
- "isknoptype": 2,
- "knop_knoptype": 2,
- "prototype": 4,
- "version": 4,
- "14": 4,
- "Base": 2,
- "framework": 2,
- "Contains": 2,
- "common": 4,
- "member": 10,
- "Used": 2,
- "boilerplate": 2,
- "creating": 4,
- "other": 4,
- "instance": 8,
- "variables": 2,
- "are": 4,
- "available": 2,
- "well": 2,
- "CHANGE": 4,
- "NOTES": 4,
- "Syntax": 4,
- "adjustments": 4,
- "9": 2,
- "Changed": 6,
- "error_msg": 15,
- "error": 22,
- "numbers": 2,
- "added": 10,
- "even": 2,
- "language": 10,
- "already": 2,
- "exists.": 2,
- "improved": 4,
- "reporting": 2,
- "messages": 6,
- "such": 2,
- "from": 6,
- "bad": 2,
- "database": 14,
- "queries": 2,
- "error_lang": 2,
- "provide": 2,
- "knop_lang": 8,
- "object": 7,
- "add": 12,
- "localized": 2,
- "any": 14,
- "except": 2,
- "knop_base": 8,
- "html": 4,
- "xhtml": 28,
- "help": 10,
- "nicely": 2,
- "formatted": 2,
- "output.": 2,
- "Centralized": 2,
- "error_code": 11,
- "knop_base.": 2,
- "Moved": 6,
- "codes": 2,
- "improve": 2,
- "documentation.": 2,
- "It": 2,
- "always": 2,
- "an": 8,
- "list": 4,
- "parameter.": 2,
- "trace": 2,
- "tagtime": 4,
- "was": 6,
- "nav": 4,
- "earlier": 2,
- "varname": 4,
- "retreive": 2,
- "variable": 8,
- "that": 18,
- "stored": 2,
- "in.": 2,
- "automatically": 2,
- "sense": 2,
- "doctype": 6,
- "exists": 2,
- "buffer.": 2,
- "The": 6,
- "result": 6,
- "performance.": 2,
- "internal": 2,
- "html.": 2,
- "Introduced": 2,
- "_knop_data": 10,
- "general": 2,
- "level": 2,
- "caching": 2,
- "between": 2,
- "different": 2,
- "objects.": 2,
- "TODO": 2,
- "option": 2,
- "Google": 2,
- "Code": 2,
- "Wiki": 2,
- "working": 2,
- "properly": 4,
- "run": 2,
- "by": 12,
- "atbegin": 2,
- "handler": 2,
- "explicitly": 2,
- "*/": 2,
- "array": 20,
- "entire": 4,
- "ms": 2,
- "defined": 4,
- "each": 8,
- "instead": 4,
- "avoid": 2,
- "recursion": 2,
- "properties": 4,
- "params": 11,
- "|": 13,
- "#endslash": 10,
- "#tags": 2,
- "#t": 2,
- "doesn": 4,
- "t": 8,
- "p": 2,
- "n": 30,
- "Parameters": 4,
- "nParameters": 2,
- "r": 8,
- "Internal.": 2,
- "Finds": 2,
- "out": 2,
- "used.": 2,
- "Looks": 2,
- "unless": 2,
- "array.": 2,
- "variable.": 2,
- "Looking": 2,
- "#params": 5,
- "#xhtmlparam": 4,
- "boolean": 4,
- "plain": 2,
- "#doctype": 4,
- "copy": 4,
- "standard": 2,
- "code": 2,
- "errors": 12,
- "error_data": 12,
- "form": 2,
- "grid": 2,
- "lang": 2,
- "user": 4,
- "#error_lang": 12,
- "addlanguage": 4,
- "strings": 6,
- "@#errorcodes": 2,
- "#error_lang_custom": 2,
- "#custom_language": 10,
- "once": 4,
- "one": 2,
- "key": 3,
- "#custom_string": 4,
- "#errorcodes": 4,
- "#error_code": 10,
- "message": 6,
- "getstring": 2,
- "literal": 3,
- "test": 2,
- "known": 2,
- "lasso": 2,
- "knop_timer": 2,
- "knop_unique": 2,
- "look": 2,
- "#varname": 6,
- "loop_abort": 2,
- "tag_name": 2,
- "#timer": 2,
- "#trace": 4,
- "merge": 2,
- "#eol": 8,
- "2010": 4,
- "23": 4,
- "Custom": 2,
- "interact": 2,
- "databases": 2,
- "Supports": 4,
- "both": 2,
- "MySQL": 2,
- "FileMaker": 2,
- "datasources": 2,
- "2012": 4,
- "06": 2,
- "10": 2,
- "SP": 4,
- "Fix": 2,
- "decimal": 5,
- "precision": 2,
- "bug": 2,
- "6": 2,
- "0": 2,
- "1": 2,
- "renderfooter": 2,
- "15": 2,
- "Add": 2,
- "support": 6,
- "host": 6,
- "Thanks": 2,
- "Ric": 2,
- "Lewis": 2,
- "settable": 4,
- "removed": 2,
- "table": 6,
- "nextrecord": 12,
- "deprecation": 2,
- "warning": 2,
- "corrected": 2,
- "verification": 2,
- "index": 4,
- "before": 4,
- "calling": 2,
- "resultset_count": 6,
- "break": 2,
- "versions": 2,
- "fixed": 4,
- "incorrect": 2,
- "debug_trace": 2,
- "addrecord": 4,
- "how": 2,
- "keyvalue": 10,
- "returned": 6,
- "adding": 2,
- "records": 4,
- "inserting": 2,
- "generated": 2,
- "suppressed": 2,
- "specifying": 2,
- "saverecord": 8,
- "deleterecord": 4,
- "case.": 2,
- "recorddata": 6,
- "no": 2,
- "longer": 2,
- "touch": 2,
- "current_record": 2,
- "zero": 2,
- "access": 2,
- "occurrence": 2,
- "same": 4,
- "returns": 4,
- "knop_databaserows": 2,
- "inlinename.": 4,
- "next.": 2,
- "remains": 2,
- "supported": 2,
- "backwards": 2,
- "compatibility.": 2,
- "resets": 2,
- "record": 20,
- "pointer": 8,
- "reaching": 2,
- "last": 4,
- "honors": 2,
- "incremented": 2,
- "recordindex": 4,
- "specific": 2,
- "found.": 2,
- "getrecord": 8,
- "REALLY": 2,
- "works": 4,
- "keyvalues": 4,
- "double": 2,
- "oops": 4,
- "I": 4,
- "thought": 2,
- "but": 2,
- "misplaced": 2,
- "paren...": 2,
- "corresponding": 2,
- "resultset": 2,
- "...": 3,
- "/resultset": 2,
- "through": 2,
- "handling": 2,
- "better": 2,
- "knop_user": 4,
- "keeplock": 4,
- "updates": 2,
- "datatype": 2,
- "knop_databaserow": 2,
- "iterated.": 2,
- "When": 2,
- "iterating": 2,
- "row": 2,
- "values.": 2,
- "Addedd": 2,
- "increments": 2,
- "recordpointer": 2,
- "called": 2,
- "until": 2,
- "found": 5,
- "set": 10,
- "reached.": 2,
- "Returns": 2,
- "long": 2,
- "there": 2,
- "more": 2,
- "records.": 2,
- "Useful": 2,
- "loop": 2,
- "example": 2,
- "below": 2,
- "Implemented": 2,
- ".": 5,
- "reset": 2,
- "query.": 2,
- "shortcut": 2,
- "Removed": 2,
- "onassign": 2,
- "touble": 2,
- "Extended": 2,
- "field_names": 2,
- "names": 4,
- "db": 2,
- "objects": 2,
- "never": 2,
- "been": 2,
- "optionally": 2,
- "supports": 2,
- "sql.": 2,
- "Make": 2,
- "sure": 2,
- "SQL": 2,
- "includes": 2,
- "relevant": 2,
- "keyfield": 4,
- "lockfield": 2,
- "locking": 4,
- "capturesearchvars": 2,
- "mysteriously": 2,
- "after": 2,
- "operations": 2,
- "caused": 2,
- "errors.": 2,
- "flag": 2,
- "save": 2,
- "locked": 2,
- "releasing": 2,
- "Adding": 2,
- "progress.": 2,
- "Done": 2,
- "oncreate": 2,
- "getrecord.": 2,
- "documentation": 2,
- "most": 2,
- "existing": 2,
- "it.": 2,
- "Faster": 2,
- "than": 2,
- "scratch.": 2,
- "shown_first": 2,
- "again": 2,
- "hoping": 2,
- "s": 2,
- "only": 2,
- "captured": 2,
- "update": 2,
- "uselimit": 2,
- "querys": 2,
- "LIMIT": 2,
- "still": 2,
- "gets": 2,
- "proper": 2,
- "searchresult": 2,
- "separate": 2,
- "COUNT": 2,
- "define": 20,
- "trait_json_serialize": 2,
- "trait": 1,
- "{": 18,
- "require": 1,
- "asString": 3,
- "}": 18,
- "json_serialize": 18,
- "e": 13,
- "bytes": 8,
- "#e": 13,
- "Replace": 19,
- "&": 21,
- "json_literal": 1,
- "asstring": 4,
- "gmt": 1,
- "trait_forEach": 1,
- "delimit": 7,
- "foreach": 1,
- "#delimit": 7,
- "#1": 3,
- "pr": 1,
- "eachPair": 1,
- "select": 1,
- "#pr": 2,
- "json_object": 2,
- "foreachpair": 1,
- "serialize": 1,
- "json_consume_string": 3,
- "ibytes": 9,
- "obytes": 3,
- "temp": 12,
- "#temp": 19,
- "#ibytes": 17,
- "export8bits": 6,
- "#obytes": 5,
- "import8bits": 4,
- "Escape": 1,
- "unescape": 1,
- "//Replace": 1,
- "BeginsWith": 1,
- "EndsWith": 1,
- "Protect": 1,
- "serialization_reader": 1,
- "xml": 1,
- "read": 1,
- "/Protect": 1,
- "regexp": 1,
- "d": 2,
- "T": 3,
- "Z": 1,
- "matches": 1,
- "Format": 1,
- "yyyyMMdd": 2,
- "HHmmssZ": 1,
- "HHmmss": 1,
- "json_consume_token": 2,
- "marker": 4,
- "Is": 1,
- "end": 2,
- "token": 1,
- "//............................................................................": 2,
- "string_IsNumeric": 1,
- "json_consume_array": 3,
- "While": 1,
- "If": 4,
- "Discard": 1,
- "Else": 7,
- "#key": 12,
- "json_consume_object": 2,
- "Loop_Abort": 1,
- "/If": 3,
- "/While": 1,
- "Find": 3,
- "Return": 7,
- "Second": 1,
- "json_deserialize": 1,
- "removeLeading": 1,
- "bom_utf8": 1,
- "Reset": 1,
- "on": 1,
- "provided": 1,
- "**/": 1,
- "public": 1,
- "onCreate": 1,
- "..onCreate": 1,
- "#rest": 1,
- "json_rpccall": 1,
- "#id": 2,
- "#host": 4,
- "Lasso_UniqueID": 1,
- "Decode_JSON": 2,
- "Include_URL": 1,
- "PostParams": 1,
- "Encode_JSON": 1,
- "Map": 3,
- "#method": 1,
- "LassoScript": 1,
- "JSON": 2,
- "Encoding": 1,
- "Decoding": 1,
- "Copyright": 1,
- "LassoSoft": 1,
- "Inc.": 1,
- " ": 1,
- " ": 1,
- "": 1,
- "incorporated": 1,
- "Lasso_TagExists": 1,
- "False": 1,
- "Define_Tag": 1,
- "Namespace": 1,
- "Required": 1,
- "Optional": 1,
- "f": 2,
- "b": 2,
- "newoptions": 1,
- "options": 2,
- "queue": 2,
- "priorityqueue": 2,
- "stack": 2,
- "pair": 1,
- "client_ip": 1,
- "client_address": 1,
- "__jsonclass__": 6,
- "deserialize": 2,
- "": 3,
- " ": 3,
- "Decode_": 1,
- "consume_string": 1,
- "unescapes": 1,
- "u": 1,
- "UTF": 4,
- "QT": 4,
- "TZ": 2,
- "consume_token": 1,
- "consume_array": 1,
- "consume_object": 1,
- "val": 1,
- "native": 2,
- "comment": 2,
- "//www.lassosoft.com/json": 1,
- "Literal": 2,
- "String": 1,
- "Object": 2,
- "JSON_RPCCall": 1,
- "RPCCall": 1,
- "JSON_": 1,
- "//localhost/lassoapps.8/rpc/rpc.lasso": 1,
- "request": 2,
- "JSON_Records": 3,
- "KeyField": 1,
- "ReturnField": 1,
- "ExcludeField": 1,
- "Fields": 1,
- "_fields": 1,
- "fields": 2,
- "No": 1,
- "_keyfield": 4,
- "ID": 1,
- "_index": 1,
- "_return": 1,
- "returnfield": 1,
- "_exclude": 1,
- "excludefield": 1,
- "_records": 1,
- "_record": 1,
- "_temp": 1,
- "_field": 1,
- "_output": 1,
- "rows": 1,
- "#_records": 1,
- "@#_output": 1,
- "/Define_Tag": 1
- },
- "Max": {
- "max": 1,
- "v2": 1,
- ";": 39,
- "#N": 2,
- "vpatcher": 1,
- "#P": 33,
- "toggle": 1,
- "button": 4,
- "window": 2,
- "setfont": 1,
- "Verdana": 1,
- "linecount": 1,
- "newex": 8,
- "r": 1,
- "jojo": 2,
- "#B": 2,
- "color": 2,
- "s": 1,
- "route": 1,
- "append": 1,
- "toto": 1,
- "%": 1,
- "counter": 2,
- "#X": 1,
- "flags": 1,
- "newobj": 1,
- "metro": 1,
- "t": 2,
- "message": 2,
- "Goodbye": 1,
- "World": 2,
- "Hello": 1,
- "connect": 13,
- "fasten": 1,
- "pop": 1,
- "{": 126,
- "}": 126,
- "[": 163,
- "]": 163
- },
- "Awk": {
- "SHEBANG#!awk": 1,
- "BEGIN": 1,
- "{": 17,
- "n": 13,
- ";": 55,
- "printf": 1,
- "network_max_bandwidth_in_byte": 3,
- "network_max_packet_per_second": 3,
- "last3": 3,
- "last4": 3,
- "last5": 3,
- "last6": 3,
- "}": 17,
- "if": 14,
- "(": 14,
- "/Average/": 1,
- ")": 14,
- "#": 48,
- "Skip": 1,
- "the": 12,
- "Average": 1,
- "values": 1,
- "next": 1,
- "/all/": 1,
- "This": 8,
- "is": 7,
- "cpu": 1,
- "info": 7,
- "print": 35,
- "FILENAME": 35,
- "-": 2,
- "/eth0/": 1,
- "eth0": 1,
- "network": 1,
- "Total": 9,
- "number": 9,
- "of": 22,
- "packets": 4,
- "received": 4,
- "per": 14,
- "second.": 8,
- "else": 4,
- "transmitted": 4,
- "bytes": 4,
- "/proc": 1,
- "|": 4,
- "cswch": 1,
- "tps": 1,
- "kbmemfree": 1,
- "totsck/": 1,
- "/": 2,
- "[": 1,
- "]": 1,
- "proc/s": 1,
- "context": 1,
- "switches": 1,
- "second": 6,
- "disk": 1,
- "total": 1,
- "transfers": 1,
- "read": 1,
- "requests": 2,
- "write": 1,
- "block": 2,
- "reads": 1,
- "writes": 1,
- "mem": 1,
- "Amount": 7,
- "free": 2,
- "memory": 6,
- "available": 1,
- "in": 11,
- "kilobytes.": 7,
- "used": 8,
- "does": 1,
- "not": 1,
- "take": 1,
- "into": 1,
- "account": 1,
- "by": 4,
- "kernel": 3,
- "itself.": 1,
- "Percentage": 2,
- "memory.": 1,
- "X": 1,
- "shared": 1,
- "system": 1,
- "Always": 1,
- "zero": 1,
- "with": 1,
- "kernels.": 1,
- "as": 1,
- "buffers": 1,
- "to": 1,
- "cache": 1,
- "data": 1,
- "swap": 3,
- "space": 2,
- "space.": 1,
- "socket": 1,
- "sockets.": 1,
- "Number": 4,
- "TCP": 1,
- "sockets": 3,
- "currently": 4,
- "use.": 4,
- "UDP": 1,
- "RAW": 1,
- "IP": 1,
- "fragments": 1,
- "END": 1
- },
- "JavaScript": {
- "(": 8518,
- "function": 1212,
- "window": 18,
- "angular": 1,
- ")": 8526,
- "{": 2738,
- "Array.prototype.last": 1,
- "return": 945,
- "this": 578,
- "[": 1461,
- "this.length": 41,
- "-": 706,
- "]": 1458,
- ";": 4056,
- "}": 2714,
- "var": 911,
- "app": 3,
- "angular.module": 1,
- "JSON": 5,
- "if": 1230,
- "f": 666,
- "n": 874,
- "<": 209,
- "+": 1135,
- "typeof": 132,
- "Date.prototype.toJSON": 2,
- "key": 85,
- "isFinite": 1,
- "this.valueOf": 2,
- "this.getUTCFullYear": 1,
- "this.getUTCMonth": 1,
- "this.getUTCDate": 1,
- "this.getUTCHours": 1,
- "this.getUTCMinutes": 1,
- "this.getUTCSeconds": 1,
- "null": 427,
- "String.prototype.toJSON": 1,
- "Number.prototype.toJSON": 1,
- "Boolean.prototype.toJSON": 1,
- "cx": 2,
- "/": 290,
- "u0000": 1,
- "u00ad": 1,
- "u0600": 1,
- "u0604": 1,
- "u070f": 1,
- "u17b4": 1,
- "u17b5": 1,
- "u200c": 1,
- "u200f": 1,
- "u2028": 3,
- "u202f": 1,
- "u2060": 1,
- "u206f": 1,
- "ufeff": 1,
- "ufff0": 1,
- "uffff": 1,
- "/g": 37,
- "escapable": 1,
- "b": 961,
- "t": 436,
- "r": 261,
- "object": 59,
- "string": 41,
- "number": 13,
- "boolean": 8,
- "Array": 3,
- "JSON.stringify": 4,
- "u": 304,
- "/bfnrt": 1,
- "|": 206,
- "a": 1489,
- "fA": 2,
- "F": 8,
- ".replace": 38,
- "*": 70,
- "JSON.parse": 1,
- "PUT": 1,
- "DELETE": 1,
- "all": 16,
- "change": 16,
- "id": 38,
- "_id": 1,
- "error": 20,
- "Can": 2,
- "add": 15,
- "remove": 9,
- "s": 290,
- "ties": 1,
- "to": 92,
- "collection.": 1,
- "_removeReference": 1,
- "model": 14,
- "model.collection": 2,
- "delete": 39,
- "model.unbind": 1,
- "this._onModelEvent": 1,
- "_onModelEvent": 1,
- "ev": 5,
- "collection": 3,
- "options": 56,
- "||": 648,
- "&&": 1017,
- "this._remove": 1,
- "model.idAttribute": 2,
- "this._byId": 2,
- "model.previous": 1,
- "model.id": 1,
- "this.trigger.apply": 2,
- "arguments": 83,
- "methods": 8,
- "_.each": 1,
- "method": 30,
- "Backbone.Collection.prototype": 1,
- "_": 9,
- ".apply": 7,
- "this.models": 1,
- ".concat": 3,
- "_.toArray": 1,
- "Backbone.Router": 1,
- "options.routes": 2,
- "this.routes": 4,
- "this._bindRoutes": 1,
- "this.initialize.apply": 2,
- "namedParam": 2,
- "w": 110,
- "d": 771,
- "splatParam": 2,
- "escapeRegExp": 2,
- ".": 91,
- "#": 13,
- "_.extend": 9,
- "Backbone.Router.prototype": 1,
- "Backbone.Events": 2,
- "initialize": 3,
- "//": 410,
- "route": 18,
- "name": 161,
- "callback": 23,
- "Backbone.history": 2,
- "new": 86,
- "Backbone.History": 2,
- "_.isRegExp": 1,
- "this._routeToRegExp": 1,
- "Backbone.history.route": 1,
- "_.bind": 2,
- "fragment": 27,
- "args": 31,
- "this._extractParameters": 1,
- "callback.apply": 1,
- "navigate": 2,
- "triggerRoute": 4,
- "Backbone.history.navigate": 1,
- "_bindRoutes": 1,
- "routes": 4,
- "for": 262,
- "in": 170,
- "routes.unshift": 1,
- "i": 853,
- "l": 312,
- "routes.length": 1,
- "this.route": 1,
- "_routeToRegExp": 1,
- "route.replace": 1,
- "RegExp": 12,
- "_extractParameters": 1,
- "route.exec": 1,
- ".slice": 6,
- "this.handlers": 2,
- "_.bindAll": 1,
- "hashStrip": 4,
- "#*": 1,
- "isExplorer": 1,
- "/msie": 1,
- "w.": 17,
- "historyStarted": 3,
- "false": 142,
- "Backbone.History.prototype": 1,
- "interval": 3,
- "getFragment": 1,
- "forcePushState": 2,
- "this._hasPushState": 6,
- "window.location.pathname": 1,
- "search": 5,
- "window.location.search": 1,
- "fragment.indexOf": 1,
- "this.options.root": 6,
- "fragment.substr": 1,
- "this.options.root.length": 1,
- "else": 307,
- "window.location.hash": 3,
- "fragment.replace": 1,
- "start": 20,
- "throw": 27,
- "Error": 16,
- "this.options": 6,
- "root": 5,
- "this._wantsPushState": 3,
- "this.options.pushState": 2,
- "window.history": 2,
- "window.history.pushState": 2,
- "this.getFragment": 6,
- "docMode": 3,
- "document.documentMode": 3,
- "oldIE": 3,
- "isExplorer.exec": 1,
- "navigator.userAgent.toLowerCase": 1,
- "this.iframe": 4,
- ".hide": 2,
- ".appendTo": 2,
- ".contentWindow": 1,
- "this.navigate": 2,
- ".bind": 3,
- "this.checkUrl": 3,
- "setInterval": 6,
- "this.interval": 1,
- "this.fragment": 13,
- "true": 147,
- "loc": 2,
- "window.location": 5,
- "atRoot": 3,
- "loc.pathname": 1,
- "loc.hash": 1,
- "loc.hash.replace": 1,
- "window.history.replaceState": 1,
- "document.title": 2,
- "loc.protocol": 2,
- "loc.host": 2,
- "this.loadUrl": 4,
- "this.handlers.unshift": 1,
- "checkUrl": 1,
- "e": 663,
- "current": 7,
- "this.iframe.location.hash": 3,
- "decodeURIComponent": 2,
- "loadUrl": 1,
- "fragmentOverride": 2,
- "matched": 2,
- "_.any": 1,
- "handler": 14,
- "handler.route.test": 1,
- "handler.callback": 1,
- "frag": 13,
- "frag.indexOf": 1,
- "this.iframe.document.open": 1,
- ".close": 1,
- "Backbone.View": 1,
- "this.cid": 3,
- "_.uniqueId": 1,
- "this._configure": 1,
- "this._ensureElement": 1,
- "this.delegateEvents": 1,
- "selectorDelegate": 2,
- "selector": 40,
- "this.el": 10,
- "eventSplitter": 2,
- "S": 8,
- "s*": 15,
- ".*": 20,
- "viewOptions": 2,
- "Backbone.View.prototype": 1,
- "tagName": 3,
- "render": 1,
- ".remove": 2,
- "make": 2,
- "attributes": 14,
- "content": 5,
- "el": 4,
- "document.createElement": 26,
- ".attr": 1,
- ".html": 1,
- "delegateEvents": 1,
- "events": 18,
- "this.events": 1,
- ".unbind": 4,
- "match": 30,
- "key.match": 1,
- "eventName": 21,
- ".delegate": 2,
- "_configure": 1,
- "viewOptions.length": 1,
- "attr": 13,
- "_ensureElement": 1,
- "attrs": 6,
- "this.attributes": 1,
- "this.id": 2,
- "attrs.id": 1,
- "this.className": 10,
- "this.make": 1,
- "this.tagName": 1,
- "_.isString": 1,
- ".get": 3,
- "extend": 13,
- "protoProps": 6,
- "classProps": 2,
- "child": 17,
- "inherits": 2,
- "child.extend": 1,
- "this.extend": 1,
- "Backbone.Model.extend": 1,
- "Backbone.Collection.extend": 1,
- "Backbone.Router.extend": 1,
- "Backbone.View.extend": 1,
- "methodMap": 2,
- "Backbone.sync": 1,
- "type": 49,
- "params": 2,
- "dataType": 6,
- "processData": 3,
- "params.url": 2,
- "getUrl": 2,
- "urlError": 2,
- "params.data": 5,
- "params.contentType": 2,
- "model.toJSON": 1,
- "Backbone.emulateJSON": 2,
- "params.processData": 1,
- "Backbone.emulateHTTP": 1,
- "params.data._method": 1,
- "params.type": 1,
- "params.beforeSend": 1,
- "xhr": 1,
- "xhr.setRequestHeader": 1,
- ".ajax": 1,
- "ctor": 6,
- "parent": 15,
- "staticProps": 3,
- "protoProps.hasOwnProperty": 1,
- "protoProps.constructor": 1,
- "parent.apply": 1,
- "ctor.prototype": 3,
- "parent.prototype": 6,
- "child.prototype": 4,
- "child.prototype.constructor": 1,
- "child.__super__": 3,
- "object.url": 4,
- "_.isFunction": 1,
- "wrapError": 1,
- "onError": 3,
- "resp": 3,
- "model.trigger": 1,
- "escapeHTML": 1,
- "string.replace": 1,
- "&": 13,
- "#x": 1,
- "da": 1,
- "/gi": 2,
- "": 1,
- "lt": 55,
- "replace": 8,
- "#x27": 1,
- "#x2F": 1,
- ".call": 10,
- "undefined": 328,
- "document": 26,
- "window.document": 2,
- "navigator": 3,
- "window.navigator": 2,
- "location": 2,
- "jQuery": 48,
- "context": 48,
- "The": 9,
- "is": 67,
- "actually": 2,
- "just": 2,
- "the": 107,
- "init": 7,
- "constructor": 8,
- "jQuery.fn.init": 2,
- "rootjQuery": 8,
- "Map": 4,
- "over": 7,
- "case": 136,
- "of": 28,
- "overwrite": 4,
- "_jQuery": 4,
- "window.jQuery": 7,
- "window.": 6,
- "A": 24,
- "central": 2,
- "reference": 5,
- "simple": 3,
- "way": 2,
- "check": 8,
- "HTML": 9,
- "strings": 8,
- "or": 38,
- "ID": 8,
- "Prioritize": 1,
- "#id": 3,
- "": 1,
- "avoid": 5,
- "XSS": 1,
- "via": 2,
- "location.hash": 1,
- "#9521": 1,
- "quickExpr": 2,
- "<[\\w\\W]+>": 4,
- "Check": 10,
- "has": 9,
- "non": 8,
- "whitespace": 7,
- "character": 3,
- "it": 112,
- "rnotwhite": 2,
- "S/": 4,
- "Used": 3,
- "trimming": 2,
- "trimLeft": 4,
- "trimRight": 4,
- "Match": 3,
- "standalone": 2,
- "tag": 2,
- "rsingleTag": 2,
- "<(\\w+)\\s*\\/?>": 4,
- "<\\/\\1>": 4,
- "rvalidchars": 2,
- "rvalidescape": 2,
- "d*": 8,
- "eE": 4,
- "rvalidbraces": 2,
- "Useragent": 2,
- "rwebkit": 2,
- "webkit": 6,
- "ropera": 2,
- "opera": 4,
- ".*version": 4,
- "rmsie": 2,
- "msie": 4,
- "rmozilla": 2,
- "mozilla": 4,
- "rv": 4,
- "Matches": 1,
- "dashed": 1,
- "camelizing": 1,
- "rdashAlpha": 1,
- "z": 21,
- "/ig": 3,
- "rmsPrefix": 1,
- "ms": 2,
- "by": 12,
- "jQuery.camelCase": 6,
- "as": 11,
- "fcamelCase": 1,
- "letter": 3,
- ".toUpperCase": 3,
- "Keep": 2,
- "UserAgent": 2,
- "use": 10,
- "with": 18,
- "jQuery.browser": 4,
- "userAgent": 3,
- "navigator.userAgent": 3,
- "For": 5,
- "matching": 3,
- "engine": 2,
- "and": 42,
- "version": 10,
- "browser": 11,
- "browserMatch": 3,
- "deferred": 25,
- "used": 13,
- "on": 37,
- "DOM": 21,
- "ready": 31,
- "readyList": 6,
- "event": 31,
- "DOMContentLoaded": 14,
- "Save": 2,
- "some": 2,
- "core": 2,
- "toString": 4,
- "Object.prototype.toString": 7,
- "hasOwn": 2,
- "Object.prototype.hasOwnProperty": 6,
- "push": 11,
- "Array.prototype.push": 4,
- "slice": 10,
- "Array.prototype.slice": 6,
- "trim": 5,
- "String.prototype.trim": 3,
- "indexOf": 5,
- "Array.prototype.indexOf": 4,
- "Class": 2,
- "pairs": 2,
- "class2type": 3,
- "jQuery.fn": 4,
- "jQuery.prototype": 2,
- "elem": 101,
- "ret": 62,
- "doc": 4,
- "Handle": 14,
- "DOMElement": 2,
- "selector.nodeType": 2,
- "this.context": 17,
- "body": 22,
- "element": 19,
- "only": 10,
- "exists": 9,
- "once": 4,
- "optimize": 3,
- "finding": 2,
- "document.body": 8,
- "this.selector": 16,
- "Are": 2,
- "we": 25,
- "dealing": 2,
- "an": 12,
- "selector.charAt": 4,
- "selector.length": 4,
- "Assume": 2,
- "that": 33,
- "end": 14,
- "are": 18,
- "skip": 5,
- "regex": 3,
- "quickExpr.exec": 2,
- "Verify": 3,
- "no": 19,
- "was": 6,
- "specified": 4,
- "HANDLE": 2,
- "html": 10,
- "array": 7,
- "instanceof": 19,
- "context.ownerDocument": 2,
- "If": 21,
- "single": 2,
- "passed": 5,
- "clean": 3,
- "not": 26,
- "like": 5,
- "method.": 3,
- "sort": 4,
- ".sort": 9,
- "splice": 5,
- ".splice": 5,
- "jQuery.fn.init.prototype": 2,
- "jQuery.extend": 11,
- "jQuery.fn.extend": 4,
- "src": 7,
- "copy": 16,
- "copyIsArray": 2,
- "clone": 5,
- "target": 44,
- "length": 48,
- "arguments.length": 18,
- "deep": 12,
- "situation": 2,
- "when": 20,
- "something": 3,
- "possible": 3,
- "jQuery.isFunction": 6,
- "itself": 4,
- "one": 15,
- "argument": 2,
- "Only": 5,
- "deal": 2,
- "null/undefined": 2,
- "values": 10,
- "Extend": 2,
- "base": 2,
- "Prevent": 2,
- "never": 2,
- "ending": 2,
- "loop": 7,
- "continue": 18,
- "Recurse": 2,
- "bring": 2,
- "Return": 2,
- "modified": 3,
- "noConflict": 4,
- "Is": 2,
- "be": 12,
- "Set": 4,
- "occurs.": 2,
- "isReady": 5,
- "counter": 2,
- "track": 2,
- "how": 2,
- "many": 3,
- "items": 2,
- "wait": 12,
- "before": 8,
- "fires.": 2,
- "See": 9,
- "#6781": 2,
- "readyWait": 6,
- "Hold": 2,
- "release": 2,
- "holdReady": 3,
- "hold": 6,
- "jQuery.readyWait": 6,
- "jQuery.ready": 16,
- "Either": 2,
- "released": 2,
- "DOMready/load": 2,
- "yet": 2,
- "jQuery.isReady": 6,
- "Make": 17,
- "sure": 18,
- "at": 58,
- "least": 4,
- "IE": 28,
- "gets": 6,
- "little": 4,
- "overzealous": 4,
- "ticket": 4,
- "#5443": 4,
- "setTimeout": 19,
- "Remember": 2,
- "normal": 2,
- "Ready": 2,
- "fired": 12,
- "decrement": 2,
- "need": 10,
- "there": 6,
- "functions": 6,
- "bound": 8,
- "execute": 4,
- "readyList.fireWith": 1,
- "Trigger": 2,
- "any": 12,
- "jQuery.fn.trigger": 2,
- ".trigger": 3,
- ".off": 1,
- "bindReady": 5,
- "jQuery.Callbacks": 2,
- "Catch": 2,
- "cases": 4,
- "where": 2,
- ".ready": 2,
- "called": 2,
- "after": 7,
- "already": 6,
- "occurred.": 2,
- "document.readyState": 4,
- "asynchronously": 2,
- "allow": 6,
- "scripts": 2,
- "opportunity": 2,
- "delay": 4,
- "Mozilla": 2,
- "Opera": 2,
- "nightlies": 3,
- "currently": 4,
- "support": 13,
- "document.addEventListener": 6,
- "Use": 7,
- "handy": 2,
- "fallback": 4,
- "window.onload": 4,
- "will": 7,
- "always": 6,
- "work": 6,
- "window.addEventListener": 2,
- "document.attachEvent": 6,
- "ensure": 2,
- "firing": 16,
- "onload": 2,
- "maybe": 2,
- "late": 2,
- "but": 4,
- "safe": 3,
- "also": 5,
- "iframes": 2,
- "window.attachEvent": 2,
- "frame": 23,
- "continually": 2,
- "see": 6,
- "toplevel": 7,
- "try": 44,
- "window.frameElement": 2,
- "catch": 38,
- "document.documentElement.doScroll": 4,
- "doScrollCheck": 6,
- "test/unit/core.js": 2,
- "details": 3,
- "concerning": 2,
- "isFunction.": 2,
- "Since": 3,
- "alert": 11,
- "aren": 5,
- "pass": 7,
- "through": 3,
- "well": 2,
- "obj": 40,
- "jQuery.type": 4,
- "obj.nodeType": 2,
- "jQuery.isWindow": 2,
- "Not": 4,
- "own": 4,
- "property": 15,
- "must": 4,
- "Object": 4,
- "obj.constructor": 2,
- "hasOwn.call": 6,
- "obj.constructor.prototype": 2,
- "IE8": 2,
- "Will": 2,
- "exceptions": 2,
- "certain": 2,
- "host": 29,
- "objects": 7,
- "#9897": 1,
- "Own": 2,
- "properties": 7,
- "enumerated": 2,
- "firstly": 2,
- "so": 8,
- "speed": 4,
- "up": 4,
- "last": 6,
- "then": 8,
- "own.": 2,
- "isEmptyObject": 7,
- "msg": 4,
- "parseJSON": 4,
- "data": 145,
- "leading/trailing": 2,
- "removed": 3,
- "can": 10,
- "access": 2,
- "elems": 9,
- "fn": 14,
- "value": 98,
- "chainable": 4,
- "emptyGet": 3,
- "exec": 8,
- "bulk": 3,
- "elems.length": 1,
- "Sets": 3,
- "jQuery.access": 2,
- "Optionally": 1,
- "get": 24,
- "executed": 1,
- "Bulk": 1,
- "operations": 1,
- "iterate": 1,
- "executing": 1,
- "exec.call": 1,
- "Otherwise": 2,
- "they": 2,
- "run": 1,
- "against": 1,
- "entire": 1,
- "set": 22,
- "fn.call": 2,
- "value.call": 1,
- "Gets": 2,
- "now": 5,
- "Date": 4,
- ".getTime": 3,
- "frowned": 1,
- "upon.": 1,
- "More": 1,
- "http": 6,
- "//docs.jquery.com/Utilities/jQuery.browser": 1,
- "uaMatch": 3,
- "ua": 6,
- "ua.toLowerCase": 1,
- "rwebkit.exec": 1,
- "ropera.exec": 1,
- "rmsie.exec": 1,
- "ua.indexOf": 1,
- "rmozilla.exec": 1,
- "sub": 4,
- "jQuerySub": 7,
- "jQuerySub.fn.init": 2,
- "jQuerySub.superclass": 1,
- "jQuerySub.fn": 2,
- "jQuerySub.prototype": 1,
- "jQuerySub.fn.constructor": 1,
- "jQuerySub.sub": 1,
- "this.sub": 2,
- "jQuery.fn.init.call": 1,
- "rootjQuerySub": 2,
- "jQuerySub.fn.init.prototype": 1,
- "jQuery.each": 2,
- ".split": 19,
- "name.toLowerCase": 6,
- "jQuery.uaMatch": 1,
- "browserMatch.browser": 2,
- "jQuery.browser.version": 1,
- "browserMatch.version": 1,
- "jQuery.browser.webkit": 1,
- "jQuery.browser.safari": 1,
- "rnotwhite.test": 2,
- "xA0": 7,
- "document.removeEventListener": 2,
- "document.detachEvent": 2,
- "trick": 2,
- "Diego": 2,
- "Perini": 2,
- "//javascript.nwbox.com/IEContentLoaded/": 2,
- "waiting": 2,
- "flagsCache": 3,
- "createFlags": 2,
- "flags": 13,
- "flags.split": 1,
- "flags.length": 1,
- "Convert": 1,
- "from": 7,
- "String": 2,
- "formatted": 2,
- "cache": 45,
- "first": 10,
- "Actual": 2,
- "list": 21,
- "Stack": 1,
- "fire": 4,
- "calls": 1,
- "repeatable": 1,
- "lists": 2,
- "stack": 2,
- "Last": 2,
- "forgettable": 1,
- "memory": 8,
- "Flag": 2,
- "know": 3,
- "First": 3,
- "internally": 5,
- "fireWith": 1,
- "firingStart": 3,
- "End": 1,
- "firingLength": 4,
- "Index": 1,
- "needed": 2,
- "firingIndex": 5,
- "Add": 4,
- "several": 1,
- "callbacks": 10,
- "actual": 1,
- "args.length": 3,
- "Inspect": 1,
- "recursively": 1,
- "unique": 2,
- "mode": 1,
- "flags.unique": 1,
- "self.has": 1,
- "list.push": 1,
- "Fire": 1,
- "flags.memory": 1,
- "list.length": 5,
- "flags.stopOnFalse": 1,
- "Mark": 1,
- "halted": 1,
- "break": 111,
- "flags.once": 1,
- "stack.length": 1,
- "stack.shift": 1,
- "self.fireWith": 1,
- "self.disable": 1,
- "Callbacks": 1,
- "self": 17,
- "Do": 2,
- "batch": 2,
- "With": 1,
- "/a": 1,
- "top": 12,
- "px": 31,
- "float": 3,
- "left": 14,
- "opacity": 13,
- ".55": 1,
- "checkbox": 14,
- "basic": 1,
- "test": 21,
- "all.length": 1,
- "supports": 2,
- "tests": 48,
- "select": 20,
- "opt": 2,
- "select.appendChild": 1,
- "input": 25,
- "div.getElementsByTagName": 6,
- "strips": 1,
- "leading": 1,
- ".innerHTML": 3,
- "leadingWhitespace": 3,
- "div.firstChild.nodeType": 1,
- "tbody": 7,
- "elements": 9,
- "manipulated": 1,
- "normalizes": 1,
- "default": 21,
- "hrefNormalized": 3,
- "a.getAttribute": 11,
- "uses": 3,
- "filter": 10,
- "instead": 6,
- "around": 1,
- "WebKit": 9,
- "issue.": 1,
- "#5145": 1,
- "/.test": 19,
- "a.style.opacity": 2,
- "style": 30,
- "existence": 1,
- "styleFloat": 1,
- "cssFloat": 4,
- "a.style.cssFloat": 1,
- "defaults": 3,
- "checkOn": 4,
- "input.value": 5,
- "selected": 5,
- "option": 12,
- "working": 1,
- "property.": 1,
- "too": 1,
- "marked": 1,
- "disabled": 11,
- "marks": 1,
- "them": 3,
- "select.disabled": 1,
- "support.optDisabled": 1,
- "opt.disabled": 1,
- "Test": 3,
- "handlers": 1,
- "does": 9,
- "support.noCloneEvent": 1,
- "div.cloneNode": 1,
- ".fireEvent": 3,
- "radio": 17,
- "maintains": 1,
- "its": 2,
- "being": 2,
- "appended": 2,
- "input.setAttribute": 5,
- "support.radioValue": 2,
- "#11217": 1,
- "loses": 1,
- "checked": 4,
- "attribute": 5,
- "div.appendChild": 4,
- "document.createDocumentFragment": 3,
- "fragment.appendChild": 2,
- "div.lastChild": 1,
- "doesn": 2,
- "have": 6,
- "conMarginTop": 3,
- "paddingMarginBorder": 5,
- "positionTopLeftWidthHeight": 3,
- "paddingMarginBorderVisibility": 3,
- "container": 4,
- "container.style.cssText": 1,
- "body.insertBefore": 1,
- "body.firstChild": 1,
- "Construct": 1,
- "div": 28,
- "container.appendChild": 1,
- "table": 6,
- "cells": 3,
- "still": 4,
- "offsetWidth/Height": 3,
- "display": 7,
- "none": 4,
- "other": 3,
- "visible": 1,
- "row": 1,
- "reliable": 1,
- "determining": 3,
- "been": 5,
- "hidden": 12,
- "directly": 2,
- "using": 5,
- "offsets": 1,
- "don": 5,
- "safety": 1,
- "goggles": 1,
- "bug": 3,
- "#4512": 1,
- "more": 6,
- "information": 5,
- "fails": 2,
- "div.innerHTML": 7,
- "tds": 6,
- "isSupported": 7,
- ".offsetHeight": 4,
- ".style.display": 5,
- "empty": 3,
- "fail": 10,
- "support.reliableHiddenOffsets": 1,
- "explicit": 1,
- "width": 32,
- "margin": 8,
- "right": 3,
- "incorrectly": 1,
- "computed": 1,
- "based": 1,
- "container.": 1,
- "info": 2,
- "#3333": 1,
- "Fails": 2,
- "Feb": 1,
- "Bug": 1,
- "getComputedStyle": 3,
- "returns": 1,
- "wrong": 1,
- "window.getComputedStyle": 6,
- "marginDiv": 5,
- "marginDiv.style.width": 1,
- "marginDiv.style.marginRight": 1,
- "div.style.width": 2,
- "support.reliableMarginRight": 1,
- "parseInt": 12,
- "marginRight": 2,
- ".marginRight": 2,
- "div.style.zoom": 2,
- "natively": 1,
- "block": 4,
- "level": 3,
- "act": 1,
- "inline": 3,
- "setting": 2,
- "their": 3,
- "giving": 1,
- "layout": 2,
- "div.style.padding": 1,
- "div.style.border": 1,
- "div.style.overflow": 2,
- "div.style.display": 2,
- "support.inlineBlockNeedsLayout": 1,
- "div.offsetWidth": 2,
- "shrink": 1,
- "wrap": 2,
- "children": 3,
- "support.shrinkWrapBlocks": 1,
- "div.style.cssText": 1,
- "outer": 2,
- "div.firstChild": 3,
- "inner": 2,
- "outer.firstChild": 1,
- "td": 3,
- "outer.nextSibling.firstChild.firstChild": 1,
- "offsetSupport": 2,
- "doesNotAddBorder": 1,
- "inner.offsetTop": 4,
- "doesAddBorderForTableAndCells": 1,
- "td.offsetTop": 1,
- "inner.style.position": 2,
- "inner.style.top": 2,
- "safari": 1,
- "subtracts": 1,
- "border": 7,
- "here": 1,
- "which": 8,
- "offsetSupport.fixedPosition": 1,
- "outer.style.overflow": 1,
- "outer.style.position": 1,
- "offsetSupport.subtractsBorderForOverflowNotVisible": 1,
- "offsetSupport.doesNotIncludeMarginInBodyOffset": 1,
- "body.offsetTop": 1,
- "div.style.marginTop": 1,
- "support.pixelMargin": 1,
- "marginTop": 3,
- ".marginTop": 1,
- "container.style.zoom": 2,
- "body.removeChild": 1,
- "rbrace": 1,
- "rmultiDash": 3,
- "Z": 6,
- "Please": 1,
- "caution": 1,
- "uuid": 2,
- "Unique": 1,
- "each": 17,
- "page": 1,
- "Non": 3,
- "digits": 3,
- "rinlinejQuery": 1,
- "expando": 14,
- "jQuery.fn.jquery": 1,
- "Math.random": 2,
- "D/g": 2,
- "following": 1,
- "uncatchable": 1,
- "you": 1,
- "attempt": 2,
- "them.": 1,
- "noData": 3,
- "Ban": 1,
- "except": 1,
- "Flash": 1,
- "handle": 15,
- "expandos": 2,
- "hasData": 2,
- "elem.nodeType": 8,
- "jQuery.cache": 3,
- "jQuery.expando": 12,
- "isEmptyDataObject": 3,
- "pvt": 8,
- "jQuery.acceptData": 2,
- "privateCache": 1,
- "thisCache": 15,
- "internalKey": 12,
- "getByName": 3,
- "We": 6,
- "nodes": 14,
- "JS": 7,
- "differently": 1,
- "because": 1,
- "IE6": 1,
- "internal": 8,
- "order": 1,
- "collisions": 1,
- "between": 1,
- "user": 1,
- "defined": 3,
- "data.": 1,
- "thisCache.data": 3,
- "Users": 1,
- "should": 1,
- "inspect": 1,
- "jQuery.data": 15,
- "undocumented": 1,
- "subject": 1,
- "change.": 1,
- "But": 1,
- "anyone": 1,
- "listen": 1,
- "No.": 1,
- "isEvents": 1,
- "privateCache.events": 1,
- "both": 2,
- "converted": 2,
- "camel": 2,
- "names": 2,
- "Try": 4,
- "find": 7,
- "camelCased": 1,
- "removeData": 8,
- "Reference": 1,
- "isNode": 11,
- "entry": 1,
- "purpose": 1,
- "continuing": 1,
- ".data": 3,
- "Support": 1,
- "space": 1,
- "separated": 1,
- "keys": 11,
- "jQuery.isArray": 1,
- "manipulation": 1,
- "split": 4,
- "cased": 1,
- "spaces": 3,
- "unless": 2,
- "name.split": 1,
- "name.length": 1,
- "want": 1,
- "let": 1,
- "destroyed": 2,
- "jQuery.isEmptyObject": 1,
- "Don": 1,
- "care": 1,
- "Ensure": 1,
- "#10080": 1,
- "jQuery.support.deleteExpando": 3,
- "cache.setInterval": 1,
- "eliminate": 2,
- "node": 23,
- "lookups": 2,
- "entries": 2,
- "longer": 2,
- "exist": 2,
- "us": 2,
- "nor": 2,
- "removeAttribute": 3,
- "Document": 2,
- "these": 2,
- "elem.removeAttribute": 6,
- "only.": 2,
- "_data": 3,
- "acceptData": 3,
- "elem.nodeName": 2,
- "jQuery.noData": 2,
- "elem.nodeName.toLowerCase": 2,
- "elem.getAttribute": 7,
- "parts": 28,
- "part": 8,
- "jQuery._data": 2,
- "elem.attributes": 1,
- "attr.length": 2,
- ".name": 3,
- "name.indexOf": 2,
- "name.substring": 2,
- "dataAttr": 6,
- "multiple": 7,
- "this.each": 42,
- "key.split": 2,
- "this.triggerHandler": 6,
- "fetch": 4,
- "stored": 4,
- "this.data": 5,
- "self.triggerHandler": 2,
- "jQuery.removeData": 2,
- "nothing": 2,
- "found": 10,
- "HTML5": 3,
- "key.replace": 2,
- ".toLowerCase": 7,
- "jQuery.isNumeric": 1,
- "rbrace.test": 2,
- "jQuery.parseJSON": 2,
- "isn": 2,
- "optgroup": 5,
- "option.selected": 2,
- "jQuery.support.optDisabled": 2,
- "option.disabled": 2,
- "option.getAttribute": 2,
- "option.parentNode.disabled": 2,
- "jQuery.nodeName": 3,
- "option.parentNode": 2,
- "Get": 4,
- "specific": 2,
- ".val": 5,
- "get/set": 2,
- "text": 14,
- "comment": 3,
- "nType": 8,
- "jQuery.attrFn": 2,
- "Fallback": 2,
- "prop": 24,
- "supported": 2,
- "jQuery.prop": 2,
- "notxml": 8,
- "jQuery.isXMLDoc": 2,
- "All": 1,
- "lowercase": 1,
- "Grab": 1,
- "necessary": 1,
- "hook": 1,
- "hooks": 14,
- "jQuery.attrHooks": 2,
- "rboolean.test": 4,
- "boolHook": 3,
- "nodeHook": 1,
- "jQuery.removeAttr": 2,
- "hooks.set": 2,
- "elem.setAttribute": 2,
- "hooks.get": 2,
- "existent": 2,
- "normalize": 2,
- "removeAttr": 5,
- "propName": 8,
- "attrNames": 3,
- "isBool": 4,
- "value.toLowerCase": 2,
- "rspace": 1,
- "attrNames.length": 1,
- "jQuery.propFix": 2,
- "#9699": 1,
- "explanation": 1,
- "approach": 1,
- "removal": 1,
- "do": 15,
- "#10870": 1,
- "jQuery.attr": 2,
- "getSetAttribute": 3,
- "corresponding": 2,
- "attrHooks": 3,
- "changed": 3,
- "button": 24,
- "tabIndex": 4,
- "readOnly": 2,
- "htmlFor": 2,
- "class": 5,
- "className": 4,
- "maxLength": 2,
- "cellSpacing": 2,
- "cellPadding": 2,
- "rowSpan": 2,
- "colSpan": 2,
- "useMap": 2,
- "frameBorder": 2,
- "contentEditable": 2,
- "tabindex": 4,
- "height": 25,
- "auto": 3,
- "href": 9,
- "encoding": 26,
- "mouseenter": 9,
- "mouseleave": 9,
- "mouseover": 12,
- "mouseout": 12,
- "**": 1,
- "getData": 3,
- "setData": 3,
- "changeData": 3,
- "click": 11,
- "focus": 7,
- "blur": 8,
- "attrChange": 4,
- "attrName": 4,
- "relatedNode": 4,
- "srcElement": 5,
- "altKey": 4,
- "bubbles": 4,
- "cancelable": 4,
- "ctrlKey": 6,
- "currentTarget": 4,
- "eventPhase": 4,
- "metaKey": 5,
- "relatedTarget": 6,
- "shiftKey": 4,
- "timeStamp": 1,
- "view": 4,
- "char": 2,
- "charCode": 7,
- "keyCode": 6,
- "buttons": 1,
- "clientX": 6,
- "clientY": 5,
- "fromElement": 6,
- "offsetX": 4,
- "offsetY": 4,
- "pageX": 4,
- "pageY": 4,
- "screenX": 4,
- "screenY": 4,
- "toElement": 5,
- "focusin": 9,
- "focusout": 11,
- "form": 12,
- "window.Modernizr": 1,
- "Modernizr": 12,
- "enableClasses": 3,
- "docElement": 1,
- "document.documentElement": 2,
- "mod": 12,
- "modElem": 2,
- "mStyle": 2,
- "modElem.style": 1,
- "inputElem": 6,
- "smile": 4,
- ".toString": 3,
- "prefixes": 2,
- "omPrefixes": 1,
- "cssomPrefixes": 2,
- "omPrefixes.split": 1,
- "domPrefixes": 3,
- "omPrefixes.toLowerCase": 1,
- "ns": 1,
- "inputs": 3,
- "classes": 1,
- "classes.slice": 1,
- "featureName": 5,
- "testing": 1,
- "injectElementWithStyles": 9,
- "rule": 5,
- "testnames": 3,
- "fakeBody": 4,
- "while": 53,
- "node.id": 1,
- ".join": 14,
- "div.id": 1,
- "fakeBody.appendChild": 1,
- "//avoid": 1,
- "crashing": 1,
- "background": 56,
- "image": 5,
- "fakeBody.style.background": 1,
- "docElement.appendChild": 2,
- "fakeBody.parentNode.removeChild": 1,
- "div.parentNode.removeChild": 1,
- "testMediaQuery": 2,
- "mq": 3,
- "matchMedia": 3,
- "window.matchMedia": 1,
- "window.msMatchMedia": 1,
- ".matches": 1,
- "bool": 30,
- "node.currentStyle": 2,
- "isEventSupported": 5,
- "TAGNAMES": 2,
- "element.setAttribute": 3,
- "element.removeAttribute": 2,
- "_hasOwnProperty": 2,
- ".hasOwnProperty": 2,
- "hasOwnProperty": 5,
- "_hasOwnProperty.call": 2,
- "object.constructor.prototype": 1,
- "Function.prototype.bind": 2,
- "bind": 3,
- "TypeError": 2,
- "slice.call": 3,
- "F.prototype": 1,
- "target.prototype": 1,
- "result": 9,
- "target.apply": 2,
- "args.concat": 2,
- "setCss": 7,
- "str": 4,
- "mStyle.cssText": 1,
- "setCssAll": 2,
- "str1": 6,
- "str2": 4,
- "prefixes.join": 3,
- "contains": 8,
- "substr": 2,
- ".indexOf": 2,
- "testProps": 3,
- "props": 21,
- "prefixed": 7,
- "testDOMProps": 2,
- "item": 4,
- "item.bind": 1,
- "testPropsAll": 17,
- "ucProp": 5,
- "prop.charAt": 1,
- "prop.substr": 1,
- "cssomPrefixes.join": 1,
- "elem.getContext": 2,
- ".getContext": 8,
- ".fillText": 1,
- "window.WebGLRenderingContext": 1,
- "window.DocumentTouch": 1,
- "DocumentTouch": 1,
- "node.offsetTop": 1,
- "window.postMessage": 1,
- "window.openDatabase": 1,
- "history.pushState": 1,
- "mStyle.backgroundColor": 3,
- "url": 23,
- "mStyle.background": 1,
- ".style.textShadow": 1,
- "mStyle.opacity": 1,
- "str3": 2,
- "str1.length": 1,
- "mStyle.backgroundImage": 1,
- "docElement.style": 1,
- "node.offsetLeft": 1,
- "node.offsetHeight": 2,
- "document.styleSheets": 1,
- "document.styleSheets.length": 1,
- "cssText": 4,
- "style.cssRules": 3,
- ".cssText": 2,
- "style.cssText": 1,
- "/src/i.test": 1,
- "cssText.indexOf": 1,
- "rule.split": 1,
- "elem.canPlayType": 10,
- "Boolean": 2,
- "bool.ogg": 2,
- "bool.h264": 1,
- "bool.webm": 1,
- "bool.mp3": 1,
- "bool.wav": 1,
- "bool.m4a": 1,
- "localStorage.setItem": 1,
- "localStorage.removeItem": 1,
- "sessionStorage.setItem": 1,
- "sessionStorage.removeItem": 1,
- "window.Worker": 1,
- "window.applicationCache": 1,
- "document.createElementNS": 6,
- "ns.svg": 4,
- ".createSVGRect": 1,
- "div.firstChild.namespaceURI": 1,
- "/SVGAnimate/.test": 1,
- "toString.call": 2,
- "/SVGClipPath/.test": 1,
- "webforms": 2,
- "len": 11,
- "props.length": 2,
- "attrs.list": 2,
- "window.HTMLDataListElement": 1,
- "inputElemType": 5,
- "defaultView": 2,
- "inputElem.setAttribute": 1,
- "inputElem.type": 1,
- "inputElem.value": 2,
- "inputElem.style.cssText": 1,
- "range": 2,
- "inputElem.style.WebkitAppearance": 1,
- "document.defaultView": 1,
- "defaultView.getComputedStyle": 2,
- ".WebkitAppearance": 1,
- "inputElem.offsetHeight": 1,
- "docElement.removeChild": 1,
- "tel": 2,
- "email": 2,
- "inputElem.checkValidity": 2,
- "feature": 12,
- "feature.toLowerCase": 2,
- "classes.push": 1,
- "Modernizr.input": 1,
- "Modernizr.addTest": 2,
- "docElement.className": 2,
- "chaining.": 1,
- "window.html5": 2,
- "reSkip": 1,
- "map": 7,
- "textarea": 8,
- "iframe": 3,
- "/i": 22,
- "saveClones": 1,
- "code": 2,
- "fieldset": 1,
- "h1": 5,
- "h2": 5,
- "h3": 3,
- "h4": 3,
- "h5": 1,
- "h6": 1,
- "img": 1,
- "label": 2,
- "li": 19,
- "link": 2,
- "ol": 1,
- "p": 110,
- "param": 3,
- "q": 34,
- "script": 7,
- "span": 1,
- "strong": 1,
- "tfoot": 1,
- "th": 1,
- "thead": 2,
- "tr": 23,
- "ul": 1,
- "supportsHtml5Styles": 5,
- "supportsUnknownElements": 3,
- "a.innerHTML": 7,
- "//if": 2,
- "implemented": 1,
- "assume": 1,
- "Styles": 1,
- "Chrome": 2,
- "additional": 1,
- "solve": 1,
- "node.hidden": 1,
- ".display": 1,
- "a.childNodes.length": 1,
- "frag.cloneNode": 1,
- "frag.createDocumentFragment": 1,
- "frag.createElement": 2,
- "addStyleSheet": 2,
- "ownerDocument": 9,
- "ownerDocument.createElement": 3,
- "ownerDocument.getElementsByTagName": 1,
- "ownerDocument.documentElement": 1,
- "p.innerHTML": 1,
- "parent.insertBefore": 1,
- "p.lastChild": 1,
- "parent.firstChild": 1,
- "getElements": 2,
- "html5.elements": 1,
- "elements.split": 1,
- "shivMethods": 2,
- "docCreateElement": 5,
- "docCreateFragment": 2,
- "ownerDocument.createDocumentFragment": 2,
- "nodeName": 20,
- "//abort": 1,
- "shiv": 1,
- "html5.shivMethods": 1,
- ".cloneNode": 4,
- "saveClones.test": 1,
- "node.canHaveChildren": 1,
- "reSkip.test": 1,
- "frag.appendChild": 1,
- "Function": 3,
- "html5": 3,
- "shivDocument": 3,
- "shived": 5,
- "ownerDocument.documentShived": 2,
- "html5.shivCSS": 1,
- "options.elements": 1,
- "options.shivCSS": 1,
- "options.shivMethods": 1,
- "Modernizr._version": 1,
- "Modernizr._prefixes": 1,
- "Modernizr._domPrefixes": 1,
- "Modernizr._cssomPrefixes": 1,
- "Modernizr.mq": 1,
- "Modernizr.hasEvent": 1,
- "Modernizr.testProp": 1,
- "Modernizr.testAllProps": 1,
- "Modernizr.testStyles": 1,
- "Modernizr.prefixed": 1,
- "docElement.className.replace": 1,
- "js": 1,
- "classes.join": 1,
- "this.document": 1,
- "PEG.parser": 1,
- "quote": 3,
- "x": 33,
- "result0": 264,
- "result1": 81,
- "result2": 77,
- "parse_singleQuotedCharacter": 3,
- "result1.push": 3,
- "input.charCodeAt": 18,
- "pos": 197,
- "reportFailures": 64,
- "matchFailed": 40,
- "pos1": 63,
- "offset": 21,
- "chars": 1,
- "chars.join": 1,
- "pos0": 51,
- "parse_simpleSingleQuotedCharacter": 2,
- "parse_simpleEscapeSequence": 3,
- "parse_zeroEscapeSequence": 3,
- "parse_hexEscapeSequence": 3,
- "parse_unicodeEscapeSequence": 3,
- "parse_eolEscapeSequence": 3,
- "pos2": 22,
- "parse_eolChar": 6,
- "input.length": 9,
- "input.charAt": 21,
- "char_": 9,
- "parse_class": 1,
- "result3": 35,
- "result4": 12,
- "result5": 4,
- "parse_classCharacterRange": 3,
- "parse_classCharacter": 5,
- "result2.push": 1,
- "parse___": 2,
- "inverted": 4,
- "partsConverted": 2,
- "part.data": 1,
- "rawText": 5,
- "part.rawText": 1,
- "ignoreCase": 1,
- "begin": 1,
- "begin.data.charCodeAt": 1,
- "end.data.charCodeAt": 1,
- "this.SyntaxError": 2,
- "begin.rawText": 2,
- "end.rawText": 2,
- "begin.data": 1,
- "end.data": 1,
- "parse_bracketDelimitedCharacter": 2,
- "quoteForRegexpClass": 1,
- "parse_simpleBracketDelimitedCharacter": 2,
- "parse_digit": 3,
- "recognize": 1,
- "input.substr": 9,
- "parse_hexDigit": 7,
- "String.fromCharCode": 4,
- "parse_eol": 4,
- "eol": 2,
- "parse_letter": 1,
- "parse_lowerCaseLetter": 2,
- "parse_upperCaseLetter": 2,
- "parse_whitespace": 3,
- "parse_comment": 3,
- "result0.push": 1,
- "parse_singleLineComment": 2,
- "parse_multiLineComment": 2,
- "u2029": 2,
- "x0B": 1,
- "uFEFF": 1,
- "u1680": 1,
- "u180E": 1,
- "u2000": 1,
- "u200A": 1,
- "u202F": 1,
- "u205F": 1,
- "u3000": 1,
- "cleanupExpected": 2,
- "expected": 12,
- "expected.sort": 1,
- "lastExpected": 3,
- "cleanExpected": 2,
- "expected.length": 4,
- "cleanExpected.push": 1,
- "computeErrorPosition": 2,
- "line": 14,
- "column": 8,
- "seenCR": 5,
- "Math.max": 10,
- "rightmostFailuresPos": 2,
- "ch": 58,
- "parseFunctions": 1,
- "startRule": 1,
- "errorPosition": 1,
- "rightmostFailuresExpected": 1,
- "errorPosition.line": 1,
- "errorPosition.column": 1,
- "toSource": 1,
- "this._source": 1,
- "result.SyntaxError": 1,
- "buildMessage": 2,
- "expectedHumanized": 5,
- "foundHumanized": 3,
- "switch": 30,
- "expected.slice": 1,
- "this.name": 7,
- "this.expected": 1,
- "this.found": 1,
- "this.message": 3,
- "this.offset": 2,
- "this.line": 3,
- "this.column": 1,
- "result.SyntaxError.prototype": 1,
- "Error.prototype": 1,
- "steelseries": 10,
- "n.charAt": 1,
- "n.substring": 1,
- "i.substring": 3,
- "this.color": 1,
- "ui": 31,
- "/255": 1,
- "y": 101,
- "t.getRed": 4,
- "v": 135,
- "t.getGreen": 4,
- "t.getBlue": 4,
- "t.getAlpha": 4,
- "i.getRed": 1,
- "i.getGreen": 1,
- "i.getBlue": 1,
- "o": 322,
- "i.getAlpha": 1,
- "*f": 2,
- "w/r": 1,
- "p/r": 1,
- "c": 775,
- "s/r": 1,
- "h": 499,
- "o/r": 1,
- "e*u": 1,
- ".toFixed": 3,
- "l*u": 1,
- "c*u": 1,
- "h*u": 1,
- "vr": 20,
- "stop": 7,
- "color": 4,
- "Math.floor": 26,
- "Math.log10": 1,
- "n/Math.pow": 1,
- "": 1,
- "e=": 21,
- "o=": 13,
- "beginPath": 12,
- "moveTo": 10,
- "lineTo": 22,
- "quadraticCurveTo": 4,
- "closePath": 8,
- "stroke": 7,
- "i=": 31,
- "createElement": 3,
- "canvas": 22,
- "width=": 17,
- "height=": 17,
- "ii": 29,
- "u=": 12,
- "getContext": 26,
- "2d": 26,
- "ft": 70,
- "1": 97,
- "fillStyle=": 13,
- "rect": 3,
- "0": 220,
- "fill": 10,
- "t=": 19,
- "getImageData": 1,
- "2": 66,
- "3": 13,
- "wt": 26,
- "r=": 18,
- "32": 1,
- "62": 1,
- "f=": 13,
- "84": 1,
- "s=": 12,
- "94": 1,
- "ar": 20,
- "255": 3,
- "max": 1,
- "min": 2,
- ".5": 7,
- "u/": 3,
- "/u": 3,
- "f/": 1,
- "vt": 50,
- "n*6": 2,
- "i*": 3,
- "h*t": 1,
- "*t": 3,
- "%": 26,
- "f*255": 1,
- "u*255": 1,
- "r*255": 1,
- "st": 59,
- "n/255": 1,
- "t/255": 1,
- "i/255": 1,
- "Math.min": 5,
- "f/r": 1,
- "/f": 3,
- "k": 302,
- "<0?0:n>": 1,
- "si": 23,
- "ti": 39,
- "Math.round": 7,
- "/r": 1,
- "u*r": 1,
- "ni": 30,
- "tt": 53,
- "ei": 26,
- "ot": 43,
- "i.gaugeType": 6,
- "steelseries.GaugeType.TYPE4": 2,
- "i.size": 6,
- "i.minValue": 10,
- "i.maxValue": 10,
- "bf": 6,
- "i.niceScale": 10,
- "i.threshold": 10,
- "/2": 25,
- "i.section": 8,
- "i.area": 4,
- "lu": 10,
- "i.titleString": 10,
- "au": 10,
- "i.unitString": 10,
- "hu": 11,
- "i.frameDesign": 10,
- "steelseries.FrameDesign.METAL": 7,
- "wu": 9,
- "i.frameVisible": 10,
- "bt": 42,
- "i.backgroundColor": 10,
- "steelseries.BackgroundColor.DARK_GRAY": 7,
- "bu": 11,
- "i.backgroundVisible": 10,
- "pt": 48,
- "i.pointerType": 4,
- "steelseries.PointerType.TYPE1": 3,
- "i.pointerColor": 4,
- "steelseries.ColorDef.RED": 7,
- "ee": 2,
- "i.knobType": 4,
- "steelseries.KnobType.STANDARD_KNOB": 14,
- "fi": 26,
- "i.knobStyle": 4,
- "steelseries.KnobStyle.SILVER": 4,
- "i.lcdColor": 8,
- "steelseries.LcdColor.STANDARD": 9,
- "i.lcdVisible": 8,
- "eu": 13,
- "i.lcdDecimals": 8,
- "ye": 2,
- "i.digitalFont": 8,
- "pe": 2,
- "i.fractionalScaleDecimals": 4,
- "br": 19,
- "i.ledColor": 10,
- "steelseries.LedColor.RED_LED": 7,
- "ru": 14,
- "i.ledVisible": 10,
- "vf": 5,
- "i.thresholdVisible": 8,
- "kr": 17,
- "i.minMeasuredValueVisible": 8,
- "dr": 16,
- "i.maxMeasuredValueVisible": 8,
- "cf": 7,
- "i.foregroundType": 6,
- "steelseries.ForegroundType.TYPE1": 5,
- "af": 5,
- "i.foregroundVisible": 10,
- "oe": 2,
- "i.labelNumberFormat": 10,
- "steelseries.LabelNumberFormat.STANDARD": 5,
- "yr": 17,
- "i.playAlarm": 10,
- "uf": 5,
- "i.alarmSound": 10,
- "fe": 2,
- "i.customLayer": 4,
- "le": 1,
- "i.tickLabelOrientation": 4,
- "steelseries.GaugeType.TYPE1": 4,
- "steelseries.TickLabelOrientation.TANGENT": 2,
- "steelseries.TickLabelOrientation.NORMAL": 2,
- "wr": 18,
- "i.trendVisible": 4,
- "hr": 17,
- "i.trendColors": 4,
- "steelseries.LedColor.GREEN_LED": 2,
- "steelseries.LedColor.CYAN_LED": 2,
- "sr": 21,
- "i.useOdometer": 2,
- "i.odometerParams": 2,
- "wf": 4,
- "i.odometerUseValue": 2,
- "ki": 21,
- "r.createElement": 11,
- "ki.setAttribute": 2,
- "yf": 3,
- "ri": 24,
- "ht": 34,
- "ef": 5,
- "steelseries.TrendState.OFF": 4,
- "lr": 19,
- "f*.06": 1,
- "cr": 20,
- "f*.29": 19,
- "er": 19,
- "f*.36": 4,
- "ci": 29,
- "et": 45,
- "gi": 26,
- "rr": 21,
- "*lt": 9,
- "r.getElementById": 7,
- "u.save": 7,
- "u.clearRect": 5,
- "u.canvas.width": 7,
- "u.canvas.height": 7,
- "g": 441,
- "s/2": 2,
- "k/2": 1,
- "pf": 4,
- ".6*s": 1,
- "ne": 2,
- ".4*k": 1,
- "pr": 16,
- "s/10": 1,
- "ce": 6,
- "ae": 2,
- "hf": 4,
- "k*.13": 2,
- "bi": 27,
- "s*.4": 1,
- "sf": 5,
- "rf": 5,
- "k*.57": 1,
- "tf": 5,
- "ve": 3,
- "k*.61": 1,
- "Math.PI/2": 40,
- "ue": 1,
- "Math.PI/180": 5,
- "ff": 5,
- "ir": 23,
- "nr": 22,
- "ai": 21,
- "yt": 32,
- "fr": 21,
- "oi": 23,
- "lf": 5,
- "re": 2,
- "ai/": 2,
- "h/vt": 1,
- "*vt": 4,
- "Math.ceil": 63,
- "b/vt": 1,
- "vt/": 3,
- "ot.type": 10,
- "Math.PI": 13,
- "at/yt": 4,
- "*Math.PI": 10,
- "*ue": 1,
- "ci/2": 1,
- "wi": 24,
- "nf": 7,
- "wi.getContext": 2,
- "di": 22,
- "ut": 59,
- "di.getContext": 2,
- "fu": 13,
- "hi": 15,
- "f*.093457": 10,
- "uu": 13,
- "hi.getContext": 6,
- "gt": 32,
- "nu": 11,
- "gt.getContext": 3,
- "iu": 14,
- "f*.028037": 6,
- "se": 1,
- "iu.getContext": 1,
- "gr": 12,
- "he": 1,
- "gr.getContext": 1,
- "vi": 16,
- "tu": 13,
- "vi.getContext": 2,
- "yi": 17,
- "ou": 13,
- "yi.getContext": 2,
- "pi": 24,
- "kt": 24,
- "pi.getContext": 2,
- "pu": 9,
- "li.getContext": 6,
- "gu": 9,
- "du": 10,
- "ku": 9,
- "yu": 10,
- "cu": 18,
- "su": 12,
- "tr.getContext": 1,
- "kf": 3,
- "u.textAlign": 2,
- "u.strokeStyle": 2,
- "ei.textColor": 2,
- "u.fillStyle": 2,
- "steelseries.LcdColor.STANDARD_GREEN": 4,
- "u.shadowColor": 2,
- "u.shadowOffsetX": 2,
- "s*.007": 3,
- "u.shadowOffsetY": 2,
- "u.shadowBlur": 2,
- "u.font": 2,
- "u.fillText": 2,
- "n.toFixed": 2,
- "bi*.05": 1,
- "hf*.5": 1,
- "pr*.38": 1,
- "bi*.9": 1,
- "u.restore": 6,
- "te": 2,
- "n.save": 35,
- "n.drawImage": 14,
- "k*.037383": 11,
- "s*.523364": 2,
- "k*.130841": 1,
- "s*.130841": 1,
- "k*.514018": 2,
- "s*.831775": 1,
- "k*.831775": 1,
- "s*.336448": 1,
- "k*.803738": 2,
- "s*.626168": 1,
- "n.restore": 35,
- "ie": 2,
- "t.width": 2,
- "f*.046728": 1,
- "t.height": 2,
- "t.width*.9": 4,
- "t.getContext": 2,
- "n.createLinearGradient": 17,
- ".1": 18,
- "t.height*.9": 6,
- "i.addColorStop": 27,
- ".3": 8,
- ".59": 4,
- "n.fillStyle": 36,
- "n.beginPath": 39,
- "n.moveTo": 37,
- "t.width*.5": 4,
- "n.lineTo": 33,
- "t.width*.1": 2,
- "n.closePath": 34,
- "n.fill": 17,
- "n.strokeStyle": 27,
- "n.stroke": 31,
- "vu": 10,
- "": 1,
- "": 1,
- "n.lineWidth": 30,
- "s*.035": 2,
- "at/yt*t": 1,
- "at/yt*h": 1,
- "yt/at": 1,
- "n.translate": 93,
- "n.rotate": 53,
- "n.arc": 6,
- "s*.365": 2,
- "n.lineWidth/2": 2,
- "df": 3,
- "bt.labelColor.setAlpha": 1,
- "n.textAlign": 12,
- "n.textBaseline": 10,
- "s*.04": 1,
- "n.font": 34,
- "bt.labelColor.getRgbaColor": 2,
- "lt*fr": 1,
- "s*.38": 2,
- "s*.35": 1,
- "s*.355": 1,
- "s*.36": 1,
- "s*.3": 1,
- "s*.1": 1,
- "oi/2": 2,
- "parseFloat": 30,
- "b.toFixed": 1,
- "c.toFixed": 2,
- "le.type": 1,
- "t.format": 7,
- "n.fillText": 54,
- "e.toFixed": 2,
- "e.toPrecision": 1,
- "n.frame": 22,
- "n.background": 22,
- "n.led": 20,
- "n.pointer": 10,
- "n.foreground": 22,
- "n.trend": 4,
- "n.odo": 2,
- "rt": 45,
- "uu.drawImage": 1,
- "nu.drawImage": 3,
- "se.drawImage": 1,
- "steelseries.ColorDef.BLUE.dark.getRgbaColor": 6,
- "he.drawImage": 1,
- "steelseries.ColorDef.RED.medium.getRgbaColor": 6,
- "ii.length": 2,
- ".start": 12,
- ".stop": 11,
- ".color": 13,
- "ui.length": 2,
- "ct": 34,
- "ut.save": 1,
- "ut.translate": 3,
- "ut.rotate": 1,
- "ut.drawImage": 2,
- "s*.475": 1,
- "ut.restore": 1,
- "steelseries.Odometer": 1,
- "_context": 1,
- "f*.075": 1,
- "decimals": 1,
- "wt.decimals": 1,
- "wt.digits": 2,
- "valueForeColor": 1,
- "wt.valueForeColor": 1,
- "valueBackColor": 1,
- "wt.valueBackColor": 1,
- "decimalForeColor": 1,
- "wt.decimalForeColor": 1,
- "decimalBackColor": 1,
- "wt.decimalBackColor": 1,
- "font": 1,
- "wt.font": 1,
- "tr.width": 1,
- "nt": 75,
- "bt.labelColor": 2,
- "pt.type": 6,
- "steelseries.TrendState.UP": 2,
- "steelseries.TrendState.STEADY": 2,
- "steelseries.TrendState.DOWN": 2,
- "dt": 30,
- "wi.width": 1,
- "wi.height": 1,
- "di.width": 1,
- "di.height": 1,
- "hi.width": 3,
- "hi.height": 3,
- "gt.width": 2,
- "gt.height": 1,
- "vi.width": 1,
- "vi.height": 1,
- "yi.width": 1,
- "yi.height": 1,
- "pi.width": 1,
- "pi.height": 1,
- "li.width": 3,
- "li.height": 3,
- "gf": 2,
- "yf.repaint": 1,
- "ur": 20,
- "e3": 5,
- "clearInterval": 6,
- "this.setValue": 7,
- "": 5,
- "ki.pause": 1,
- "ki.play": 1,
- "this.repaint": 126,
- "this.getValue": 7,
- "this.setOdoValue": 1,
- "this.getOdoValue": 1,
- "this.setValueAnimated": 7,
- "t.playing": 1,
- "t.stop": 1,
- "Tween": 11,
- "Tween.regularEaseInOut": 6,
- "t.onMotionChanged": 1,
- "n.target._pos": 7,
- "": 1,
- "i.repaint": 1,
- "t.start": 1,
- "this.resetMinMeasuredValue": 4,
- "this.resetMaxMeasuredValue": 4,
- "this.setMinMeasuredValueVisible": 4,
- "this.setMaxMeasuredValueVisible": 4,
- "this.setMaxMeasuredValue": 3,
- "this.setMinMeasuredValue": 3,
- "this.setTitleString": 4,
- "this.setUnitString": 4,
- "this.setMinValue": 4,
- "this.getMinValue": 3,
- "this.setMaxValue": 3,
- "this.getMaxValue": 4,
- "this.setThreshold": 4,
- "this.setArea": 1,
- "foreground": 30,
- "this.setSection": 4,
- "this.setThresholdVisible": 4,
- "this.setLcdDecimals": 3,
- "this.setFrameDesign": 7,
- "this.setBackgroundColor": 7,
- "pointer": 28,
- "this.setForegroundType": 5,
- "this.setPointerType": 3,
- "this.setPointerColor": 4,
- "this.setLedColor": 5,
- "led": 18,
- "this.setLcdColor": 5,
- "this.setTrend": 2,
- "this.setTrendVisible": 2,
- "trend": 2,
- "odo": 1,
- "u.drawImage": 22,
- "cu.setValue": 1,
- "of.state": 1,
- "u.translate": 8,
- "u.rotate": 4,
- "u.canvas.width*.4865": 2,
- "u.canvas.height*.105": 2,
- "s*.006": 1,
- "kt.clearRect": 1,
- "kt.save": 1,
- "kt.translate": 2,
- "kt.rotate": 1,
- "kt.drawImage": 1,
- "kt.restore": 1,
- "i.useSectionColors": 4,
- "i.valueColor": 6,
- "i.valueGradient": 4,
- "i.useValueGradient": 4,
- "yi.setAttribute": 2,
- "e/2": 2,
- "ut/2": 4,
- "e/10": 3,
- "ut*.13": 1,
- "e*.4": 1,
- "or/2": 1,
- "e*.116822": 3,
- "e*.485981": 3,
- "s*.093457": 5,
- "e*.53": 1,
- "ut*.61": 1,
- "s*.06": 1,
- "s*.57": 1,
- "dt.type": 4,
- "l/Math.PI*180": 4,
- "l/et": 8,
- "Math.PI/3": 1,
- "ft/2": 2,
- "Math.PI/": 1,
- "ai.getContext": 2,
- "s*.060747": 2,
- "s*.023364": 2,
- "ri.getContext": 6,
- "yt.getContext": 5,
- "si.getContext": 4,
- "ci/": 2,
- "f/ht": 1,
- "*ht": 8,
- "h/ht": 1,
- "ht/": 2,
- "*kt": 5,
- "angle": 1,
- "*st": 1,
- "n.value": 4,
- "tu.drawImage": 1,
- "gr.drawImage": 3,
- "at.getImageData": 1,
- "at.drawImage": 1,
- "bt.length": 4,
- "ii.push": 1,
- "Math.abs": 19,
- "ai.width": 1,
- "ai.height": 1,
- "ri.width": 3,
- "ri.height": 3,
- "yt.width": 2,
- "yt.height": 2,
- "si.width": 2,
- "si.height": 2,
- "s*.085": 1,
- "e*.35514": 2,
- ".107476*ut": 1,
- ".897195*ut": 1,
- "t.addColorStop": 6,
- ".22": 1,
- ".76": 1,
- "s*.075": 1,
- ".112149*ut": 1,
- ".892523*ut": 1,
- "r.addColorStop": 6,
- "e*.060747": 2,
- "e*.023364": 2,
- "n.createRadialGradient": 4,
- ".030373*e": 1,
- "u.addColorStop": 14,
- "i*kt": 1,
- "n.rect": 4,
- "n.canvas.width": 3,
- "n.canvas.height": 3,
- "n.canvas.width/2": 6,
- "n.canvas.height/2": 4,
- "u.createRadialGradient": 1,
- "t.light.getRgbaColor": 2,
- "t.dark.getRgbaColor": 2,
- "ni.textColor": 2,
- "e*.007": 5,
- "oi*.05": 1,
- "or*.5": 1,
- "cr*.38": 1,
- "oi*.9": 1,
- "ei.labelColor.setAlpha": 1,
- "e*.04": 1,
- "ei.labelColor.getRgbaColor": 2,
- "st*di": 1,
- "e*.28": 1,
- "e*.1": 1,
- "e*.0375": 1,
- "h.toFixed": 3,
- "df.type": 1,
- "u.toFixed": 2,
- "u.toPrecision": 1,
- "kf.repaint": 1,
- "": 3,
- "yi.pause": 1,
- "yi.play": 1,
- "ti.playing": 1,
- "ti.stop": 1,
- "ti.onMotionChanged": 1,
- "t.repaint": 4,
- "ti.start": 1,
- "this.setValueColor": 3,
- "this.setSectionActive": 2,
- "this.setGradient": 2,
- "this.setGradientActive": 2,
- "useGradient": 2,
- "n/lt*": 1,
- "vi.getEnd": 1,
- "vi.getStart": 1,
- "s/c": 1,
- "vi.getColorAt": 1,
- ".getRgbaColor": 3,
- "": 1,
- "e.medium.getHexColor": 1,
- "i.medium.getHexColor": 1,
- "n*kt": 1,
- "pu.state": 1,
- "i.orientation": 2,
- "steelseries.Orientation.NORTH": 2,
- "hi.setAttribute": 2,
- "steelseries.GaugeType.TYPE5": 1,
- "kt/at": 2,
- "f.clearRect": 2,
- "f.canvas.width": 3,
- "f.canvas.height": 3,
- "h/2": 1,
- "k*.733644": 1,
- ".455*h": 1,
- ".51*k": 1,
- "bi/": 2,
- "l/ot": 1,
- "*ot": 2,
- "d/ot": 1,
- "ot/": 1,
- "ui.getContext": 4,
- "u*.093457": 10,
- "ii.getContext": 5,
- "st.getContext": 2,
- "u*.028037": 6,
- "hr.getContext": 1,
- "er.getContext": 1,
- "fi.getContext": 4,
- "kr.type": 1,
- "ft.type": 1,
- "h*.44": 3,
- "k*.8": 1,
- "k*.16": 1,
- "h*.2": 2,
- "k*.446666": 2,
- "h*.8": 1,
- "u*.046728": 1,
- "h*.035": 1,
- "kt/at*t": 1,
- "kt/at*l": 1,
- "at/kt": 1,
- "h*.365": 2,
- "it.labelColor.getRgbaColor": 4,
- "vertical": 1,
- ".046728*h": 1,
- "n.measureText": 2,
- ".width": 2,
- "k*.4": 1,
- "h*.3": 1,
- "k*.47": 1,
- "it.labelColor.setAlpha": 1,
- "steelseries.Orientation.WEST": 6,
- "h*.04": 1,
- "ht*yi": 1,
- "h*.41": 1,
- "h*.415": 1,
- "h*.42": 1,
- "h*.48": 1,
- "h*.0375": 1,
- "d.toFixed": 1,
- "f.toFixed": 1,
- "i.toFixed": 2,
- "i.toPrecision": 1,
- "u/2": 5,
- "cr.drawImage": 3,
- "ar.drawImage": 1,
- "or.drawImage": 1,
- "or.restore": 1,
- "rr.drawImage": 1,
- "rr.restore": 1,
- "gt.length": 2,
- "p.save": 2,
- "p.translate": 8,
- "p.rotate": 4,
- "p.restore": 3,
- "ni.length": 2,
- "p.drawImage": 1,
- "h*.475": 1,
- "k*.32": 1,
- "h*1.17": 2,
- "it.labelColor": 2,
- "ut.type": 6,
- "ui.width": 2,
- "ui.height": 2,
- "ii.width": 2,
- "ii.height": 2,
- "st.width": 1,
- "st.height": 1,
- "fi.width": 2,
- "fi.height": 2,
- "wu.repaint": 1,
- "": 2,
- "hi.pause": 1,
- "hi.play": 1,
- "dt.playing": 2,
- "dt.stop": 2,
- "dt.onMotionChanged": 2,
- "": 1,
- "dt.start": 2,
- "f.save": 5,
- "f.drawImage": 9,
- "f.translate": 10,
- "f.rotate": 5,
- "f.canvas.width*.4865": 2,
- "f.canvas.height*.27": 2,
- "f.restore": 5,
- "h*.006": 1,
- "h*1.17/2": 1,
- "et.clearRect": 1,
- "et.save": 1,
- "et.translate": 2,
- "et.rotate": 1,
- "et.drawImage": 1,
- "et.restore": 1,
- "i.width": 6,
- "i.height": 6,
- "fi.setAttribute": 2,
- "l.type": 26,
- "y.clearRect": 2,
- "y.canvas.width": 3,
- "y.canvas.height": 3,
- "*.05": 4,
- "f/2": 13,
- "it/2": 2,
- ".053": 1,
- ".038": 1,
- "*u": 1,
- "u/22": 2,
- ".89*f": 2,
- "u/10": 2,
- "ei/": 1,
- "e/ut": 1,
- "*ut": 2,
- "s/ut": 1,
- "ut/": 1,
- "kt.getContext": 2,
- "rt.getContext": 2,
- "dt.getContext": 1,
- "ni.getContext": 4,
- "lt.textColor": 2,
- "n.shadowColor": 2,
- "n.shadowOffsetX": 4,
- "u*.003": 2,
- "n.shadowOffsetY": 4,
- "n.shadowBlur": 4,
- "u*.004": 1,
- "u*.007": 2,
- "u*.009": 1,
- "f*.571428": 8,
- "u*.88": 2,
- "u*.055": 2,
- "f*.7": 2,
- "f*.695": 4,
- "f*.18": 4,
- "u*.22": 3,
- "u*.15": 2,
- "t.toFixed": 2,
- "i.getContext": 2,
- "t.save": 2,
- "t.createLinearGradient": 2,
- "i.height*.9": 6,
- "t.fillStyle": 2,
- "t.beginPath": 4,
- "t.moveTo": 4,
- "i.height*.5": 2,
- "t.lineTo": 8,
- "i.width*.9": 6,
- "t.closePath": 4,
- "i.width*.5": 2,
- "t.fill": 2,
- "t.strokeStyle": 2,
- "t.stroke": 2,
- "t.restore": 2,
- "w.labelColor.setAlpha": 1,
- "f*.1": 5,
- "w.labelColor.getRgbaColor": 2,
- ".34*f": 2,
- ".36*f": 6,
- ".33*f": 2,
- ".32*f": 2,
- "u*.12864": 3,
- "u*.856796": 1,
- "u*.7475": 1,
- "c/": 2,
- ".65*u": 1,
- ".63*u": 3,
- ".66*u": 1,
- ".67*u": 1,
- "f*.142857": 4,
- "f*.871012": 2,
- "f*.19857": 1,
- "f*.82": 1,
- "v/": 1,
- "tickCounter": 4,
- "currentPos": 20,
- "tickCounter*a": 2,
- "r.toFixed": 8,
- "f*.28": 6,
- "r.toPrecision": 4,
- "u*.73": 3,
- "ui/2": 1,
- "vi.drawImage": 2,
- "yi.drawImage": 2,
- "hr.drawImage": 2,
- "k.save": 1,
- ".856796": 2,
- ".7475": 2,
- ".12864": 2,
- "u*i": 1,
- "u*r*": 1,
- "bt/": 1,
- "k.translate": 2,
- "f*.365": 2,
- "nt/2": 2,
- ".871012": 3,
- ".82": 2,
- ".142857": 5,
- ".19857": 6,
- "f*r*bt/": 1,
- "f*": 5,
- "u*.58": 1,
- "k.drawImage": 3,
- "k.restore": 1,
- "kt.width": 1,
- "b*.093457": 2,
- "kt.height": 1,
- "d*.093457": 2,
- "rt.width": 1,
- "rt.height": 1,
- "ni.width": 2,
- "ni.height": 2,
- "hu.repaint": 1,
- "w.labelColor": 1,
- "i*.12864": 2,
- "i*.856796": 2,
- "i*.7475": 1,
- "t*.871012": 1,
- "t*.142857": 8,
- "t*.82": 1,
- "t*.19857": 1,
- "steelseries.BackgroundColor.CARBON": 2,
- "steelseries.BackgroundColor.PUNCHED_SHEET": 2,
- "steelseries.BackgroundColor.STAINLESS": 2,
- "steelseries.BackgroundColor.BRUSHED_STAINLESS": 2,
- "steelseries.BackgroundColor.TURNED": 2,
- "r.setAlpha": 8,
- ".05": 2,
- "p.addColorStop": 4,
- "r.getRgbaColor": 8,
- ".15": 2,
- ".48": 7,
- ".49": 4,
- "n.fillRect": 16,
- "t*.435714": 4,
- "i*.435714": 4,
- "i*.142857": 1,
- "b.addColorStop": 4,
- ".69": 1,
- ".7": 1,
- ".4": 2,
- "t*.007142": 4,
- "t*.571428": 2,
- "i*.007142": 4,
- "i*.571428": 2,
- "t*.45": 4,
- "t*.114285": 1,
- "t/2": 1,
- "i*.0486/2": 1,
- "i*.053": 1,
- "i*.45": 4,
- "i*.114285": 1,
- "i/2": 1,
- "t*.025": 1,
- "t*.053": 1,
- "ut.addColorStop": 2,
- "wt.medium.getRgbaColor": 3,
- "wt.light.getRgbaColor": 2,
- "i*.05": 2,
- "t*.05": 2,
- "ot.addColorStop": 2,
- ".98": 1,
- "Math.PI*.5": 2,
- "f*.05": 2,
- ".049*t": 8,
- ".825*t": 9,
- "n.bezierCurveTo": 42,
- ".7975*t": 2,
- ".0264*t": 4,
- ".775*t": 3,
- ".0013*t": 12,
- ".85*t": 2,
- ".8725*t": 3,
- ".0365*t": 9,
- ".8075*t": 4,
- ".7925*t": 3,
- ".0214*t": 13,
- ".7875*t": 4,
- ".7825*t": 5,
- ".0189*t": 4,
- ".785*t": 1,
- ".8175*t": 2,
- ".815*t": 1,
- ".8125*t": 2,
- ".8*t": 2,
- ".0377*t": 2,
- ".86*t": 4,
- ".0415*t": 2,
- ".845*t": 1,
- ".0465*t": 2,
- ".805*t": 2,
- ".0113*t": 10,
- ".0163*t": 7,
- ".8025*t": 1,
- ".8225*t": 3,
- ".8425*t": 1,
- ".03*t": 2,
- ".115*t": 5,
- ".1075*t": 2,
- ".1025*t": 8,
- ".0038*t": 2,
- ".76*t": 4,
- ".7675*t": 2,
- ".7725*t": 6,
- ".34": 1,
- ".0516*t": 7,
- ".8525*t": 2,
- ".0289*t": 8,
- ".875*t": 3,
- ".044*t": 1,
- ".0314*t": 5,
- ".12*t": 4,
- ".0875*t": 3,
- ".79*t": 1,
- "": 5,
- "fi.pause": 1,
- "fi.play": 1,
- "yt.playing": 1,
- "yt.stop": 1,
- "yt.onMotionChanged": 1,
- "t.setValue": 1,
- "yt.start": 1,
- "mminMeasuredValue": 1,
- "": 1,
- "setMaxValue=": 1,
- "y.drawImage": 6,
- "u*n": 2,
- "u*i*": 2,
- "at/": 1,
- "f*.34": 3,
- "gt.height/2": 2,
- "f*i*at/": 1,
- "u*.65": 2,
- "ft/": 1,
- "dt.width": 1,
- "dt.height/2": 2,
- ".8": 1,
- ".14857": 1,
- "f*i*ft/": 1,
- "y.save": 1,
- "y.restore": 1,
- "oi.setAttribute": 2,
- "v.clearRect": 2,
- "v.canvas.width": 4,
- "v.canvas.height": 4,
- ".053*e": 1,
- "e/22": 2,
- "e/1.95": 1,
- "u/vt": 1,
- "s/vt": 1,
- "g.width": 4,
- "f*.121428": 2,
- "g.height": 4,
- "e*.012135": 2,
- "f*.012135": 2,
- "e*.121428": 2,
- "g.getContext": 2,
- "d.width": 4,
- "d.height": 4,
- "d.getContext": 2,
- "pt.getContext": 2,
- "ci.getContext": 1,
- "kt.textColor": 2,
- "f*.007": 2,
- "f*.009": 1,
- "e*.009": 1,
- "e*.88": 2,
- "e*.055": 2,
- "e*.22": 3,
- "e*.15": 2,
- "k.labelColor.setAlpha": 1,
- "k.labelColor.getRgbaColor": 5,
- "e*.12864": 3,
- "e*.856796": 3,
- ".65*e": 1,
- ".63*e": 3,
- ".66*e": 1,
- ".67*e": 1,
- "g/": 1,
- "tickCounter*h": 2,
- "e*.73": 3,
- "ti/2": 1,
- "n.bargraphled": 4,
- "nr.drawImage": 2,
- "tr.drawImage": 2,
- "nt.save": 1,
- "e*.728155*": 1,
- "st/": 1,
- "nt.translate": 2,
- "rt/2": 2,
- "f*.856796": 2,
- "f*.12864": 2,
- "*st/": 1,
- "e*.58": 1,
- "nt.drawImage": 3,
- "nt.restore": 1,
- "f*.012135/2": 1,
- "ft.push": 1,
- "*c": 2,
- "y*.121428": 2,
- "w*.012135": 2,
- "y*.012135": 2,
- "w*.121428": 2,
- "y*.093457": 2,
- "w*.093457": 2,
- "pt.width": 1,
- "pt.height": 1,
- "ku.repaint": 1,
- "k.labelColor": 1,
- "r*": 2,
- "r*1.014": 5,
- "t*.856796": 1,
- "t*.12864": 1,
- "t*.13": 3,
- "r*1.035": 4,
- "f.setAlpha": 8,
- ".047058": 2,
- "rt.addColorStop": 4,
- "f.getRgbaColor": 8,
- ".145098": 1,
- ".149019": 1,
- "t*.15": 1,
- "i*.152857": 1,
- ".298039": 1,
- "it.addColorStop": 4,
- ".686274": 1,
- ".698039": 1,
- "i*.851941": 1,
- "t*.121428": 1,
- "i*.012135": 1,
- "t*.012135": 1,
- "i*.121428": 1,
- "*r": 4,
- "o/r*": 1,
- "yt.getEnd": 2,
- "yt.getStart": 2,
- "lt/ct": 2,
- "yt.getColorAt": 2,
- "": 1,
- "st.medium.getHexColor": 2,
- "a.medium.getHexColor": 2,
- "b/2": 2,
- "e/r*": 1,
- "": 1,
- "v.createRadialGradient": 2,
- "": 5,
- "oi.pause": 1,
- "oi.play": 1,
- "": 1,
- "bargraphled": 3,
- "v.drawImage": 2,
- "": 1,
- "n=": 10,
- "856796": 4,
- "728155": 2,
- "34": 2,
- "12864": 2,
- "142857": 2,
- "65": 2,
- "drawImage": 12,
- "save": 27,
- "restore": 14,
- "repaint": 23,
- "dr=": 1,
- "b=": 25,
- "128": 2,
- "y=": 5,
- "48": 1,
- "w=": 4,
- "lcdColor": 4,
- "LcdColor": 4,
- "STANDARD": 3,
- "pt=": 5,
- "lcdDecimals": 4,
- "lt=": 4,
- "unitString": 4,
- "at=": 3,
- "unitStringVisible": 4,
- "ht=": 6,
- "digitalFont": 4,
- "bt=": 3,
- "valuesNumeric": 4,
- "a=": 23,
- "ct=": 5,
- "autoScroll": 2,
- "section": 2,
- "c=": 24,
- "wt=": 3,
- "getElementById": 4,
- "clearRect": 8,
- "h=": 19,
- "l=": 10,
- "v=": 5,
- "floor": 13,
- "5": 23,
- "ot=": 4,
- "sans": 12,
- "serif": 13,
- "it=": 7,
- "nt=": 5,
- "et=": 6,
- "kt=": 4,
- "textAlign=": 7,
- "strokeStyle=": 8,
- "4": 4,
- "clip": 1,
- "font=": 28,
- "measureText": 4,
- "toFixed": 3,
- "fillText": 23,
- "38": 5,
- "o*.2": 1,
- "clearTimeout": 2,
- "<=o-4&&(e=0,c=!1),u.fillText(n,o-2-e,h*.5+v*.38)),u.restore()},dt=function(n,i,r,u){var>": 1,
- "d=": 15,
- "rt=": 3,
- "095": 1,
- "createLinearGradient": 6,
- "addColorStop": 25,
- "4c4c4c": 1,
- "08": 1,
- "666666": 2,
- "92": 1,
- "e6e6e6": 1,
- "g=": 15,
- "gradientStartColor": 1,
- "tt=": 3,
- "gradientFraction1Color": 1,
- "gradientFraction2Color": 1,
- "gradientFraction3Color": 1,
- "gradientStopColor": 1,
- "yt=": 4,
- "31": 26,
- "k=": 11,
- "p=": 5,
- "ut=": 6,
- "rgb": 6,
- "03": 1,
- "49": 1,
- "57": 1,
- "83": 1,
- "wt.repaint": 1,
- "f.length": 5,
- "resetBuffers": 1,
- "this.setScrolling": 1,
- "w.textColor": 1,
- "": 1,
- "<=f[n].stop){t=et[n],i=ut[n];break}u.drawImage(t,0,0),kt(a,i)},this.repaint(),this},wr=function(n,t){t=t||{};var>": 1,
- "64": 1,
- "875": 2,
- "textBaseline=": 4,
- "textColor": 2,
- "STANDARD_GREEN": 1,
- "shadowColor=": 1,
- "shadowOffsetX=": 1,
- "05": 2,
- "shadowOffsetY=": 1,
- "shadowBlur=": 1,
- "06": 1,
- "46": 1,
- "8": 2,
- "setValue=": 2,
- "setLcdColor=": 2,
- "repaint=": 2,
- "br=": 1,
- "size": 6,
- "200": 2,
- "st=": 3,
- "decimalsVisible": 2,
- "gt=": 1,
- "textOrientationFixed": 2,
- "frameDesign": 4,
- "FrameDesign": 2,
- "METAL": 2,
- "frameVisible": 4,
- "backgroundColor": 2,
- "BackgroundColor": 1,
- "DARK_GRAY": 1,
- "vt=": 2,
- "backgroundVisible": 2,
- "pointerColor": 4,
- "ColorDef": 2,
- "RED": 1,
- "foregroundType": 4,
- "ForegroundType": 2,
- "TYPE1": 2,
- "foregroundVisible": 4,
- "PI": 54,
- "180": 26,
- "ni=": 1,
- "labelColor": 6,
- "getRgbaColor": 21,
- "translate": 38,
- "360": 15,
- "p.labelColor.getRgbaColor": 4,
- "f*.38": 7,
- "f*.37": 3,
- "": 1,
- "rotate": 31,
- "Math": 51,
- "u00b0": 8,
- "41": 3,
- "45": 5,
- "25": 9,
- "085": 4,
- "100": 4,
- "90": 3,
- "21": 2,
- "u221e": 2,
- "135": 1,
- "225": 1,
- "75": 3,
- "270": 1,
- "315": 1,
- "ti=": 2,
- "200934": 2,
- "434579": 4,
- "163551": 5,
- "560747": 4,
- "lineWidth=": 6,
- "lineCap=": 5,
- "lineJoin=": 5,
- "471962": 4,
- "205607": 1,
- "523364": 5,
- "799065": 2,
- "836448": 5,
- "794392": 1,
- "ii=": 2,
- "350467": 5,
- "130841": 1,
- "476635": 2,
- "bezierCurveTo": 6,
- "490654": 3,
- "345794": 3,
- "509345": 1,
- "154205": 1,
- "350466": 1,
- "dark": 2,
- "light": 5,
- "setAlpha": 8,
- "70588": 4,
- "59": 3,
- "dt=": 2,
- "285046": 5,
- "514018": 6,
- "21028": 1,
- "481308": 4,
- "280373": 3,
- "495327": 2,
- "504672": 2,
- "224299": 1,
- "289719": 1,
- "714953": 5,
- "789719": 1,
- "719626": 3,
- "7757": 1,
- "71028": 1,
- "ft=": 3,
- "*10": 2,
- "": 2,
- "": 2,
- "": 2,
- "": 2,
- "<-90&&e>": 2,
- "<-180&&e>": 2,
- "<-270&&e>": 2,
- "d.playing": 2,
- "d.stop": 2,
- "d.onMotionChanged": 2,
- "d.start": 2,
- "s.save": 4,
- "s.clearRect": 3,
- "s.canvas.width": 4,
- "s.canvas.height": 4,
- "s.drawImage": 8,
- "e*kt": 1,
- "s.translate": 6,
- "s.rotate": 3,
- "s.fillStyle": 1,
- "s.textAlign": 1,
- "s.textBaseline": 1,
- "s.restore": 6,
- "s.font": 2,
- "f*.15": 2,
- "s.fillText": 2,
- "f*.35": 26,
- "f*.2": 1,
- "k*Math.PI/180": 1,
- "u.size": 4,
- "u.frameDesign": 4,
- "u.frameVisible": 4,
- "u.backgroundColor": 4,
- "u.backgroundVisible": 4,
- "u.pointerType": 2,
- "steelseries.PointerType.TYPE2": 1,
- "u.pointerColor": 4,
- "u.knobType": 4,
- "u.knobStyle": 4,
- "u.foregroundType": 4,
- "u.foregroundVisible": 4,
- "u.pointSymbols": 4,
- "u.customLayer": 4,
- "u.degreeScale": 4,
- "u.roseVisible": 4,
- "this.value": 4,
- "ft.getContext": 2,
- "ut.getContext": 2,
- "it.getContext": 2,
- "ot.getContext": 3,
- "et.getContext": 2,
- "tt.labelColor.getRgbaColor": 2,
- ".08*f": 1,
- "f*.033": 1,
- "st*10": 2,
- ".substring": 2,
- ".12*f": 2,
- ".06*f": 2,
- "tt.symbolColor.getRgbaColor": 1,
- "st*2.5": 1,
- "bt.type": 1,
- "f*.53271": 6,
- "e*.453271": 5,
- "f*.5": 17,
- "e*.149532": 8,
- "f*.467289": 6,
- "f*.453271": 2,
- "e*.462616": 2,
- "f*.443925": 9,
- "e*.481308": 2,
- "e*.5": 10,
- "f*.556074": 9,
- "f*.546728": 2,
- ".471962*f": 5,
- ".528036*f": 5,
- "o.addColorStop": 4,
- "h.light.getRgbaColor": 6,
- ".46": 3,
- ".47": 3,
- "h.medium.getRgbaColor": 6,
- "h.dark.getRgbaColor": 3,
- "n.lineCap": 5,
- "n.lineJoin": 5,
- "e*.546728": 5,
- "e*.850467": 4,
- "e*.537383": 2,
- "e*.518691": 2,
- "s.addColorStop": 4,
- "e*.490654": 2,
- "e*.53271": 2,
- "e*.556074": 3,
- "e*.495327": 4,
- "f*.528037": 2,
- "f*.471962": 2,
- "e*.504672": 4,
- ".480099": 1,
- "f*.006": 2,
- "ft.width": 1,
- "ft.height": 1,
- "ut.width": 1,
- "ut.height": 1,
- "it.width": 1,
- "it.height": 1,
- "ot.width": 1,
- "ot.height": 1,
- "et.width": 1,
- "et.height": 1,
- "Tween.elasticEaseOut": 1,
- "r.repaint": 1,
- "this.setPointSymbols": 1,
- "p*st": 1,
- "b.clearRect": 1,
- "b.save": 1,
- "b.translate": 2,
- "b.rotate": 1,
- "b.drawImage": 1,
- "b.restore": 1,
- "u.pointerTypeLatest": 2,
- "u.pointerTypeAverage": 2,
- "steelseries.PointerType.TYPE8": 1,
- "u.pointerColorAverage": 2,
- "steelseries.ColorDef.BLUE": 1,
- "u.lcdColor": 2,
- "u.lcdVisible": 2,
- "u.digitalFont": 2,
- "u.section": 2,
- "u.area": 2,
- "u.lcdTitleStrings": 2,
- "u.titleString": 2,
- "u.useColorLabels": 2,
- "this.valueLatest": 1,
- "this.valueAverage": 1,
- "Math.PI*2": 1,
- "e.save": 2,
- "e.clearRect": 1,
- "e.canvas.width": 2,
- "e.canvas.height": 2,
- "f/10": 1,
- "f*.3": 4,
- "s*.12": 1,
- "s*.32": 1,
- "s*.565": 1,
- "bt.getContext": 1,
- "at.getContext": 1,
- "vt.getContext": 1,
- "lt.getContext": 1,
- "wt.getContext": 1,
- "e.textAlign": 1,
- "e.strokeStyle": 1,
- "ht.textColor": 2,
- "e.fillStyle": 1,
- "<0&&(n+=360),n=\"00\"+Math.round(n),n=n.substring(n.length,n.length-3),(ht===steelseries.LcdColor.STANDARD||ht===steelseries.LcdColor.STANDARD_GREEN)&&(e.shadowColor=\"gray\",e.shadowOffsetX=f*.007,e.shadowOffsetY=f*.007,e.shadowBlur=f*.007),e.font=pr?gr:br,e.fillText(n+\"\\u00b0\",f/2+gt*.05,(t?or:cr)+er*.5+ui*.38,gt*.9),e.restore()},wi=function(n,t,i,r,u){n.save(),n.strokeStyle=r,n.fillStyle=r,n.lineWidth=f*.035;var>": 1,
- "arc": 2,
- "365": 2,
- "lineWidth": 1,
- "lr=": 1,
- "35": 1,
- "355": 1,
- "36": 2,
- "bold": 1,
- "04": 2,
- "ct*5": 1,
- "k.symbolColor.getRgbaColor": 1,
- "ct*2.5": 1,
- "ti.length": 1,
- "kt.medium.getRgbaColor": 1,
- ".04*f": 1,
- "s*.29": 1,
- "ii.medium.getRgbaColor": 1,
- "s*.71": 1,
- "rr.length": 1,
- ".0467*f": 1,
- "s*.5": 1,
- "et.length": 2,
- "ft.length": 2,
- "": 1,
- "ci=": 1,
- "li=": 1,
- "ai=": 1,
- "ki=": 1,
- "yi=": 1,
- "setValueLatest=": 1,
- "getValueLatest=": 1,
- "setValueAverage=": 1,
- "getValueAverage=": 1,
- "setValueAnimatedLatest=": 1,
- "playing": 2,
- "regularEaseInOut": 2,
- "onMotionChanged=": 2,
- "_pos": 2,
- "onMotionFinished=": 2,
- "setValueAnimatedAverage=": 1,
- "setArea=": 1,
- "setSection=": 1,
- "setFrameDesign=": 1,
- "pi=": 1,
- "setBackgroundColor=": 1,
- "setForegroundType=": 1,
- "si=": 1,
- "setPointerColor=": 1,
- "setPointerColorAverage=": 1,
- "setPointerType=": 1,
- "setPointerTypeAverage=": 1,
- "ri=": 1,
- "setPointSymbols=": 1,
- "setLcdTitleStrings=": 1,
- "fi=": 1,
- "006": 1,
- "ei=": 1,
- "ru=": 1,
- "WHITE": 1,
- "037383": 1,
- "056074": 1,
- "7fd5f0": 2,
- "3c4439": 2,
- "72": 1,
- "Animal": 12,
- "Horse": 12,
- "Snake": 12,
- "sam": 4,
- "tom": 4,
- "__hasProp": 2,
- "__extends": 6,
- "__hasProp.call": 2,
- "this.constructor": 5,
- "Animal.prototype.move": 2,
- "meters": 4,
- "Snake.__super__.constructor.apply": 2,
- "Snake.prototype.move": 2,
- "Snake.__super__.move.call": 2,
- "Horse.__super__.constructor.apply": 2,
- "Horse.prototype.move": 2,
- "Horse.__super__.move.call": 2,
- "sam.move": 2,
- "tom.move": 2,
- "ma": 3,
- "c.isReady": 4,
- "s.documentElement.doScroll": 2,
- "c.ready": 7,
- "Qa": 1,
- "b.src": 4,
- "c.ajax": 1,
- "async": 5,
- "c.globalEval": 1,
- "b.text": 3,
- "b.textContent": 2,
- "b.innerHTML": 3,
- "b.parentNode": 4,
- "b.parentNode.removeChild": 2,
- "X": 6,
- "j": 265,
- "a.length": 23,
- "c.isFunction": 9,
- "d.call": 3,
- "J": 5,
- "Y": 3,
- "na": 1,
- ".type": 2,
- "c.event.handle.apply": 1,
- "oa": 1,
- "c.data": 12,
- "a.liveFired": 4,
- "i.live": 1,
- "a.button": 2,
- "a.type": 14,
- "i.live.slice": 1,
- "u.length": 3,
- "i.origType.replace": 1,
- "O": 6,
- "f.push": 5,
- "i.selector": 3,
- "u.splice": 1,
- "a.target": 5,
- ".closest": 4,
- "a.currentTarget": 4,
- "j.length": 2,
- ".selector": 1,
- ".elem": 1,
- "i.preType": 2,
- "a.relatedTarget": 2,
- "d.push": 1,
- "handleObj": 2,
- "d.length": 8,
- "j.elem": 2,
- "a.data": 2,
- "j.handleObj.data": 1,
- "a.handleObj": 2,
- "j.handleObj": 1,
- "j.handleObj.origHandler.apply": 1,
- "pa": 1,
- "b.replace": 3,
- "./g": 2,
- "qa": 1,
- "a.parentNode": 6,
- "a.parentNode.nodeType": 2,
- "ra": 1,
- "b.each": 1,
- "this.nodeName": 4,
- ".nodeName": 2,
- "f.events": 1,
- "e.handle": 2,
- "e.events": 2,
- "c.event.add": 1,
- "sa": 2,
- ".ownerDocument": 5,
- ".length": 24,
- "ta.test": 1,
- "c.support.checkClone": 2,
- "ua.test": 1,
- "c.fragments": 2,
- "b.createDocumentFragment": 1,
- "c.clean": 1,
- "cacheable": 2,
- "K": 4,
- "c.each": 2,
- "va.concat.apply": 1,
- "va.slice": 1,
- "wa": 1,
- "a.document": 3,
- "a.nodeType": 27,
- "a.defaultView": 2,
- "a.parentWindow": 2,
- "c.fn.init": 1,
- "Ra": 2,
- "A.jQuery": 3,
- "Sa": 2,
- "A.": 3,
- "A.document": 1,
- "T": 4,
- "Ta": 1,
- "Ua": 1,
- "Va": 1,
- "Wa": 2,
- "u00A0": 2,
- "Xa": 1,
- "P": 4,
- "xa": 3,
- "Q": 6,
- "L": 10,
- "aa": 1,
- "ba": 3,
- "R": 2,
- "ya": 2,
- "c.fn": 2,
- "c.prototype": 1,
- "s.body": 2,
- "Ta.exec": 1,
- "b.ownerDocument": 6,
- "Xa.exec": 1,
- "c.isPlainObject": 3,
- "s.createElement": 10,
- "c.fn.attr.call": 1,
- "f.createElement": 1,
- "a.cacheable": 1,
- "a.fragment.cloneNode": 1,
- "a.fragment": 1,
- ".childNodes": 2,
- "c.merge": 4,
- "s.getElementById": 1,
- "b.id": 1,
- "T.find": 1,
- "s.getElementsByTagName": 2,
- "b.jquery": 1,
- ".find": 5,
- "T.ready": 1,
- "a.selector": 4,
- "a.context": 2,
- "c.makeArray": 3,
- "jquery": 3,
- "toArray": 2,
- "R.call": 2,
- "this.toArray": 3,
- "this.slice": 5,
- "pushStack": 4,
- "c.isArray": 5,
- "ba.apply": 1,
- "f.prevObject": 1,
- "f.context": 1,
- "f.selector": 2,
- "c.bindReady": 1,
- "a.call": 17,
- "Q.push": 1,
- "eq": 2,
- "this.eq": 4,
- "this.pushStack": 12,
- "R.apply": 1,
- "c.map": 1,
- "this.prevObject": 3,
- "c.fn.init.prototype": 1,
- "c.extend": 7,
- "c.fn.extend": 4,
- "c.fn.triggerHandler": 1,
- ".triggerHandler": 1,
- "s.readyState": 2,
- "s.addEventListener": 3,
- "A.addEventListener": 1,
- "s.attachEvent": 3,
- "A.attachEvent": 1,
- "A.frameElement": 1,
- "isFunction": 12,
- "isArray": 10,
- "isPlainObject": 4,
- "a.setInterval": 2,
- "a.constructor": 2,
- "aa.call": 3,
- "a.constructor.prototype": 2,
- "c.trim": 3,
- "a.replace": 7,
- "@": 1,
- "A.JSON": 1,
- "A.JSON.parse": 2,
- "c.error": 2,
- "noop": 3,
- "globalEval": 2,
- "Va.test": 1,
- "s.documentElement": 2,
- "d.type": 2,
- "c.support.scriptEval": 2,
- "d.appendChild": 3,
- "s.createTextNode": 2,
- "d.text": 1,
- "b.insertBefore": 3,
- "b.firstChild": 5,
- "b.removeChild": 3,
- "a.nodeName": 12,
- "a.nodeName.toUpperCase": 2,
- "b.toUpperCase": 3,
- "b.apply": 2,
- "b.call": 4,
- "makeArray": 3,
- "ba.call": 1,
- "inArray": 5,
- "b.indexOf": 2,
- "b.length": 12,
- "merge": 2,
- "grep": 6,
- "f.concat.apply": 1,
- "guid": 5,
- "proxy": 4,
- "a.apply": 2,
- "b.guid": 2,
- "a.guid": 7,
- "c.guid": 1,
- "a.toLowerCase": 4,
- "/.exec": 4,
- "/compatible/.test": 1,
- "c.uaMatch": 1,
- "P.browser": 2,
- "c.browser": 1,
- "c.browser.version": 1,
- "P.version": 1,
- "c.browser.webkit": 1,
- "c.browser.safari": 1,
- "c.inArray": 2,
- "ya.call": 1,
- "s.removeEventListener": 1,
- "s.detachEvent": 1,
- "c.support": 2,
- "d.style.display": 5,
- "d.innerHTML": 2,
- "d.getElementsByTagName": 6,
- "e.length": 9,
- "d.firstChild.nodeType": 1,
- "htmlSerialize": 3,
- "/red/.test": 1,
- "j.getAttribute": 2,
- "j.style.opacity": 1,
- "j.style.cssFloat": 1,
- ".value": 1,
- "optSelected": 3,
- ".appendChild": 1,
- ".selected": 1,
- "parentNode": 10,
- "d.removeChild": 1,
- ".parentNode": 7,
- "deleteExpando": 3,
- "checkClone": 1,
- "scriptEval": 1,
- "noCloneEvent": 3,
- "boxModel": 1,
- "b.type": 4,
- "b.appendChild": 1,
- "a.insertBefore": 2,
- "a.firstChild": 6,
- "b.test": 1,
- "c.support.deleteExpando": 2,
- "a.removeChild": 2,
- "d.attachEvent": 2,
- "d.fireEvent": 1,
- "c.support.noCloneEvent": 1,
- "d.detachEvent": 1,
- "d.cloneNode": 1,
- "s.createDocumentFragment": 1,
- "a.appendChild": 3,
- "d.firstChild": 2,
- "a.cloneNode": 3,
- ".lastChild.checked": 2,
- "k.style.width": 1,
- "k.style.paddingLeft": 1,
- "s.body.appendChild": 1,
- "c.boxModel": 1,
- "c.support.boxModel": 1,
- "k.offsetWidth": 1,
- "s.body.removeChild": 1,
- "n.setAttribute": 1,
- "c.support.submitBubbles": 1,
- "c.support.changeBubbles": 1,
- "c.props": 2,
- "readonly": 3,
- "maxlength": 2,
- "cellspacing": 2,
- "rowspan": 2,
- "colspan": 2,
- "usemap": 2,
- "frameborder": 2,
- "G": 11,
- "Ya": 2,
- "za": 3,
- "embed": 3,
- "applet": 2,
- "c.noData": 2,
- "a.nodeName.toLowerCase": 3,
- "c.cache": 2,
- "c.isEmptyObject": 1,
- "c.removeData": 2,
- "c.expando": 2,
- "a.removeAttribute": 3,
- "a.split": 4,
- "this.trigger": 2,
- ".each": 3,
- "queue": 7,
- "dequeue": 6,
- "c.queue": 3,
- "d.shift": 2,
- "d.unshift": 2,
- "f.call": 1,
- "c.dequeue": 4,
- "c.fx": 1,
- "c.fx.speeds": 1,
- "this.queue": 4,
- "clearQueue": 2,
- "Aa": 3,
- "ca": 6,
- "Za": 2,
- "r/g": 2,
- "/href": 1,
- "style/": 1,
- "ab": 1,
- "bb": 2,
- "cb": 16,
- "area": 2,
- "Ba": 3,
- "/radio": 1,
- "checkbox/": 1,
- "c.attr": 4,
- "this.nodeType": 4,
- "this.removeAttribute": 1,
- "addClass": 2,
- "r.addClass": 1,
- "r.attr": 1,
- "e.nodeType": 7,
- "e.className": 14,
- "j.indexOf": 1,
- "removeClass": 2,
- "n.removeClass": 1,
- "n.attr": 1,
- "j.replace": 2,
- "toggleClass": 2,
- "j.toggleClass": 1,
- "j.attr": 1,
- "i.hasClass": 1,
- "hasClass": 2,
- "": 1,
- "val": 13,
- "c.nodeName": 4,
- "b.attributes.value": 1,
- ".specified": 1,
- "b.value": 4,
- "b.selectedIndex": 2,
- "b.options": 1,
- "": 1,
- "getAttribute": 3,
- "nodeType=": 6,
- "call": 9,
- "checked=": 1,
- "this.selected": 1,
- "this.selectedIndex": 1,
- "attrFn": 2,
- "css": 7,
- "c.attrFn": 1,
- "c.isXMLDoc": 1,
- "a.test": 2,
- "ab.test": 1,
- "a.getAttributeNode": 7,
- ".nodeValue": 1,
- "b.specified": 2,
- "bb.test": 2,
- "cb.test": 1,
- "a.href": 2,
- "c.support.style": 1,
- "a.style.cssText": 3,
- "a.setAttribute": 7,
- "c.support.hrefNormalized": 1,
- "c.style": 1,
- "db": 1,
- "detail": 3,
- "layerX": 3,
- "layerY": 3,
- "newValue": 3,
- "originalTarget": 1,
- "prevValue": 3,
- "wheelDelta": 3,
- "click.specialSubmit": 2,
- "submit": 14,
- "keypress.specialSubmit": 2,
- "password": 5,
- ".specialSubmit": 2,
- "_change_data": 6,
- "file": 5,
- ".specialChange": 4,
- "unload": 5,
- "live": 8,
- "lastToggle": 4,
- "die": 3,
- "hover": 3,
- "load": 5,
- "resize": 3,
- "scroll": 6,
- "dblclick": 3,
- "mousedown": 3,
- "mouseup": 3,
- "mousemove": 3,
- "keydown": 4,
- "keypress": 4,
- "keyup": 3,
- "onunload": 1,
- "m": 76,
- "h.nodeType": 4,
- "H": 8,
- "M": 9,
- "I": 7,
- "f.exec": 2,
- "p.push": 2,
- "p.length": 10,
- "r.exec": 1,
- "n.relative": 5,
- "ga": 2,
- "p.shift": 4,
- "n.match.ID.test": 2,
- "k.find": 6,
- "v.expr": 4,
- "k.filter": 5,
- "v.set": 5,
- "expr": 2,
- "p.pop": 4,
- "h.parentNode": 3,
- "D": 9,
- "k.error": 2,
- "j.call": 2,
- ".nodeType": 9,
- "E": 11,
- "l.push": 2,
- "l.push.apply": 1,
- "k.uniqueSort": 5,
- "B": 5,
- "g.sort": 1,
- "g.length": 2,
- "g.splice": 2,
- "k.matches": 1,
- "n.order.length": 1,
- "n.order": 1,
- "n.leftMatch": 1,
- ".exec": 2,
- "q.splice": 1,
- "y.substr": 1,
- "y.length": 1,
- "Syntax": 3,
- "unrecognized": 3,
- "expression": 4,
- "NAME": 2,
- "TAG": 2,
- "u00c0": 2,
- "uFFFF": 2,
- "leftMatch": 2,
- "attrMap": 2,
- "attrHandle": 2,
- "g.getAttribute": 1,
- "relative": 4,
- "W/.test": 1,
- "h.toLowerCase": 2,
- "": 1,
- "previousSibling": 5,
- "nth": 5,
- "even": 3,
- "odd": 2,
- "reset": 2,
- "sourceIndex": 1,
- "": 4,
- "name=": 2,
- "href=": 2,
- "": 2,
- "": 2,
- "class=": 5,
- "
": 2,
- ".TEST": 2,
- "": 4,
- "": 3,
- "CLASS": 1,
- "nextSibling": 3,
- "\"+d+\">": 1,
- "": 1,
- "": 1,
- "": 4,
- "
": 5,
- "": 3,
- "": 3,
- "": 2,
- " ": 2,
- "": 1,
- " ": 1,
- "": 1,
- "position": 7,
- "absolute": 2,
- "solid": 2,
- "#000": 2,
- "padding": 4,
- "": 1,
- " ": 1,
- "fixed": 1,
- "marginLeft": 2,
- "borderTopWidth": 1,
- "borderLeftWidth": 1,
- "static": 2,
- "Left": 1,
- "Top": 1,
- "pageXOffset": 2,
- "pageYOffset": 1,
- "Height": 1,
- "Width": 1,
- "scrollTo": 1,
- "CSS1Compat": 1,
- "client": 3,
- "cy": 4,
- "f.isWindow": 2,
- "cv": 2,
- "cj": 4,
- "b.css": 1,
- "b.remove": 1,
- "ck": 5,
- "c.createElement": 12,
- "ck.frameBorder": 1,
- "ck.width": 1,
- "ck.height": 1,
- "c.body.appendChild": 1,
- "cl": 3,
- "ck.createElement": 1,
- "ck.contentWindow": 1,
- "ck.contentDocument": 1,
- ".document": 1,
- "cl.write": 1,
- "cl.createElement": 1,
- "cl.body.appendChild": 1,
- "f.css": 24,
- "c.body.removeChild": 1,
- "f.each": 21,
- "cp.concat.apply": 1,
- "cp.slice": 1,
- "cq": 3,
- "cs": 3,
- "f.now": 2,
- "a.ActiveXObject": 3,
- "a.XMLHttpRequest": 1,
- "a.dataFilter": 2,
- "a.dataType": 1,
- "a.dataTypes": 2,
- "a.converters": 3,
- "o.split": 1,
- "f.error": 4,
- "m.replace": 1,
- "a.contents": 1,
- "a.responseFields": 1,
- "f.shift": 1,
- "a.mimeType": 1,
- "c.getResponseHeader": 1,
- ".test": 1,
- "f.unshift": 2,
- "b_": 4,
- "f.isArray": 8,
- "bF.test": 1,
- "c.dataTypes": 1,
- "h.length": 3,
- "bU": 4,
- "c.dataTypes.unshift": 1,
- "bZ": 3,
- "f.isFunction": 21,
- "b.toLowerCase": 3,
- "bQ": 3,
- "h.substr": 1,
- "bD": 3,
- "bx": 2,
- "a.offsetWidth": 6,
- "a.offsetHeight": 2,
- "bn": 2,
- "f.ajax": 3,
- "f.globalEval": 2,
- "bm": 3,
- "f.nodeName": 16,
- "bl": 3,
- "a.getElementsByTagName": 9,
- "f.grep": 3,
- "a.defaultChecked": 1,
- "a.checked": 4,
- "bk": 5,
- "a.querySelectorAll": 1,
- "bj": 3,
- "b.nodeType": 6,
- "b.clearAttributes": 2,
- "b.mergeAttributes": 2,
- "b.nodeName.toLowerCase": 1,
- "b.outerHTML": 1,
- "a.outerHTML": 1,
- "b.selected": 1,
- "a.defaultSelected": 1,
- "b.defaultValue": 1,
- "a.defaultValue": 1,
- "b.defaultChecked": 1,
- "b.checked": 1,
- "a.value": 8,
- "b.removeAttribute": 3,
- "f.expando": 23,
- "f.hasData": 2,
- "f.data": 25,
- "d.events": 1,
- "f.extend": 23,
- "": 1,
- "bh": 1,
- "getElementsByTagName": 1,
- "appendChild": 1,
- "nodeType": 1,
- "W": 3,
- "N": 2,
- "f._data": 15,
- "r.live": 1,
- "a.target.disabled": 1,
- "a.namespace": 1,
- "a.namespace.split": 1,
- "r.live.slice": 1,
- "s.length": 2,
- "g.origType.replace": 1,
- "q.push": 1,
- "g.selector": 3,
- "s.splice": 1,
- "m.selector": 1,
- "n.test": 2,
- "g.namespace": 1,
- "m.elem.disabled": 1,
- "m.elem": 1,
- "g.preType": 3,
- "f.contains": 5,
- "m.level": 1,
- "": 1,
- "e.elem": 2,
- "e.handleObj.data": 1,
- "e.handleObj": 1,
- "e.handleObj.origHandler.apply": 1,
- "a.isPropagationStopped": 1,
- "e.level": 1,
- "a.isImmediatePropagationStopped": 1,
- "e.type": 6,
- "e.originalEvent": 1,
- "e.liveFired": 1,
- "f.event.handle.call": 1,
- "e.isDefaultPrevented": 2,
- ".preventDefault": 1,
- "f.removeData": 4,
- "i.resolve": 1,
- "c.replace": 4,
- "f.isNaN": 3,
- "i.test": 1,
- "f.parseJSON": 2,
- "a.navigator": 1,
- "a.location": 1,
- "e.isReady": 1,
- "c.documentElement.doScroll": 2,
- "e.ready": 6,
- "e.fn.init": 1,
- "a.jQuery": 2,
- "a.": 2,
- "d/": 3,
- "d.userAgent": 1,
- "C": 4,
- "e.fn": 2,
- "e.prototype": 1,
- "c.body": 4,
- "a.charAt": 2,
- "i.exec": 1,
- "d.ownerDocument": 1,
- "n.exec": 1,
- "e.isPlainObject": 1,
- "e.fn.attr.call": 1,
- "k.createElement": 1,
- "e.buildFragment": 1,
- "j.cacheable": 1,
- "e.clone": 1,
- "j.fragment": 2,
- "e.merge": 3,
- "c.getElementById": 1,
- "h.id": 1,
- "f.find": 2,
- "d.jquery": 1,
- "e.isFunction": 5,
- "f.ready": 1,
- "e.makeArray": 1,
- "D.call": 4,
- "e.isArray": 2,
- "C.apply": 1,
- "d.prevObject": 1,
- "d.context": 2,
- "d.selector": 2,
- "e.each": 2,
- "e.bindReady": 1,
- "y.done": 1,
- "D.apply": 1,
- "e.map": 1,
- "e.fn.init.prototype": 1,
- "e.extend": 2,
- "e.fn.extend": 1,
- "": 1,
- "jQuery=": 2,
- "isReady=": 1,
- "y.resolveWith": 1,
- "e.fn.trigger": 1,
- "e._Deferred": 1,
- "c.readyState": 2,
- "c.addEventListener": 4,
- "a.addEventListener": 4,
- "c.attachEvent": 3,
- "a.attachEvent": 6,
- "a.frameElement": 1,
- "Array.isArray": 7,
- "isWindow": 2,
- "isNaN": 6,
- "m.test": 1,
- "A.call": 1,
- "e.isWindow": 2,
- "B.call": 3,
- "e.trim": 1,
- "a.JSON": 1,
- "a.JSON.parse": 2,
- "o.test": 1,
- "e.error": 2,
- "parseXML": 1,
- "a.DOMParser": 1,
- "DOMParser": 1,
- "d.parseFromString": 1,
- "ActiveXObject": 1,
- "c.async": 4,
- "c.loadXML": 1,
- "c.documentElement": 4,
- "d.nodeName": 4,
- "j.test": 3,
- "a.execScript": 1,
- "a.eval.call": 1,
- "c.apply": 2,
- "c.call": 3,
- "E.call": 1,
- "C.call": 1,
- "F.call": 1,
- "c.length": 8,
- "": 1,
- "j=": 14,
- "h.concat.apply": 1,
- "f.concat": 1,
- "g.guid": 3,
- "e.guid": 3,
- "e.access": 1,
- "s.exec": 1,
- "t.exec": 1,
- "u.exec": 1,
- "a.indexOf": 2,
- "v.exec": 1,
- "a.fn.init": 2,
- "a.superclass": 1,
- "a.fn": 2,
- "a.prototype": 1,
- "a.fn.constructor": 1,
- "a.sub": 1,
- "e.fn.init.call": 1,
- "a.fn.init.prototype": 1,
- "e.uaMatch": 1,
- "x.browser": 2,
- "e.browser": 1,
- "e.browser.version": 1,
- "x.version": 1,
- "e.browser.webkit": 1,
- "e.browser.safari": 1,
- "c.removeEventListener": 2,
- "c.detachEvent": 1,
- "_Deferred": 4,
- "done": 10,
- "": 1,
- "resolveWith": 4,
- "shift": 1,
- "apply": 8,
- "finally": 3,
- "resolve": 7,
- "isResolved": 3,
- "cancel": 6,
- "Deferred": 5,
- "rejectWith": 2,
- "reject": 4,
- "isRejected": 2,
- "pipe": 2,
- "promise": 14,
- "h.call": 2,
- "g.resolveWith": 3,
- "<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>": 1,
- ".promise": 5,
- ".then": 3,
- "g.reject": 1,
- "g.promise": 1,
- "f.support": 2,
- "f.appendChild": 1,
- "a.firstChild.nodeType": 2,
- "/top/.test": 2,
- "e.getAttribute": 2,
- "e.style.opacity": 1,
- "e.style.cssFloat": 1,
- "h.value": 3,
- "g.selected": 1,
- "a.className": 1,
- "submitBubbles": 3,
- "changeBubbles": 3,
- "focusinBubbles": 2,
- "inlineBlockNeedsLayout": 3,
- "shrinkWrapBlocks": 2,
- "reliableMarginRight": 2,
- "h.checked": 2,
- "j.noCloneChecked": 1,
- "h.cloneNode": 1,
- ".checked": 2,
- "f.disabled": 1,
- "j.optDisabled": 1,
- "g.disabled": 1,
- "j.deleteExpando": 1,
- "a.fireEvent": 1,
- "j.noCloneEvent": 1,
- "a.detachEvent": 1,
- "h.setAttribute": 2,
- "j.radioValue": 1,
- "c.createDocumentFragment": 1,
- "k.appendChild": 1,
- "j.checkClone": 1,
- "k.cloneNode": 1,
- "a.style.width": 1,
- "a.style.paddingLeft": 1,
- "visibility": 3,
- "l.style": 1,
- "l.appendChild": 1,
- "j.appendChecked": 1,
- "j.boxModel": 1,
- "a.style": 8,
- "a.style.display": 3,
- "a.style.zoom": 1,
- "j.inlineBlockNeedsLayout": 1,
- "j.shrinkWrapBlocks": 1,
- "j.reliableHiddenOffsets": 1,
- "c.defaultView": 2,
- "c.defaultView.getComputedStyle": 3,
- "i.style.width": 1,
- "i.style.marginRight": 1,
- "j.reliableMarginRight": 1,
- "l.innerHTML": 1,
- "f.boxModel": 1,
- "f.support.boxModel": 4,
- "f.fn.jquery": 1,
- "f.cache": 5,
- "f.acceptData": 4,
- "f.uuid": 1,
- ".toJSON": 4,
- "f.noop": 4,
- "f.camelCase": 5,
- ".events": 1,
- "f.support.deleteExpando": 3,
- "f.noData": 2,
- "f.fn.extend": 9,
- ".attributes": 2,
- "g.indexOf": 2,
- "g.substring": 1,
- "b.triggerHandler": 2,
- "_mark": 2,
- "_unmark": 3,
- "f.makeArray": 5,
- "e.push": 3,
- "f.queue": 3,
- "c.shift": 2,
- "c.unshift": 1,
- "f.dequeue": 4,
- "f.fx": 2,
- "f.fx.speeds": 1,
- "d.resolveWith": 1,
- "f.Deferred": 2,
- "f._Deferred": 2,
- "l.done": 1,
- "d.promise": 1,
- "rea": 1,
- "autofocus": 1,
- "autoplay": 1,
- "controls": 1,
- "defer": 1,
- "open": 2,
- "required": 1,
- "scoped": 1,
- "f.access": 3,
- "f.attr": 2,
- "f.removeAttr": 3,
- "f.prop": 2,
- "removeProp": 1,
- "f.propFix": 6,
- "c.addClass": 1,
- "f.trim": 2,
- "c.removeClass": 1,
- "g.nodeType": 6,
- "g.className": 4,
- "h.replace": 2,
- "d.toggleClass": 1,
- "d.attr": 1,
- "h.hasClass": 1,
- "": 1,
- "f.valHooks": 7,
- "e.nodeName.toLowerCase": 1,
- "c.get": 1,
- "e.value": 1,
- "e.val": 1,
- "f.map": 5,
- "this.nodeName.toLowerCase": 1,
- "this.type": 3,
- "c.set": 1,
- "valHooks": 1,
- "a.attributes.value": 1,
- "a.text": 1,
- "a.selectedIndex": 3,
- "a.options": 2,
- "": 3,
- "optDisabled": 1,
- "selected=": 1,
- "attrFix": 1,
- "f.attrFn": 3,
- "f.isXMLDoc": 4,
- "f.attrFix": 3,
- "f.attrHooks": 5,
- "t.test": 2,
- "d.toLowerCase": 1,
- "c.toLowerCase": 4,
- "u.test": 1,
- "i.set": 1,
- "i.get": 1,
- "f.support.getSetAttribute": 2,
- "a.removeAttributeNode": 1,
- "q.test": 1,
- "f.support.radioValue": 1,
- "c.specified": 1,
- "c.value": 1,
- "r.test": 1,
- "s.test": 1,
- "propFix": 1,
- "cellpadding": 1,
- "contenteditable": 1,
- "f.propHooks": 1,
- "h.set": 1,
- "h.get": 1,
- "propHooks": 1,
- "f.attrHooks.value": 1,
- "v.get": 1,
- "f.attrHooks.name": 1,
- "f.valHooks.button": 1,
- "d.nodeValue": 3,
- "f.support.hrefNormalized": 1,
- "f.support.style": 1,
- "f.attrHooks.style": 1,
- "a.style.cssText.toLowerCase": 1,
- "f.support.optSelected": 1,
- "f.propHooks.selected": 2,
- "b.parentNode.selectedIndex": 1,
- "f.support.checkOn": 1,
- "f.inArray": 4,
- "s.": 1,
- "f.event": 2,
- "d.handler": 1,
- "g.handler": 1,
- "d.guid": 4,
- "f.guid": 3,
- "i.events": 2,
- "i.handle": 2,
- "f.event.triggered": 3,
- "f.event.handle.apply": 1,
- "k.elem": 2,
- "c.split": 2,
- "l.indexOf": 1,
- "l.split": 1,
- "n.shift": 1,
- "h.namespace": 2,
- "n.slice": 1,
- "h.type": 1,
- "h.guid": 2,
- "f.event.special": 5,
- "p.setup": 1,
- "p.setup.call": 1,
- "p.add": 1,
- "p.add.call": 1,
- "h.handler.guid": 2,
- "o.push": 1,
- "f.event.global": 2,
- "global": 5,
- "s.events": 1,
- "c.type": 9,
- "c.handler": 1,
- "c.charAt": 1,
- "f.event.remove": 5,
- "h.indexOf": 3,
- "h.split": 2,
- "m.shift": 1,
- "m.slice": 1,
- "q.namespace": 1,
- "q.handler": 1,
- "p.splice": 1,
- "": 1,
- "elem=": 4,
- "customEvent": 1,
- "trigger": 4,
- "h.slice": 1,
- "i.shift": 1,
- "i.sort": 1,
- "f.event.customEvent": 1,
- "f.Event": 2,
- "c.exclusive": 2,
- "c.namespace": 2,
- "i.join": 2,
- "c.namespace_re": 1,
- "c.preventDefault": 3,
- "c.stopPropagation": 1,
- "b.events": 4,
- "f.event.trigger": 6,
- "b.handle.elem": 2,
- "c.result": 3,
- "c.target": 3,
- "c.currentTarget": 2,
- "m.apply": 1,
- "k.parentNode": 1,
- "k.ownerDocument": 1,
- "c.target.ownerDocument": 1,
- "c.isPropagationStopped": 1,
- "c.isDefaultPrevented": 2,
- "o._default": 1,
- "o._default.call": 1,
- "e.ownerDocument": 1,
- "f.event.fix": 2,
- "a.event": 1,
- "Array.prototype.slice.call": 1,
- "namespace_re": 1,
- "namespace": 1,
- "handler=": 1,
- "data=": 2,
- "handleObj=": 1,
- "result=": 1,
- "preventDefault": 4,
- "stopPropagation": 5,
- "isImmediatePropagationStopped": 2,
- "fix": 1,
- "Event": 3,
- "target=": 2,
- "relatedTarget=": 1,
- "fromElement=": 1,
- "pageX=": 2,
- "documentElement": 2,
- "scrollLeft": 2,
- "clientLeft": 2,
- "pageY=": 1,
- "scrollTop": 2,
- "clientTop": 2,
- "which=": 3,
- "metaKey=": 1,
- "1e8": 1,
- "special": 3,
- "setup": 5,
- "teardown": 6,
- "origType": 2,
- "beforeunload": 1,
- "onbeforeunload=": 3,
- "removeEvent=": 1,
- "removeEventListener": 3,
- "detachEvent": 2,
- "Event=": 1,
- "originalEvent=": 1,
- "type=": 5,
- "isDefaultPrevented=": 2,
- "defaultPrevented": 1,
- "returnValue=": 2,
- "getPreventDefault": 2,
- "timeStamp=": 1,
- "prototype=": 2,
- "originalEvent": 2,
- "isPropagationStopped=": 1,
- "cancelBubble=": 1,
- "stopImmediatePropagation": 1,
- "isImmediatePropagationStopped=": 1,
- "isDefaultPrevented": 1,
- "isPropagationStopped": 1,
- "G=": 1,
- "H=": 1,
- "submit=": 1,
- "specialSubmit": 3,
- "closest": 3,
- "keyCode=": 1,
- "J=": 1,
- "selectedIndex": 1,
- "a.selected": 1,
- "z.test": 3,
- "d.readOnly": 1,
- "c.liveFired": 1,
- "f.event.special.change": 1,
- "filters": 1,
- "beforedeactivate": 1,
- "K.call": 2,
- "a.keyCode": 2,
- "beforeactivate": 1,
- "f.event.add": 2,
- "f.event.special.change.filters": 1,
- "I.focus": 1,
- "I.beforeactivate": 1,
- "f.support.focusinBubbles": 1,
- "c.originalEvent": 1,
- "a.preventDefault": 3,
- "f.fn": 9,
- "e.apply": 1,
- "this.one": 1,
- "unbind": 2,
- "this.unbind": 2,
- "delegate": 1,
- "this.live": 1,
- "undelegate": 1,
- "this.die": 1,
- "triggerHandler": 1,
- "toggle": 10,
- ".guid": 1,
- "this.click": 1,
- "this.mouseenter": 1,
- ".mouseleave": 1,
- "g.charAt": 1,
- "n.unbind": 1,
- "y.exec": 1,
- "a.push": 2,
- "n.length": 1,
- "": 1,
- "this.bind": 2,
- "": 2,
- "sizcache=": 4,
- "sizset": 2,
- "sizset=": 2,
- "toLowerCase": 3,
- "W/": 2,
- "d.nodeType": 5,
- "k.isXML": 4,
- "a.exec": 2,
- "x.push": 1,
- "x.length": 8,
- "m.exec": 1,
- "l.relative": 6,
- "x.shift": 4,
- "l.match.ID.test": 2,
- "q.expr": 4,
- "q.set": 4,
- "x.pop": 4,
- "d.parentNode": 4,
- "e.call": 1,
- "f.push.apply": 1,
- "k.contains": 5,
- "a.sort": 1,
- "": 1,
- "matches=": 1,
- "matchesSelector=": 1,
- "l.order.length": 1,
- "l.order": 1,
- "l.leftMatch": 1,
- "j.substr": 1,
- "": 1,
- "__sizzle__": 1,
- "sizzle": 1,
- "l.match.PSEUDO.test": 1,
- "a.document.nodeType": 1,
- "a.getElementsByClassName": 3,
- "a.lastChild.className": 1,
- "l.order.splice": 1,
- "l.find.CLASS": 1,
- "b.getElementsByClassName": 2,
- "c.documentElement.contains": 1,
- "a.contains": 2,
- "c.documentElement.compareDocumentPosition": 1,
- "a.compareDocumentPosition": 1,
- "a.ownerDocument": 1,
- ".documentElement": 1,
- "b.nodeName": 2,
- "l.match.PSEUDO.exec": 1,
- "l.match.PSEUDO": 1,
- "f.expr": 4,
- "k.selectors": 1,
- "f.expr.filters": 3,
- "f.unique": 4,
- "f.text": 2,
- "k.getText": 1,
- "/Until": 1,
- "parents": 2,
- "prevUntil": 2,
- "prevAll": 2,
- "U": 1,
- "f.expr.match.POS": 1,
- "V": 2,
- "contents": 4,
- "next": 9,
- "prev": 2,
- ".filter": 2,
- "": 1,
- "e.splice": 1,
- "this.filter": 2,
- "": 1,
- "": 1,
- "index": 5,
- ".is": 2,
- "c.push": 3,
- "g.parentNode": 2,
- "U.test": 1,
- "": 1,
- "f.find.matchesSelector": 2,
- "g.ownerDocument": 1,
- "this.parent": 2,
- ".children": 1,
- "a.jquery": 2,
- "f.merge": 2,
- "this.get": 1,
- "andSelf": 1,
- "this.add": 1,
- "f.dir": 6,
- "parentsUntil": 1,
- "f.nth": 2,
- "nextAll": 1,
- "nextUntil": 1,
- "siblings": 1,
- "f.sibling": 2,
- "a.parentNode.firstChild": 1,
- "a.contentDocument": 1,
- "a.contentWindow.document": 1,
- "a.childNodes": 1,
- "T.call": 1,
- "P.test": 1,
- "f.filter": 2,
- "R.test": 1,
- "Q.test": 1,
- "e.reverse": 1,
- "g.join": 1,
- "f.find.matches": 1,
- "dir": 1,
- "sibling": 1,
- "a.nextSibling": 1,
- "<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>": 1,
- "tbody/i": 1,
- "bc": 1,
- "bd": 1,
- "/checked": 1,
- "s*.checked.": 1,
- "java": 1,
- "ecma": 1,
- "script/i": 1,
- "CDATA": 1,
- "bg": 3,
- "legend": 1,
- "col": 7,
- "_default": 5,
- "bg.optgroup": 1,
- "bg.option": 1,
- "bg.tbody": 1,
- "bg.tfoot": 1,
- "bg.colgroup": 1,
- "bg.caption": 1,
- "bg.thead": 1,
- "bg.th": 1,
- "bg.td": 1,
- "f.support.htmlSerialize": 1,
- "bg._default": 2,
- "c.text": 2,
- "this.empty": 3,
- ".append": 6,
- ".createTextNode": 1,
- "wrapAll": 1,
- ".wrapAll": 2,
- ".eq": 1,
- ".clone": 1,
- "b.map": 1,
- "wrapInner": 1,
- ".wrapInner": 1,
- "b.contents": 1,
- "c.wrapAll": 1,
- "b.append": 1,
- "unwrap": 1,
- ".replaceWith": 1,
- "this.childNodes": 1,
- ".end": 1,
- "append": 1,
- "this.domManip": 4,
- "this.appendChild": 1,
- "prepend": 1,
- "this.insertBefore": 1,
- "this.firstChild": 1,
- "this.parentNode.insertBefore": 2,
- "a.push.apply": 2,
- "this.nextSibling": 2,
- ".toArray": 1,
- "f.cleanData": 4,
- "d.parentNode.removeChild": 1,
- "b.getElementsByTagName": 1,
- "this.map": 3,
- "f.clone": 2,
- ".innerHTML.replace": 1,
- "bc.test": 2,
- "f.support.leadingWhitespace": 2,
- "Z.test": 2,
- "_.exec": 2,
- ".getElementsByTagName": 2,
- "c.html": 3,
- "replaceWith": 1,
- "c.replaceWith": 1,
- ".detach": 1,
- "this.parentNode": 1,
- ".before": 1,
- "detach": 1,
- "this.remove": 1,
- "domManip": 1,
- "f.support.checkClone": 2,
- "bd.test": 2,
- ".domManip": 1,
- "g.html": 1,
- "g.domManip": 1,
- "j.parentNode": 1,
- "f.support.parentNode": 1,
- "i.nodeType": 1,
- "i.childNodes.length": 1,
- "f.buildFragment": 2,
- "e.fragment": 1,
- "h.childNodes.length": 1,
- "h.firstChild": 2,
- "": 1,
- "k.length": 2,
- ".charAt": 1,
- "f.fragments": 3,
- "i.createDocumentFragment": 1,
- "f.clean": 1,
- "appendTo": 1,
- "prependTo": 1,
- "insertBefore": 1,
- "insertAfter": 1,
- "replaceAll": 1,
- "g.childNodes.length": 1,
- "this.clone": 1,
- "d.concat": 1,
- "e.selector": 1,
- "f.support.noCloneEvent": 1,
- "f.support.noCloneChecked": 1,
- "b.createElement": 2,
- "b.createTextNode": 2,
- "k.replace": 2,
- "o.innerHTML": 1,
- "o.lastChild": 1,
- "f.support.tbody": 1,
- "ba.test": 1,
- "o.firstChild": 2,
- "o.firstChild.childNodes": 1,
- "o.childNodes": 2,
- "q.length": 1,
- ".childNodes.length": 1,
- ".parentNode.removeChild": 2,
- "o.insertBefore": 1,
- "Z.exec": 1,
- "f.support.appendChecked": 1,
- "k.nodeType": 1,
- "h.push": 1,
- "be.test": 1,
- ".type.toLowerCase": 1,
- "h.splice.apply": 1,
- "cleanData": 1,
- "j.nodeName": 1,
- "j.nodeName.toLowerCase": 1,
- "f.removeEvent": 1,
- "b.handle": 2,
- "j.removeAttribute": 2,
- "bo": 2,
- "/alpha": 1,
- "bp": 1,
- "/opacity": 1,
- "bq": 2,
- "bs": 2,
- "bv": 2,
- "de": 1,
- "bw": 2,
- "bz": 7,
- "bA": 3,
- "bB": 5,
- "bC": 2,
- "f.fn.css": 1,
- "f.style": 4,
- "cssHooks": 1,
- "cssNumber": 3,
- "zIndex": 1,
- "fontWeight": 1,
- "zoom": 1,
- "lineHeight": 1,
- "widows": 1,
- "orphans": 1,
- "cssProps": 1,
- "f.support.cssFloat": 1,
- "f.cssHooks": 3,
- "f.cssProps": 2,
- "k.get": 1,
- "bu.test": 1,
- "d.replace": 1,
- "f.cssNumber": 1,
- "k.set": 1,
- "g.get": 1,
- "swap": 1,
- "camelCase": 3,
- "f.curCSS": 1,
- "f.swap": 2,
- "<0||e==null){e=a.style[b];return>": 1,
- "0px": 1,
- "f.support.opacity": 1,
- "f.cssHooks.opacity": 1,
- "bp.test": 1,
- "a.currentStyle": 4,
- "a.currentStyle.filter": 1,
- "a.style.filter": 1,
- "RegExp.": 1,
- "/100": 2,
- "c.zoom": 1,
- "b*100": 1,
- "d.filter": 1,
- "c.filter": 2,
- "bo.test": 1,
- "g.replace": 1,
- "f.support.reliableMarginRight": 1,
- "f.cssHooks.marginRight": 1,
- "a.style.marginRight": 1,
- "a.ownerDocument.defaultView": 1,
- "e.getComputedStyle": 1,
- "g.getPropertyValue": 1,
- "a.ownerDocument.documentElement": 1,
- "c.documentElement.currentStyle": 1,
- "a.runtimeStyle": 2,
- "bs.test": 1,
- "bt.test": 1,
- "f.left": 3,
- "a.runtimeStyle.left": 2,
- "a.currentStyle.left": 1,
- "f.pixelLeft": 1,
- "f.expr.filters.hidden": 2,
- "f.support.reliableHiddenOffsets": 1,
- "f.expr.filters.visible": 1,
- "bE": 2,
- "bF": 1,
- "bG": 3,
- "n/g": 1,
- "bH": 2,
- "/#.*": 1,
- "bI": 1,
- "/mg": 1,
- "bJ": 1,
- "date": 1,
- "datetime": 1,
- "month": 1,
- "time": 1,
- "week": 1,
- "bK": 1,
- "about": 1,
- "storage": 1,
- "extension": 1,
- "widget": 1,
- "bL": 1,
- "GET": 1,
- "HEAD": 3,
- "bM": 2,
- "bN": 2,
- "bO": 2,
- "<\\/script>": 2,
- "bP": 1,
- "bR": 2,
- "*/": 2,
- "bS": 1,
- "bT": 2,
- "f.fn.load": 1,
- "bV": 3,
- "bW": 5,
- "bX": 8,
- "e.href": 1,
- "bY": 1,
- "bW.href": 2,
- "bS.exec": 1,
- "bW.toLowerCase": 1,
- "bT.apply": 1,
- "a.slice": 2,
- "f.param": 2,
- "f.ajaxSettings.traditional": 2,
- "complete": 6,
- "a.responseText": 1,
- "a.isResolved": 1,
- "a.done": 1,
- "i.html": 1,
- "i.each": 1,
- "serialize": 1,
- "this.serializeArray": 1,
- "serializeArray": 1,
- "this.elements": 2,
- "this.disabled": 1,
- "this.checked": 1,
- "bP.test": 1,
- "bJ.test": 1,
- ".map": 1,
- "b.name": 2,
- "success": 2,
- "getScript": 1,
- "f.get": 2,
- "getJSON": 1,
- "ajaxSetup": 1,
- "f.ajaxSettings": 4,
- "ajaxSettings": 1,
- "isLocal": 1,
- "bK.test": 1,
- "contentType": 4,
- "accepts": 5,
- "xml": 3,
- "json": 2,
- "/xml/": 1,
- "/html/": 1,
- "/json/": 1,
- "responseFields": 1,
- "converters": 2,
- "a.String": 1,
- "f.parseXML": 1,
- "ajaxPrefilter": 1,
- "ajaxTransport": 1,
- "ajax": 2,
- "v.readyState": 1,
- "d.ifModified": 1,
- "v.getResponseHeader": 2,
- "f.lastModified": 1,
- "f.etag": 1,
- "v.status": 1,
- "v.statusText": 1,
- "h.resolveWith": 1,
- "h.rejectWith": 1,
- "v.statusCode": 2,
- "g.trigger": 2,
- "i.resolveWith": 1,
- "f.active": 1,
- "f.ajaxSetup": 3,
- "d.statusCode": 1,
- "readyState": 1,
- "setRequestHeader": 6,
- "getAllResponseHeaders": 1,
- "getResponseHeader": 1,
- "bI.exec": 1,
- "overrideMimeType": 1,
- "d.mimeType": 1,
- "abort": 4,
- "p.abort": 1,
- "h.promise": 1,
- "v.success": 1,
- "v.done": 1,
- "v.error": 1,
- "v.fail": 1,
- "v.complete": 1,
- "i.done": 1,
- "<2)for(b>": 1,
- "status": 3,
- "url=": 1,
- "dataTypes=": 1,
- "crossDomain=": 2,
- "80": 2,
- "443": 2,
- "traditional": 1,
- "toUpperCase": 1,
- "hasContent=": 1,
- "active": 2,
- "ajaxStart": 1,
- "hasContent": 2,
- "cache=": 1,
- "x=": 1,
- "1_=": 1,
- "_=": 1,
- "Content": 1,
- "Type": 1,
- "ifModified": 1,
- "lastModified": 3,
- "Modified": 1,
- "etag": 3,
- "None": 1,
- "Accept": 1,
- "dataTypes": 4,
- "q=": 1,
- "01": 1,
- "headers": 41,
- "beforeSend": 2,
- "No": 1,
- "Transport": 1,
- "readyState=": 1,
- "ajaxSend": 1,
- "timeout": 2,
- "v.abort": 1,
- "d.timeout": 1,
- "p.send": 1,
- "encodeURIComponent": 2,
- "f.isPlainObject": 1,
- "d.join": 1,
- "cc": 2,
- "cd": 3,
- "jsonp": 1,
- "jsonpCallback": 1,
- "f.ajaxPrefilter": 2,
- "b.contentType": 1,
- "b.data": 5,
- "b.dataTypes": 2,
- "b.jsonp": 3,
- "cd.test": 2,
- "b.url": 4,
- "b.jsonpCallback": 4,
- "d.always": 1,
- "b.converters": 1,
- "/javascript": 1,
- "ecmascript/": 1,
- "a.cache": 2,
- "a.crossDomain": 2,
- "a.global": 1,
- "f.ajaxTransport": 2,
- "c.head": 1,
- "c.getElementsByTagName": 1,
- "send": 2,
- "d.async": 1,
- "a.scriptCharset": 2,
- "d.charset": 1,
- "d.src": 1,
- "a.url": 1,
- "d.onload": 3,
- "d.onreadystatechange": 2,
- "d.readyState": 2,
- "/loaded": 1,
- "complete/.test": 1,
- "e.removeChild": 1,
- "e.insertBefore": 1,
- "e.firstChild": 1,
- "cg": 7,
- "f.ajaxSettings.xhr": 2,
- "this.isLocal": 1,
- "cors": 1,
- "f.support.ajax": 1,
- "c.crossDomain": 3,
- "f.support.cors": 1,
- "c.xhr": 1,
- "c.username": 2,
- "h.open": 2,
- "c.url": 2,
- "c.password": 1,
- "c.xhrFields": 3,
- "c.mimeType": 2,
- "h.overrideMimeType": 2,
- "h.setRequestHeader": 1,
- "h.send": 1,
- "c.hasContent": 1,
- "h.readyState": 3,
- "h.onreadystatechange": 2,
- "h.abort": 1,
- "h.status": 1,
- "h.getAllResponseHeaders": 1,
- "h.responseXML": 1,
- "n.documentElement": 1,
- "m.xml": 1,
- "m.text": 2,
- "h.responseText": 1,
- "h.statusText": 1,
- "c.isLocal": 1,
- ".unload": 1,
- "cm": 2,
- "show": 10,
- "hide": 8,
- "cn": 1,
- "co": 5,
- "cp": 1,
- "a.webkitRequestAnimationFrame": 1,
- "a.mozRequestAnimationFrame": 1,
- "a.oRequestAnimationFrame": 1,
- "this.animate": 2,
- "d.style": 3,
- ".style": 1,
- "": 1,
- "_toggle": 2,
- "animate": 4,
- "fadeTo": 1,
- "queue=": 2,
- "animatedProperties=": 1,
- "animatedProperties": 2,
- "specialEasing": 2,
- "easing": 3,
- "swing": 2,
- "overflow=": 2,
- "overflow": 2,
- "overflowX": 1,
- "overflowY": 1,
- "display=": 3,
- "zoom=": 1,
- "fx": 10,
- "m=": 2,
- "cur": 6,
- "custom": 5,
- "timers": 3,
- "slideDown": 1,
- "slideUp": 1,
- "slideToggle": 1,
- "fadeIn": 1,
- "fadeOut": 1,
- "fadeToggle": 1,
- "duration": 4,
- "duration=": 2,
- "off": 1,
- "speeds": 4,
- "old=": 1,
- "complete=": 1,
- "old": 2,
- "linear": 1,
- "cos": 1,
- "options=": 1,
- "prop=": 3,
- "orig=": 1,
- "orig": 3,
- "step": 7,
- "startTime=": 1,
- "start=": 1,
- "end=": 1,
- "unit=": 1,
- "unit": 1,
- "now=": 1,
- "pos=": 1,
- "state=": 1,
- "co=": 2,
- "tick": 3,
- "show=": 1,
- "hide=": 1,
- "e.duration": 3,
- "this.startTime": 2,
- "this.now": 3,
- "this.end": 2,
- "this.pos": 4,
- "this.state": 3,
- "this.update": 2,
- "e.animatedProperties": 5,
- "this.prop": 2,
- "e.overflow": 2,
- "f.support.shrinkWrapBlocks": 1,
- "e.hide": 2,
- "e.show": 1,
- "e.orig": 1,
- "e.complete.call": 1,
- "Infinity": 1,
- "h/e.duration": 1,
- "f.easing": 1,
- "this.start": 2,
- "*this.pos": 1,
- "f.timers": 2,
- "a.splice": 1,
- "f.fx.stop": 1,
- "slow": 1,
- "fast": 1,
- "a.elem": 2,
- "a.now": 4,
- "a.elem.style": 3,
- "a.prop": 5,
- "a.unit": 1,
- "f.expr.filters.animated": 1,
- "b.elem": 1,
- "cw": 1,
- "able": 1,
- "f.fn.offset": 2,
- "f.offset.setOffset": 2,
- "b.ownerDocument.body": 2,
- "f.offset.bodyOffset": 2,
- "b.getBoundingClientRect": 1,
- "e.documentElement": 4,
- "c.top": 4,
- "c.left": 4,
- "e.body": 3,
- "g.clientTop": 1,
- "h.clientTop": 1,
- "g.clientLeft": 1,
- "h.clientLeft": 1,
- "i.pageYOffset": 1,
- "g.scrollTop": 1,
- "h.scrollTop": 2,
- "i.pageXOffset": 1,
- "g.scrollLeft": 1,
- "h.scrollLeft": 2,
- "f.offset.initialize": 3,
- "b.offsetParent": 2,
- "g.documentElement": 1,
- "g.body": 1,
- "g.defaultView": 1,
- "j.getComputedStyle": 2,
- "b.currentStyle": 2,
- "b.offsetTop": 2,
- "b.offsetLeft": 2,
- "f.offset.supportsFixedPosition": 2,
- "k.position": 4,
- "b.scrollTop": 1,
- "b.scrollLeft": 1,
- "f.offset.doesNotAddBorder": 1,
- "f.offset.doesAddBorderForTableAndCells": 1,
- "cw.test": 1,
- "c.borderTopWidth": 2,
- "c.borderLeftWidth": 2,
- "f.offset.subtractsBorderForOverflowNotVisible": 1,
- "c.overflow": 1,
- "i.offsetTop": 1,
- "i.offsetLeft": 1,
- "i.scrollTop": 1,
- "i.scrollLeft": 1,
- "f.offset": 1,
- "b.style": 1,
- "d.nextSibling.firstChild.firstChild": 1,
- "this.doesNotAddBorder": 1,
- "e.offsetTop": 4,
- "this.doesAddBorderForTableAndCells": 1,
- "h.offsetTop": 1,
- "e.style.position": 2,
- "e.style.top": 2,
- "this.supportsFixedPosition": 1,
- "d.style.overflow": 1,
- "d.style.position": 1,
- "this.subtractsBorderForOverflowNotVisible": 1,
- "this.doesNotIncludeMarginInBodyOffset": 1,
- "a.offsetTop": 2,
- "bodyOffset": 1,
- "a.offsetLeft": 1,
- "f.offset.doesNotIncludeMarginInBodyOffset": 1,
- "setOffset": 1,
- "a.style.position": 1,
- "e.offset": 1,
- "e.position": 1,
- "l.top": 1,
- "l.left": 1,
- "b.top": 2,
- "k.top": 1,
- "g.top": 1,
- "b.left": 2,
- "k.left": 1,
- "g.left": 1,
- "b.using.call": 1,
- "e.css": 1,
- "this.offsetParent": 2,
- "cx.test": 2,
- "b.offset": 1,
- "d.top": 2,
- "d.left": 2,
- "offsetParent": 1,
- "a.offsetParent": 1,
- "g.document.documentElement": 1,
- "g.document.body": 1,
- "g.scrollTo": 1,
- ".scrollLeft": 1,
- ".scrollTop": 1,
- "e.document.documentElement": 1,
- "e.document.compatMode": 1,
- "e.document.body": 1,
- "this.css": 1,
- "cubes": 4,
- "math": 4,
- "num": 23,
- "opposite": 6,
- "race": 4,
- "square": 10,
- "__slice": 2,
- "Math.sqrt": 2,
- "cube": 2,
- "runners": 6,
- "winner": 6,
- "__slice.call": 2,
- "print": 2,
- "elvis": 4,
- "_i": 10,
- "_len": 6,
- "_results": 6,
- "_results.push": 2,
- "math.cube": 2,
- "console.log": 3,
- "KEYWORDS": 2,
- "array_to_hash": 11,
- "RESERVED_WORDS": 2,
- "KEYWORDS_BEFORE_EXPRESSION": 2,
- "KEYWORDS_ATOM": 2,
- "OPERATOR_CHARS": 1,
- "characters": 6,
- "RE_HEX_NUMBER": 1,
- "RE_OCT_NUMBER": 1,
- "RE_DEC_NUMBER": 1,
- "OPERATORS": 2,
- "WHITESPACE_CHARS": 2,
- "PUNC_BEFORE_EXPRESSION": 2,
- "PUNC_CHARS": 1,
- "REGEXP_MODIFIERS": 1,
- "UNICODE": 1,
- "non_spacing_mark": 1,
- "space_combining_mark": 1,
- "connector_punctuation": 1,
- "is_letter": 3,
- "UNICODE.letter.test": 1,
- "is_digit": 3,
- "ch.charCodeAt": 1,
- "//XXX": 1,
- "out": 1,
- "means": 1,
- "than": 3,
- "is_alphanumeric_char": 3,
- "is_unicode_combining_mark": 2,
- "UNICODE.non_spacing_mark.test": 1,
- "UNICODE.space_combining_mark.test": 1,
- "is_unicode_connector_punctuation": 2,
- "UNICODE.connector_punctuation.test": 1,
- "is_identifier_start": 2,
- "is_identifier_char": 1,
- "zero": 2,
- "joiner": 2,
- "": 1,
- "": 1,
- "my": 1,
- "ECMA": 1,
- "PDF": 1,
- "parse_js_number": 2,
- "RE_HEX_NUMBER.test": 1,
- "num.substr": 2,
- "RE_OCT_NUMBER.test": 1,
- "RE_DEC_NUMBER.test": 1,
- "JS_Parse_Error": 2,
- "message": 5,
- "this.col": 2,
- "ex": 3,
- "ex.name": 1,
- "this.stack": 2,
- "ex.stack": 1,
- "JS_Parse_Error.prototype.toString": 1,
- "js_error": 2,
- "is_token": 1,
- "token": 5,
- "token.type": 1,
- "token.value": 1,
- "EX_EOF": 3,
- "tokenizer": 2,
- "TEXT": 1,
- "TEXT.replace": 1,
- "uFEFF/": 1,
- "tokpos": 1,
- "tokline": 1,
- "tokcol": 1,
- "newline_before": 1,
- "regex_allowed": 1,
- "comments_before": 1,
- "peek": 5,
- "S.text.charAt": 2,
- "S.pos": 4,
- "signal_eof": 4,
- "S.newline_before": 3,
- "S.line": 2,
- "S.col": 3,
- "eof": 6,
- "S.peek": 1,
- "what": 2,
- "S.text.indexOf": 1,
- "start_token": 1,
- "S.tokline": 3,
- "S.tokcol": 3,
- "S.tokpos": 3,
- "is_comment": 2,
- "S.regex_allowed": 1,
- "HOP": 5,
- "UNARY_POSTFIX": 1,
- "nlb": 1,
- "ret.comments_before": 1,
- "S.comments_before": 2,
- "skip_whitespace": 1,
- "read_while": 2,
- "pred": 2,
- "parse_error": 3,
- "err": 5,
- "read_num": 1,
- "prefix": 6,
- "has_e": 3,
- "after_e": 5,
- "has_x": 5,
- "has_dot": 3,
- "valid": 4,
- "read_escaped_char": 1,
- "hex_bytes": 3,
- "digit": 3,
- "<<": 4,
- "read_string": 1,
- "with_eof_error": 1,
- "comment1": 1,
- "Unterminated": 2,
- "multiline": 1,
- "comment2": 1,
- "WARNING": 1,
- "***": 1,
- "Found": 1,
- "warn": 3,
- "tok": 1,
- "read_name": 1,
- "backslash": 2,
- "Expecting": 1,
- "UnicodeEscapeSequence": 1,
- "uXXXX": 1,
- "Unicode": 1,
- "identifier": 1,
- "regular": 1,
- "regexp": 5,
- "operator": 14,
- "punc": 27,
- "atom": 5,
- "keyword": 11,
- "Unexpected": 3,
- "void": 1,
- "<\",>": 1,
- "<=\",>": 1,
- "debugger": 2,
- "outside": 2,
- "const": 2,
- "stat": 1,
- "Label": 1,
- "without": 1,
- "statement": 1,
- "inside": 3,
- "defun": 1,
- "Name": 1,
- "Missing": 1,
- "catch/finally": 1,
- "blocks": 1,
- "unary": 2,
- "dot": 2,
- "postfix": 1,
- "Invalid": 2,
- "binary": 1,
- "conditional": 1,
- "assign": 1,
- "assignment": 1,
- "seq": 1,
- "member": 2,
- "array.length": 1,
- "Object.prototype.hasOwnProperty.call": 1,
- "exports.tokenizer": 1,
- "exports.parse": 1,
- "parse": 1,
- "exports.slice": 1,
- "exports.curry": 1,
- "curry": 1,
- "exports.member": 1,
- "exports.array_to_hash": 1,
- "exports.PRECEDENCE": 1,
- "PRECEDENCE": 1,
- "exports.KEYWORDS_ATOM": 1,
- "exports.RESERVED_WORDS": 1,
- "exports.KEYWORDS": 1,
- "exports.ATOMIC_START_TOKEN": 1,
- "ATOMIC_START_TOKEN": 1,
- "exports.OPERATORS": 1,
- "exports.is_alphanumeric_char": 1,
- "exports.set_logger": 1,
- "logger": 2,
- "rdigit": 1,
- "readyList.resolveWith": 1,
- "jQuery._Deferred": 3,
- "breaking": 1,
- "Promise": 1,
- "promiseMethods": 3,
- "Static": 1,
- "sliceDeferred": 1,
- "Create": 1,
- "doing": 3,
- "flag": 1,
- "cancelled": 5,
- "f1": 1,
- "f2": 1,
- "...": 1,
- "_fired": 5,
- "deferred.done.apply": 2,
- "callbacks.push": 1,
- "deferred.resolveWith": 5,
- "given": 3,
- "available": 1,
- "#8421": 1,
- "callbacks.shift": 1,
- "Has": 1,
- "resolved": 1,
- "Cancel": 1,
- "Full": 1,
- "fledged": 1,
- "two": 1,
- "func": 3,
- "failDeferred": 1,
- "errorDeferred": 1,
- "doneCallbacks": 2,
- "failCallbacks": 2,
- "deferred.done": 2,
- ".fail": 2,
- ".fail.apply": 1,
- "failDeferred.done": 1,
- "failDeferred.resolveWith": 1,
- "failDeferred.resolve": 1,
- "failDeferred.isResolved": 1,
- "fnDone": 2,
- "fnFail": 2,
- "jQuery.Deferred": 1,
- "newDefer": 3,
- "action": 3,
- "returned": 4,
- "fn.apply": 1,
- "returned.promise": 2,
- "newDefer.resolve": 1,
- "newDefer.reject": 1,
- "provided": 1,
- "aspect": 1,
- "added": 1,
- "promiseMethods.length": 1,
- "failDeferred.cancel": 1,
- "deferred.cancel": 2,
- "Unexpose": 1,
- "Call": 1,
- "func.call": 1,
- "helper": 1,
- "firstParam": 6,
- "count": 4,
- "<=>": 1,
- "resolveFunc": 2,
- "sliceDeferred.call": 2,
- "Strange": 1,
- "FF4": 1,
- "Values": 1,
- "onto": 2,
- "sometimes": 1,
- ".when": 1,
- "Cloning": 2,
- "into": 2,
- "fresh": 1,
- "solves": 1,
- "issue": 1,
- "deferred.reject": 1,
- "deferred.promise": 1,
- "jQuery.support": 1,
- "bodyStyle": 1,
- "Preliminary": 1,
- "div.setAttribute": 1,
- "automatically": 2,
- "inserted": 1,
- "insert": 1,
- "tables": 1,
- "serialized": 3,
- "correctly": 1,
- "innerHTML": 1,
- "This": 3,
- "requires": 1,
- "wrapper": 1,
- "URLs": 1,
- "opt.selected": 1,
- "setAttribute": 1,
- "class.": 1,
- "works": 1,
- "attrFixes": 1,
- "get/setAttribute": 1,
- "ie6/7": 1,
- "div.className": 1,
- "later": 1,
- "properly": 2,
- "cloned": 1,
- "input.checked": 1,
- "support.noCloneChecked": 1,
- "input.cloneNode": 1,
- "selects": 1,
- "Internet": 1,
- "Explorer": 1,
- "div.test": 1,
- "support.deleteExpando": 1,
- "div.addEventListener": 1,
- "div.attachEvent": 2,
- "div.fireEvent": 1,
- "shouldn": 2,
- "GC": 2,
- "references": 1,
- "across": 1,
- "boundary": 1,
- "attached": 1,
- "occur": 1,
- "defining": 1,
- "allows": 1,
- "shortcut": 1,
- "same": 1,
- "path": 5,
- "Avoid": 1,
- "trying": 1,
- "since": 1,
- "ends": 1,
- "jQuery.uuid": 1,
- "TODO": 2,
- "hack": 2,
- "ONLY.": 2,
- "Avoids": 2,
- "exposing": 2,
- "metadata": 2,
- "plain": 2,
- "jQuery.noop": 2,
- "An": 1,
- "key/value": 1,
- "pair": 1,
- "shallow": 1,
- "copied": 1,
- "existing": 1,
- "Internal": 1,
- "separate": 1,
- "destroy": 1,
- "had": 1,
- "thing": 2,
- "internalCache": 3,
- "Browsers": 1,
- "deletion": 1,
- "refuse": 1,
- "browsers": 2,
- "faster": 1,
- "iterating": 1,
- "persist": 1,
- "existed": 1,
- "jQuery.isNaN": 1,
- "Normalize": 1,
- "jQuery.attrFix": 2,
- "formHook": 3,
- "forms": 1,
- "rinvalidChar.test": 1,
- "jQuery.support.getSetAttribute": 1,
- "elem.removeAttributeNode": 1,
- "elem.getAttributeNode": 1,
- "bubbling": 1,
- "live.": 2,
- "hasDuplicate": 1,
- "baseHasDuplicate": 2,
- "rBackslash": 1,
- "rNonWord": 1,
- "Sizzle": 1,
- "results": 4,
- "seed": 1,
- "origContext": 1,
- "context.nodeType": 2,
- "checkSet": 1,
- "extra": 1,
- "pop": 1,
- "prune": 1,
- "contextXML": 1,
- "Sizzle.isXML": 1,
- "soFar": 1,
- "Reset": 1,
- "util": 1,
- "require": 9,
- "net": 1,
- "stream": 1,
- "EventEmitter": 3,
- ".EventEmitter": 1,
- "FreeList": 2,
- ".FreeList": 1,
- "HTTPParser": 2,
- "process.binding": 1,
- ".HTTPParser": 1,
- "assert": 8,
- ".ok": 1,
- "END_OF_FILE": 3,
- "debug": 15,
- "process.env.NODE_DEBUG": 2,
- "/http/.test": 1,
- "console.error": 3,
- "parserOnHeaders": 2,
- "this.maxHeaderPairs": 2,
- "this._headers.length": 1,
- "this._headers": 13,
- "this._headers.concat": 1,
- "this._url": 1,
- "parserOnHeadersComplete": 2,
- "parser": 27,
- "info.headers": 1,
- "info.url": 1,
- "parser._headers": 6,
- "parser._url": 4,
- "parser.incoming": 9,
- "IncomingMessage": 4,
- "parser.socket": 4,
- "parser.incoming.httpVersionMajor": 1,
- "info.versionMajor": 2,
- "parser.incoming.httpVersionMinor": 1,
- "info.versionMinor": 2,
- "parser.incoming.httpVersion": 1,
- "parser.incoming.url": 1,
- "headers.length": 2,
- "parser.maxHeaderPairs": 4,
- "parser.incoming._addHeaderLine": 2,
- "info.method": 2,
- "parser.incoming.method": 1,
- "parser.incoming.statusCode": 2,
- "info.statusCode": 1,
- "parser.incoming.upgrade": 4,
- "info.upgrade": 2,
- "skipBody": 3,
- "response": 3,
- "CONNECT": 1,
- "parser.onIncoming": 3,
- "info.shouldKeepAlive": 1,
- "parserOnBody": 2,
- "b.slice": 1,
- "parser.incoming._paused": 2,
- "parser.incoming._pendings.length": 2,
- "parser.incoming._pendings.push": 2,
- "parser.incoming._emitData": 1,
- "parserOnMessageComplete": 2,
- "parser.incoming.complete": 2,
- "parser.incoming.readable": 1,
- "parser.incoming._emitEnd": 1,
- "parser.socket.readable": 1,
- "parser.socket.resume": 1,
- "parsers": 2,
- "HTTPParser.REQUEST": 2,
- "parser.onHeaders": 1,
- "parser.onHeadersComplete": 1,
- "parser.onBody": 1,
- "parser.onMessageComplete": 1,
- "exports.parsers": 1,
- "CRLF": 13,
- "STATUS_CODES": 2,
- "exports.STATUS_CODES": 1,
- "RFC": 16,
- "obsoleted": 1,
- "connectionExpression": 1,
- "/Connection/i": 1,
- "transferEncodingExpression": 1,
- "/Transfer": 1,
- "Encoding/i": 1,
- "closeExpression": 1,
- "/close/i": 1,
- "chunkExpression": 1,
- "/chunk/i": 1,
- "contentLengthExpression": 1,
- "/Content": 1,
- "Length/i": 1,
- "dateExpression": 1,
- "/Date/i": 1,
- "expectExpression": 1,
- "/Expect/i": 1,
- "continueExpression": 1,
- "continue/i": 1,
- "dateCache": 5,
- "utcDate": 2,
- "d.toUTCString": 1,
- "d.getMilliseconds": 1,
- "socket": 26,
- "stream.Stream.call": 2,
- "this.socket": 10,
- "this.connection": 8,
- "this.httpVersion": 1,
- "this.complete": 2,
- "this.headers": 2,
- "this.trailers": 2,
- "this.readable": 1,
- "this._paused": 3,
- "this._pendings": 1,
- "this._endEmitted": 3,
- "this.url": 1,
- "this.method": 2,
- "this.statusCode": 3,
- "this.client": 1,
- "util.inherits": 7,
- "stream.Stream": 2,
- "exports.IncomingMessage": 1,
- "IncomingMessage.prototype.destroy": 1,
- "this.socket.destroy": 3,
- "IncomingMessage.prototype.setEncoding": 1,
- "StringDecoder": 2,
- ".StringDecoder": 1,
- "lazy": 1,
- "this._decoder": 2,
- "IncomingMessage.prototype.pause": 1,
- "this.socket.pause": 1,
- "IncomingMessage.prototype.resume": 1,
- "this.socket.resume": 1,
- "this._emitPending": 1,
- "IncomingMessage.prototype._emitPending": 1,
- "this._pendings.length": 1,
- "process.nextTick": 1,
- "self._paused": 1,
- "self._pendings.length": 2,
- "chunk": 14,
- "self._pendings.shift": 1,
- "Buffer.isBuffer": 2,
- "self._emitData": 1,
- "self.readable": 1,
- "self._emitEnd": 1,
- "IncomingMessage.prototype._emitData": 1,
- "this._decoder.write": 1,
- "string.length": 1,
- "this.emit": 5,
- "IncomingMessage.prototype._emitEnd": 1,
- "IncomingMessage.prototype._addHeaderLine": 1,
- "field": 36,
- "dest": 12,
- "field.toLowerCase": 1,
- ".push": 3,
- "field.slice": 1,
- "OutgoingMessage": 5,
- "this.output": 3,
- "this.outputEncodings": 2,
- "this.writable": 1,
- "this._last": 3,
- "this.chunkedEncoding": 6,
- "this.shouldKeepAlive": 4,
- "this.useChunkedEncodingByDefault": 4,
- "this.sendDate": 3,
- "this._hasBody": 6,
- "this._trailer": 5,
- "this.finished": 4,
- "exports.OutgoingMessage": 1,
- "OutgoingMessage.prototype.destroy": 1,
- "OutgoingMessage.prototype._send": 1,
- "this._headerSent": 5,
- "this._header": 10,
- "this.output.unshift": 1,
- "this.outputEncodings.unshift": 1,
- "this._writeRaw": 2,
- "OutgoingMessage.prototype._writeRaw": 1,
- "data.length": 3,
- "this.connection._httpMessage": 3,
- "this.connection.writable": 3,
- "this.output.length": 5,
- "this._buffer": 2,
- "this.output.shift": 2,
- "this.outputEncodings.shift": 2,
- "this.connection.write": 4,
- "OutgoingMessage.prototype._buffer": 1,
- "this.output.push": 2,
- "this.outputEncodings.push": 2,
- "lastEncoding": 2,
- "lastData": 2,
- "data.constructor": 1,
- "lastData.constructor": 1,
- "OutgoingMessage.prototype._storeHeader": 1,
- "firstLine": 2,
- "sentConnectionHeader": 3,
- "sentContentLengthHeader": 4,
- "sentTransferEncodingHeader": 3,
- "sentDateHeader": 3,
- "sentExpect": 3,
- "messageHeader": 7,
- "store": 3,
- "connectionExpression.test": 1,
- "closeExpression.test": 1,
- "self._last": 4,
- "self.shouldKeepAlive": 4,
- "transferEncodingExpression.test": 1,
- "chunkExpression.test": 1,
- "self.chunkedEncoding": 1,
- "contentLengthExpression.test": 1,
- "dateExpression.test": 1,
- "expectExpression.test": 1,
- "Object.keys": 5,
- "keys.length": 5,
- "value.length": 1,
- "shouldSendKeepAlive": 2,
- "this.agent": 2,
- "this._send": 8,
- "OutgoingMessage.prototype.setHeader": 1,
- "this._headerNames": 5,
- "OutgoingMessage.prototype.getHeader": 1,
- "OutgoingMessage.prototype.removeHeader": 1,
- "OutgoingMessage.prototype._renderHeaders": 1,
- "OutgoingMessage.prototype.write": 1,
- "this._implicitHeader": 2,
- "chunk.length": 2,
- "Buffer.byteLength": 2,
- "len.toString": 2,
- "OutgoingMessage.prototype.addTrailers": 1,
- "OutgoingMessage.prototype.end": 1,
- "hot": 3,
- "this.write": 1,
- "chunk.": 1,
- "this._finish": 2,
- "OutgoingMessage.prototype._finish": 1,
- "ServerResponse": 5,
- "DTRACE_HTTP_SERVER_RESPONSE": 1,
- "ClientRequest": 6,
- "DTRACE_HTTP_CLIENT_REQUEST": 1,
- "OutgoingMessage.prototype._flush": 1,
- "this.socket.writable": 2,
- "XXX": 1,
- "Necessary": 1,
- "this.socket.write": 1,
- "req": 32,
- "OutgoingMessage.call": 2,
- "req.method": 5,
- "req.httpVersionMajor": 2,
- "req.httpVersionMinor": 2,
- "exports.ServerResponse": 1,
- "ServerResponse.prototype.statusCode": 1,
- "onServerResponseClose": 3,
- "this._httpMessage.emit": 2,
- "ServerResponse.prototype.assignSocket": 1,
- "socket._httpMessage": 9,
- "socket.on": 2,
- "this._flush": 1,
- "ServerResponse.prototype.detachSocket": 1,
- "socket.removeListener": 5,
- "ServerResponse.prototype.writeContinue": 1,
- "this._sent100": 2,
- "ServerResponse.prototype._implicitHeader": 1,
- "this.writeHead": 1,
- "ServerResponse.prototype.writeHead": 1,
- "statusCode": 7,
- "reasonPhrase": 4,
- "headerIndex": 4,
- "this._renderHeaders": 3,
- "obj.length": 1,
- "obj.push": 1,
- "statusLine": 2,
- "statusCode.toString": 1,
- "this._expect_continue": 1,
- "this._storeHeader": 2,
- "ServerResponse.prototype.writeHeader": 1,
- "this.writeHead.apply": 1,
- "Agent": 5,
- "self.options": 2,
- "self.requests": 6,
- "self.sockets": 3,
- "self.maxSockets": 1,
- "self.options.maxSockets": 1,
- "Agent.defaultMaxSockets": 2,
- "self.on": 1,
- "port": 29,
- "localAddress": 15,
- ".shift": 1,
- ".onSocket": 1,
- "socket.destroy": 10,
- "self.createConnection": 2,
- "net.createConnection": 3,
- "exports.Agent": 1,
- "Agent.prototype.defaultPort": 1,
- "Agent.prototype.addRequest": 1,
- "this.sockets": 9,
- "this.maxSockets": 1,
- "req.onSocket": 1,
- "this.createSocket": 2,
- "this.requests": 5,
- "Agent.prototype.createSocket": 1,
- "util._extend": 1,
- "options.port": 4,
- "options.host": 4,
- "options.localAddress": 3,
- "onFree": 3,
- "self.emit": 9,
- "s.on": 4,
- "onClose": 3,
- "self.removeSocket": 2,
- "onRemove": 3,
- "s.removeListener": 3,
- "Agent.prototype.removeSocket": 1,
- ".emit": 1,
- "globalAgent": 3,
- "exports.globalAgent": 1,
- "self.agent": 3,
- "options.agent": 3,
- "defaultPort": 3,
- "options.defaultPort": 1,
- "options.hostname": 1,
- "options.setHost": 1,
- "setHost": 2,
- "self.socketPath": 4,
- "options.socketPath": 1,
- "self.method": 3,
- "options.method": 2,
- "self.path": 3,
- "options.path": 2,
- "self.once": 2,
- "options.headers": 7,
- "self.setHeader": 1,
- "this.getHeader": 2,
- "hostHeader": 3,
- "this.setHeader": 2,
- "options.auth": 2,
- "//basic": 1,
- "auth": 1,
- "Buffer": 1,
- "self.useChunkedEncodingByDefault": 2,
- "self._storeHeader": 2,
- "self.getHeader": 1,
- "self._renderHeaders": 1,
- "options.createConnection": 4,
- "self.onSocket": 3,
- "self.agent.addRequest": 1,
- "conn": 3,
- "self._deferToConnect": 1,
- "self._flush": 1,
- "exports.ClientRequest": 1,
- "ClientRequest.prototype._implicitHeader": 1,
- "this.path": 1,
- "ClientRequest.prototype.abort": 1,
- "this._deferToConnect": 3,
- "createHangUpError": 3,
- "error.code": 1,
- "freeParser": 9,
- "parser.socket.onend": 1,
- "parser.socket.ondata": 1,
- "parser.socket.parser": 1,
- "parsers.free": 1,
- "req.parser": 1,
- "socketCloseListener": 2,
- "socket.parser": 3,
- "req.emit": 8,
- "req.res": 8,
- "req.res.readable": 1,
- "req.res.emit": 1,
- "res": 14,
- "req.res._emitPending": 1,
- "res._emitEnd": 1,
- "res.emit": 1,
- "req._hadError": 3,
- "parser.finish": 6,
- "socketErrorListener": 2,
- "err.message": 1,
- "err.stack": 1,
- "socketOnEnd": 1,
- "this._httpMessage": 3,
- "this.parser": 2,
- "socketOnData": 1,
- "parser.execute": 2,
- "bytesParsed": 4,
- "socket.ondata": 3,
- "socket.onend": 3,
- "bodyHead": 4,
- "d.slice": 2,
- "req.listeners": 1,
- "req.upgradeOrConnect": 1,
- "socket.emit": 1,
- "parserOnIncomingClient": 1,
- "shouldKeepAlive": 4,
- "res.upgrade": 1,
- "isHeadResponse": 2,
- "res.statusCode": 1,
- "Clear": 1,
- "upgraded": 1,
- "WebSockets": 1,
- "AGENT": 2,
- "socket.destroySoon": 2,
- "keep": 1,
- "alive": 1,
- "close": 2,
- "free": 1,
- "important": 1,
- "promisy": 1,
- "onSocket": 3,
- "self.socket.writable": 1,
- "self.socket": 5,
- "arguments_": 2,
- "self.socket.once": 1,
- "ClientRequest.prototype.setTimeout": 1,
- "msecs": 4,
- "this.once": 2,
- "emitTimeout": 4,
- "this.socket.setTimeout": 1,
- "this.socket.once": 1,
- "this.setTimeout": 3,
- "sock": 1,
- "ClientRequest.prototype.setNoDelay": 1,
- "ClientRequest.prototype.setSocketKeepAlive": 1,
- "ClientRequest.prototype.clearTimeout": 1,
- "exports.request": 2,
- "url.parse": 1,
- "options.protocol": 3,
- "exports.get": 1,
- "req.end": 1,
- "ondrain": 3,
- "httpSocketSetup": 2,
- "Server": 6,
- "requestListener": 6,
- "net.Server.call": 1,
- "allowHalfOpen": 1,
- "this.addListener": 2,
- "this.httpAllowHalfOpen": 1,
- "connectionListener": 3,
- "net.Server": 1,
- "exports.Server": 1,
- "exports.createServer": 1,
- "outgoing": 2,
- "incoming": 2,
- "abortIncoming": 3,
- "incoming.length": 2,
- "incoming.shift": 2,
- "serverSocketCloseListener": 3,
- "socket.setTimeout": 1,
- "minute": 1,
- "socket.once": 1,
- "parsers.alloc": 1,
- "parser.reinitialize": 1,
- "this.maxHeadersCount": 2,
- "socket.addListener": 2,
- "self.listeners": 2,
- "req.socket": 1,
- "self.httpAllowHalfOpen": 1,
- "socket.writable": 2,
- "socket.end": 2,
- "outgoing.length": 2,
- "._last": 1,
- "socket._httpMessage._last": 1,
- "incoming.push": 1,
- "res.shouldKeepAlive": 1,
- "DTRACE_HTTP_SERVER_REQUEST": 1,
- "outgoing.push": 1,
- "res.assignSocket": 1,
- "res.on": 1,
- "res.detachSocket": 1,
- "res._last": 1,
- "outgoing.shift": 1,
- "m.assignSocket": 1,
- "req.headers": 2,
- "continueExpression.test": 1,
- "res._expect_continue": 1,
- "res.writeContinue": 1,
- "response.": 1,
- "exports._connectionListener": 1,
- "Client": 6,
- "this.host": 1,
- "this.port": 1,
- "maxSockets": 1,
- "Client.prototype.request": 1,
- "self.host": 1,
- "self.port": 1,
- "c.on": 2,
- "exports.Client": 1,
- "module.deprecate": 2,
- "exports.createClient": 1,
- "SHEBANG#!node": 2,
- "http.createServer": 1,
- "res.writeHead": 1,
- "res.end": 1,
- ".listen": 1,
- "window.angular": 1,
- "Animal.name": 1,
- "_super": 4,
- "Snake.name": 1,
- "Horse.name": 1,
- "jshint": 1,
- "Modal": 2,
- "this.": 2,
- ".proxy": 1,
- "this.hide": 1,
- "Modal.prototype": 1,
- "this.isShown": 3,
- ".Event": 1,
- "element.trigger": 1,
- ".addClass": 1,
- "escape.call": 1,
- "backdrop.call": 1,
- "transition": 1,
- ".support.transition": 1,
- "that.": 3,
- "element.hasClass": 1,
- "element.parent": 1,
- "element.appendTo": 1,
- "//don": 1,
- "shown": 2,
- "modal": 4,
- "fade": 4,
- "keyup.dismiss.modal": 2,
- "click.modal.data": 1,
- "api": 1,
- ".extend": 1,
- "target.data": 1,
- "e.preventDefault": 1,
- "target.modal": 1
- },
- "Visual Basic": {
- "VERSION": 1,
- "CLASS": 1,
- "BEGIN": 1,
- "MultiUse": 1,
- "-": 9,
- "NotPersistable": 1,
- "DataBindingBehavior": 1,
- "vbNone": 1,
- "MTSTransactionMode": 1,
- "*************************************************************************************************************************************************************************************************************************************************": 2,
- "Copyright": 1,
- "(": 20,
- "c": 1,
- ")": 20,
- "David": 1,
- "Briant": 1,
- "All": 1,
- "rights": 1,
- "reserved": 1,
- "Option": 1,
- "Explicit": 1,
- "Private": 25,
- "Declare": 3,
- "Function": 5,
- "apiSetProp": 4,
- "Lib": 3,
- "Alias": 3,
- "ByVal": 6,
- "hwnd": 2,
- "As": 34,
- "Long": 10,
- "lpString": 2,
- "String": 13,
- "hData": 1,
- "apiGlobalAddAtom": 3,
- "apiSetForegroundWindow": 1,
- "myMouseEventsForm": 5,
- "fMouseEventsForm": 2,
- "WithEvents": 3,
- "myAST": 3,
- "cTP_AdvSysTray": 2,
- "Attribute": 3,
- "myAST.VB_VarHelpID": 1,
- "myClassName": 2,
- "myWindowName": 2,
- "Const": 9,
- "TEN_MILLION": 1,
- "Single": 1,
- "myListener": 1,
- "VLMessaging.VLMMMFileListener": 1,
- "myListener.VB_VarHelpID": 1,
- "myMMFileTransports": 2,
- "VLMessaging.VLMMMFileTransports": 1,
- "myMMFileTransports.VB_VarHelpID": 1,
- "myMachineID": 1,
- "myRouterSeed": 1,
- "myRouterIDsByMMTransportID": 1,
- "New": 6,
- "Dictionary": 3,
- "myMMTransportIDsByRouterID": 2,
- "myDirectoryEntriesByIDString": 1,
- "GET_ROUTER_ID": 1,
- "GET_ROUTER_ID_REPLY": 1,
- "REGISTER_SERVICE": 1,
- "REGISTER_SERVICE_REPLY": 1,
- "UNREGISTER_SERVICE": 1,
- "UNREGISTER_SERVICE_REPLY": 1,
- "GET_SERVICES": 1,
- "GET_SERVICES_REPLY": 1,
- "Initialize": 1,
- "/": 1,
- "Release": 1,
- "hide": 1,
- "us": 1,
- "from": 2,
- "the": 7,
- "Applications": 1,
- "list": 1,
- "in": 1,
- "Windows": 1,
- "Task": 1,
- "Manager": 1,
- "App.TaskVisible": 1,
- "False": 1,
- "create": 1,
- "tray": 1,
- "icon": 1,
- "Set": 5,
- "myAST.create": 1,
- "myMouseEventsForm.icon": 1,
- "make": 1,
- "myself": 1,
- "easily": 2,
- "found": 1,
- "myMouseEventsForm.hwnd": 3,
- "End": 11,
- "Sub": 9,
- "shutdown": 1,
- "myAST.destroy": 1,
- "Nothing": 2,
- "Unload": 1,
- "myAST_RButtonUp": 1,
- "Dim": 1,
- "epm": 1,
- "cTP_EasyPopupMenu": 1,
- "menuItemSelected": 1,
- "epm.addMenuItem": 3,
- "MF_STRING": 3,
- "epm.addSubmenuItem": 2,
- "MF_SEPARATOR": 1,
- "MF_CHECKED": 1,
- "route": 2,
- "to": 4,
- "a": 4,
- "remote": 1,
- "machine": 1,
- "Else": 1,
- "for": 4,
- "moment": 1,
- "just": 1,
- "between": 1,
- "MMFileTransports": 1,
- "If": 4,
- "myMMTransportIDsByRouterID.Exists": 1,
- "message.toAddress.RouterID": 2,
- "Then": 1,
- "transport": 1,
- "transport.send": 1,
- "messageToBytes": 1,
- "message": 1,
- "directoryEntryIDString": 2,
- "serviceType": 2,
- "address": 1,
- "VLMAddress": 1,
- "&": 7,
- "address.MachineID": 1,
- "address.RouterID": 1,
- "address.AgentID": 1,
- "myMMFileTransports_disconnecting": 1,
- "id": 1,
- "oReceived": 2,
- "Boolean": 1,
- "True": 1,
- "@Code": 1,
- "ViewData": 1,
- "Code": 1,
- "@section": 1,
- "featured": 1,
- "": 1,
- "class=": 7,
- "": 1,
- "": 1,
- "": 1,
- "@ViewData": 2,
- ".": 3,
- "
": 1,
- "": 1,
- "
": 1,
- "": 1,
- "": 1,
- "To": 1,
- "learn": 1,
- "more": 4,
- "about": 2,
- "ASP.NET": 5,
- "MVC": 4,
- "visit": 2,
- "": 5,
- "href=": 5,
- "title=": 2,
- "http": 1,
- "//asp.net/mvc": 1,
- "": 5,
- "The": 1,
- "page": 1,
- "features": 3,
- "": 1,
- "videos": 1,
- "tutorials": 1,
- "and": 6,
- "samples": 1,
- "": 1,
- "help": 1,
- "you": 4,
- "get": 1,
- "most": 1,
- "MVC.": 1,
- "have": 1,
- "any": 1,
- "questions": 1,
- "our": 1,
- "forums": 1,
- "
": 1,
- "": 1,
- " ": 1,
- "Section": 1,
- "": 1,
- "We": 1,
- "suggest": 1,
- "following": 1,
- "
": 1,
- "": 1,
- "- ": 3,
- "
": 3,
- "Getting": 1,
- "Started": 1,
- "
": 3,
- "gives": 2,
- "powerful": 1,
- "patterns": 1,
- "based": 1,
- "way": 1,
- "build": 1,
- "dynamic": 1,
- "websites": 1,
- "that": 5,
- "enables": 1,
- "clean": 1,
- "separation": 1,
- "of": 2,
- "concerns": 1,
- "full": 1,
- "control": 1,
- "over": 1,
- "markup": 1,
- "enjoyable": 1,
- "agile": 1,
- "development.": 1,
- "includes": 1,
- "many": 1,
- "enable": 1,
- "fast": 1,
- "TDD": 1,
- "friendly": 1,
- "development": 1,
- "creating": 1,
- "sophisticated": 1,
- "applications": 1,
- "use": 1,
- "latest": 1,
- "web": 2,
- "standards.": 1,
- "Learn": 3,
- " ": 3,
- "Add": 1,
- "NuGet": 2,
- "packages": 1,
- "jump": 1,
- "start": 1,
- "your": 2,
- "coding": 1,
- "makes": 1,
- "it": 1,
- "easy": 1,
- "install": 1,
- "update": 1,
- "free": 1,
- "libraries": 1,
- "tools.": 1,
- "Find": 1,
- "Web": 1,
- "Hosting": 1,
- "You": 1,
- "can": 1,
- "find": 1,
- "hosting": 1,
- "company": 1,
- "offers": 1,
- "right": 1,
- "mix": 1,
- "price": 1,
- "applications.": 1,
- "
": 1,
- "Module": 2,
- "Module1": 1,
- "Main": 1,
- "Console.Out.WriteLine": 2
- },
- "GAP": {
- "#############################################################################": 63,
- "##": 766,
- "Magic.gi": 1,
- "AutoDoc": 4,
- "package": 10,
- "Copyright": 6,
- "Max": 2,
- "Horn": 2,
- "JLU": 2,
- "Giessen": 2,
- "Sebastian": 2,
- "Gutsche": 2,
- "University": 4,
- "of": 114,
- "Kaiserslautern": 2,
- "BindGlobal": 7,
- "(": 721,
- "function": 37,
- "str": 8,
- "suffix": 3,
- ")": 722,
- "local": 16,
- "n": 31,
- "m": 8,
- ";": 569,
- "Length": 14,
- "return": 41,
- "and": 102,
- "{": 21,
- "[": 145,
- "-": 67,
- "+": 9,
- "]": 169,
- "}": 21,
- "end": 34,
- "i": 25,
- "while": 5,
- "<": 17,
- "do": 18,
- "od": 15,
- "if": 103,
- "then": 128,
- "fi": 91,
- "d": 16,
- "tmp": 20,
- "not": 49,
- "IsDirectoryPath": 1,
- "CreateDir": 2,
- "#": 73,
- "Note": 3,
- "is": 72,
- "currently": 1,
- "undocumented": 1,
- "fail": 18,
- "Error": 7,
- "LastSystemError": 1,
- ".message": 1,
- "false": 7,
- "true": 21,
- "pkg": 32,
- "subdirs": 2,
- "extensions": 1,
- "d_rel": 6,
- "files": 4,
- "result": 9,
- "for": 53,
- "in": 64,
- "DirectoriesPackageLibrary": 2,
- "IsEmpty": 6,
- "continue": 3,
- "Directory": 5,
- "DirectoryContents": 1,
- "Sort": 1,
- "AUTODOC_GetSuffix": 2,
- "IsReadableFile": 2,
- "Filename": 8,
- "Add": 4,
- "Make": 1,
- "this": 15,
- "callable": 1,
- "with": 24,
- "the": 136,
- "package_name": 1,
- "AutoDocWorksheet.": 1,
- "Which": 1,
- "will": 5,
- "create": 1,
- "a": 113,
- "worksheet": 1,
- "InstallGlobalFunction": 5,
- "arg": 16,
- "package_info": 3,
- "opt": 3,
- "scaffold": 12,
- "gapdoc": 7,
- "maketest": 12,
- "autodoc": 8,
- "pkg_dir": 5,
- "doc_dir": 18,
- "doc_dir_rel": 3,
- "title_page": 7,
- "tree": 8,
- "is_worksheet": 13,
- "position_document_class": 7,
- "gapdoc_latex_option_record": 4,
- "LowercaseString": 3,
- "rec": 20,
- "DirectoryCurrent": 1,
- "else": 25,
- "PackageInfo": 1,
- "key": 3,
- "val": 4,
- "ValueOption": 1,
- "opt.": 1,
- "IsBound": 39,
- "opt.dir": 4,
- "elif": 21,
- "IsString": 7,
- "or": 13,
- "IsDirectory": 1,
- "AUTODOC_CreateDirIfMissing": 1,
- "Print": 24,
- "opt.scaffold": 5,
- "package_info.AutoDoc": 3,
- "IsRecord": 7,
- "IsBool": 4,
- "AUTODOC_APPEND_RECORD_WRITEONCE": 3,
- "AUTODOC_WriteOnce": 10,
- "opt.autodoc": 5,
- "Concatenation": 15,
- "package_info.Dependencies.NeededOtherPackages": 1,
- "package_info.Dependencies.SuggestedOtherPackages": 1,
- "ForAny": 1,
- "x": 14,
- "autodoc.files": 7,
- "autodoc.scan_dirs": 5,
- "autodoc.level": 3,
- "PushOptions": 1,
- "level_value": 1,
- "Append": 2,
- "AUTODOC_FindMatchingFiles": 2,
- "opt.gapdoc": 5,
- "opt.maketest": 4,
- "gapdoc.main": 8,
- "package_info.PackageDoc": 3,
- ".BookName": 2,
- "gapdoc.bookname": 4,
- "#Print": 1,
- "gapdoc.files": 9,
- "gapdoc.scan_dirs": 3,
- "Set": 1,
- "Number": 1,
- "ListWithIdenticalEntries": 1,
- "List": 6,
- "f": 11,
- "DocumentationTree": 1,
- "autodoc.section_intros": 2,
- "AUTODOC_PROCESS_INTRO_STRINGS": 1,
- "Tree": 2,
- "AutoDocScanFiles": 1,
- "PackageName": 2,
- "scaffold.TitlePage": 4,
- "scaffold.TitlePage.Title": 2,
- ".TitlePage.Title": 2,
- "Position": 2,
- "Remove": 2,
- "JoinStringsWithSeparator": 1,
- "ReplacedString": 2,
- "Syntax": 1,
- "scaffold.document_class": 7,
- "PositionSublist": 5,
- "GAPDoc2LaTeXProcs.Head": 14,
- "..": 6,
- "scaffold.latex_header_file": 2,
- "StringFile": 2,
- "scaffold.gapdoc_latex_options": 4,
- "RecNames": 1,
- "scaffold.gapdoc_latex_options.": 5,
- "IsList": 1,
- "scaffold.includes": 4,
- "scaffold.bib": 7,
- "Unbind": 1,
- "scaffold.main_xml_file": 2,
- ".TitlePage": 1,
- "ExtractTitleInfoFromPackageInfo": 1,
- "CreateTitlePage": 1,
- "scaffold.MainPage": 2,
- "scaffold.dir": 1,
- "scaffold.book_name": 1,
- "CreateMainPage": 1,
- "WriteDocumentation": 1,
- "SetGapDocLaTeXOptions": 1,
- "MakeGAPDocDoc": 1,
- "CopyHTMLStyleFiles": 1,
- "GAPDocManualLab": 1,
- "maketest.folder": 3,
- "maketest.scan_dir": 3,
- "CreateMakeTest": 1,
- "#W": 4,
- "example.gd": 2,
- "This": 10,
- "file": 7,
- "contains": 7,
- "sample": 2,
- "GAP": 15,
- "declaration": 1,
- "file.": 3,
- "DeclareProperty": 2,
- "IsLeftModule": 6,
- "DeclareGlobalFunction": 5,
- "#C": 7,
- "IsQuuxFrobnicator": 1,
- "": 3,
- "": 28,
- "": 7,
- "Name=": 33,
- "Arg=": 33,
- "Type=": 7,
- "": 28,
- "Tests": 1,
- "whether": 5,
- "R": 5,
- "quux": 1,
- "frobnicator.": 1,
- " ": 28,
- " ": 28,
- "DeclareSynonym": 17,
- "IsField": 1,
- "IsGroup": 1,
- "Magic.gd": 1,
- "SHEBANG#!#! @Description": 1,
- "SHEBANG#!#! This": 1,
- "SHEBANG#!#! any": 1,
- "SHEBANG#!#! ": 1,
- "SHEBANG#!#! - ": 5,
- "SHEBANG#!#! It": 3,
- "SHEBANG#!#! That": 1,
- "SHEBANG#!#! of": 1,
- "SHEBANG#!#! (with": 1,
- "SHEBANG#!#! main": 1,
- "SHEBANG#!#! XML": 1,
- "SHEBANG#!#! other": 1,
- "SHEBANG#!#! as": 1,
- "SHEBANG#!#! to": 2,
- "SHEBANG#!#! Secondly,": 1,
- "SHEBANG#!#! page": 1,
- "SHEBANG#!#! (name,": 1,
- "SHEBANG#!#! on": 1,
- "SHEBANG#!Item>": 25,
- "SHEBANG#!#! tags": 1,
- "SHEBANG#!#! This": 1,
- "SHEBANG#!#! produce": 1,
- "SHEBANG#!#! MathJaX": 1,
- "SHEBANG#!#! generated": 1,
- "SHEBANG#!#! this,": 1,
- "SHEBANG#!#! supplementary": 1,
- "SHEBANG#!#! (see": 1,
- "SHEBANG#!Enum>": 1,
- "SHEBANG#!#! For": 1,
- "SHEBANG#!>": 11,
- "SHEBANG#!#! The": 1,
- "SHEBANG#!#!
": 1,
- "SHEBANG#!Mark>": 22,
- "SHEBANG#!#! The": 2,
- "SHEBANG#!A>": 1,
- "SHEBANG#!#! ": 1,
- "SHEBANG#!#! - ": 4,
- "SHEBANG#!#! This": 4,
- "SHEBANG#!#! Directory()": 1,
- "SHEBANG#!#! (i.e.": 1,
- "SHEBANG#!#!
Default": 1,
- "SHEBANG#!#! for": 1,
- "SHEBANG#!#! The": 3,
- "SHEBANG#!#! record.": 3,
- "SHEBANG#!#! equivalent": 3,
- "SHEBANG#!#! enabled.": 3,
- "SHEBANG#!#! package's": 1,
- "SHEBANG#!#! In": 3,
- "SHEBANG#!K>),": 3,
- "SHEBANG#!#! If": 3,
- "####": 34,
- "TODO": 3,
- "mention": 1,
- "merging": 1,
- "PackageInfo.AutoDoc": 1,
- "SHEBANG#!#! ": 3,
- "SHEBANG#!#! - ": 13,
- "SHEBANG#!#! A": 6,
- "SHEBANG#!#! If": 2,
- "SHEBANG#!#! your": 1,
- "SHEBANG#!#! you": 1,
- "SHEBANG#!#! to": 4,
- "SHEBANG#!#! is": 1,
- "SHEBANG#!#! of": 2,
- "SHEBANG#!#! This": 3,
- "SHEBANG#!#! i.e.": 1,
- "SHEBANG#!#! The": 2,
- "SHEBANG#!#! then": 1,
- "The": 21,
- "param": 1,
- "bit": 2,
- "strange.": 1,
- "We": 4,
- "should": 2,
- "probably": 2,
- "change": 1,
- "it": 8,
- "to": 37,
- "be": 24,
- "more": 3,
- "general": 1,
- "as": 23,
- "one": 11,
- "might": 1,
- "want": 1,
- "define": 2,
- "other": 4,
- "entities...": 1,
- "For": 10,
- "now": 1,
- "we": 3,
- "document": 1,
- "leave": 1,
- "us": 1,
- "choice": 1,
- "revising": 1,
- "how": 1,
- "works.": 1,
- "": 2,
- "": 117,
- "entities": 2,
- "": 117,
- "": 2,
- "
- ": 2,
- "A": 9,
- "list": 16,
- "names": 1,
- "which": 8,
- "are": 14,
- "used": 10,
- "corresponding": 1,
- "XML": 4,
- "entities.": 1,
- "example": 3,
- "set": 6,
- "containing": 1,
- "string": 6,
- "
": 2,
- "SomePackage": 3,
- "
": 2,
- "following": 4,
- "added": 1,
- "preamble": 1,
- "": 2,
- "CDATA": 2,
- "ENTITY": 2,
- " ": 2,
- "allows": 1,
- "you": 3,
- "write": 3,
- "&": 37,
- "amp": 1,
- "your": 1,
- "documentation": 2,
- "reference": 1,
- "that": 39,
- "package.": 2,
- "If": 11,
- "another": 1,
- "type": 2,
- "entity": 1,
- "desired": 1,
- "can": 12,
- "simply": 2,
- "add": 2,
- "instead": 1,
- "two": 13,
- "entry": 2,
- "list.": 2,
- "It": 1,
- "handled": 3,
- "so": 3,
- "please": 1,
- "careful.": 1,
- " ": 2,
- "SHEBANG#!#! for": 1,
- "SHEBANG#!#! statement": 1,
- "SHEBANG#!#! components": 2,
- "SHEBANG#!#! example,": 1,
- "SHEBANG#!#! acknowledgements": 1,
- "SHEBANG#!#! ": 6,
- "SHEBANG#!#! by": 1,
- "SHEBANG#!#! package": 1,
- "SHEBANG#!#! Usually": 2,
- "SHEBANG#!#! are": 2,
- "SHEBANG#!#! Default": 3,
- "SHEBANG#!#! When": 1,
- "SHEBANG#!#! they": 1,
- "Document": 1,
- "section_intros": 2,
- "later": 1,
- "on.": 1,
- "However": 2,
- "note": 2,
- "thanks": 1,
- "new": 2,
- "comment": 1,
- "syntax": 1,
- "only": 5,
- "remaining": 1,
- "use": 5,
- "seems": 1,
- "ability": 1,
- "specify": 3,
- "order": 1,
- "chapters": 1,
- "sections.": 1,
- "TODO.": 1,
- "SHEBANG#!#! files": 1,
- "strictly": 1,
- "speaking": 1,
- "also": 3,
- "scaffold.": 1,
- "uses": 2,
- "scaffolding": 2,
- "mechanism": 4,
- "really": 4,
- "necessary": 2,
- "custom": 1,
- "name": 2,
- "main": 1,
- "Thus": 3,
- "purpose": 1,
- "parameter": 1,
- "cater": 1,
- "packages": 5,
- "have": 3,
- "existing": 1,
- "using": 2,
- "different": 2,
- "wish": 1,
- "scaffolding.": 1,
- "explain": 1,
- "why": 2,
- "allow": 1,
- "specifying": 1,
- "gapdoc.main.": 1,
- "code": 1,
- "still": 1,
- "honor": 1,
- "though": 1,
- "just": 1,
- "case.": 1,
- "SHEBANG#!#! In": 1,
- "part.": 1,
- "Still": 1,
- "under": 1,
- "construction.": 1,
- "SHEBANG#!#! - ": 1,
- "SHEBANG#!#! The": 1,
- "SHEBANG#!#! a": 1,
- "SHEBANG#!#! which": 1,
- "SHEBANG#!#! the": 1,
- "SHEBANG#!#!
": 1,
- "SHEBANG#!#! - ": 2,
- "SHEBANG#!#! Sets": 1,
- "SHEBANG#!#! A": 1,
- "SHEBANG#!#! will": 1,
- "SHEBANG#!#! @Returns": 1,
- "SHEBANG#!#! @Arguments": 1,
- "SHEBANG#!#! @ChapterInfo": 1,
- "vspc.gd": 1,
- "library": 2,
- "Thomas": 2,
- "Breuer": 2,
- "#Y": 6,
- "C": 11,
- "Lehrstuhl": 2,
- "D": 36,
- "r": 2,
- "Mathematik": 2,
- "RWTH": 2,
- "Aachen": 2,
- "Germany": 2,
- "School": 2,
- "Math": 2,
- "Comp.": 2,
- "Sci.": 2,
- "St": 2,
- "Andrews": 2,
- "Scotland": 2,
- "Group": 3,
- "declares": 1,
- "operations": 2,
- "vector": 67,
- "spaces.": 4,
- "bases": 5,
- "free": 3,
- "left": 15,
- "modules": 1,
- "found": 1,
- "
": 10,
- "lib/basis.gd": 1,
- ".": 257,
- "IsLeftOperatorRing": 1,
- "IsLeftOperatorAdditiveGroup": 2,
- "IsRing": 1,
- "IsAssociativeLOpDProd": 2,
- "#T": 6,
- "IsLeftOperatorRingWithOne": 2,
- "IsRingWithOne": 1,
- "IsLeftVectorSpace": 3,
- "": 38,
- "IsVectorSpace": 26,
- "<#GAPDoc>": 17,
- "Label=": 19,
- "": 12,
- "space": 74,
- " ": 12,
- "module": 2,
- "see": 30,
- "nbsp": 30,
- "": 71,
- "Func=": 40,
- "over": 24,
- "division": 15,
- "ring": 14,
- "Chapter": 3,
- "Chap=": 3,
- "": 23,
- "Whenever": 1,
- "talk": 1,
- "about": 3,
- "an": 17,
- "": 42,
- "F": 61,
- " ": 41,
- "V": 152,
- "additive": 1,
- "group": 2,
- "on": 5,
- "acts": 1,
- "via": 6,
- "multiplication": 1,
- "from": 5,
- "such": 4,
- "action": 4,
- "addition": 1,
- "right": 2,
- "distributive.": 1,
- "accessed": 1,
- "value": 9,
- "attribute": 2,
- "Vector": 1,
- "spaces": 15,
- "always": 1,
- "Filt=": 4,
- "synonyms.": 1,
- "<#/GAPDoc>": 17,
- "IsLeftActedOnByDivisionRing": 4,
- "InstallTrueMethod": 4,
- "IsFreeLeftModule": 3,
- "#F": 17,
- "IsGaussianSpace": 10,
- "": 14,
- "filter": 3,
- "Sect=": 6,
- "row": 17,
- "matrix": 5,
- "field": 12,
- "say": 1,
- "indicates": 3,
- "entries": 8,
- "all": 18,
- "vectors": 16,
- "matrices": 5,
- "respectively": 1,
- "contained": 4,
- "In": 3,
- "case": 2,
- "called": 1,
- "Gaussian": 19,
- "space.": 5,
- "Bases": 1,
- "computed": 2,
- "elimination": 5,
- "given": 4,
- "generators.": 1,
- "": 12,
- "": 12,
- "gap": 41,
- "mats": 5,
- "VectorSpace": 13,
- "Rationals": 13,
- "E": 2,
- "element": 2,
- "extension": 3,
- "Field": 1,
- " ": 12,
- "DeclareFilter": 1,
- "IsFullMatrixModule": 1,
- "IsFullRowModule": 1,
- "IsDivisionRing": 5,
- "": 12,
- "nontrivial": 1,
- "associative": 1,
- "algebra": 2,
- "multiplicative": 1,
- "inverse": 1,
- "each": 2,
- "nonzero": 3,
- "element.": 1,
- "every": 1,
- "possibly": 1,
- "itself": 1,
- "being": 2,
- "thus": 1,
- "property": 2,
- "get": 1,
- "because": 2,
- "usually": 1,
- "represented": 1,
- "coefficients": 3,
- "stored": 1,
- "DeclareSynonymAttr": 4,
- "IsMagmaWithInversesIfNonzero": 1,
- "IsNonTrivial": 1,
- "IsAssociative": 1,
- "IsEuclideanRing": 1,
- "#A": 7,
- "GeneratorsOfLeftVectorSpace": 1,
- "GeneratorsOfVectorSpace": 2,
- "": 7,
- "Attr=": 10,
- "returns": 14,
- "generate": 1,
- "FullRowSpace": 5,
- "GeneratorsOfLeftOperatorAdditiveGroup": 2,
- "CanonicalBasis": 3,
- "supports": 1,
- "canonical": 6,
- "basis": 14,
- "otherwise": 2,
- "": 3,
- " ": 3,
- "returned.": 4,
- "defining": 1,
- "its": 2,
- "uniquely": 1,
- "determined": 1,
- "by": 14,
- "exist": 1,
- "same": 6,
- "acting": 8,
- "domain": 17,
- "equality": 1,
- "these": 5,
- "decided": 1,
- "comparing": 1,
- "bases.": 1,
- "exact": 1,
- "meaning": 1,
- "depends": 1,
- "Canonical": 1,
- "defined": 3,
- "designs": 1,
- "kind": 1,
- "defines": 1,
- "method": 4,
- "installs": 1,
- "must": 6,
- "call": 1,
- "On": 1,
- "hand": 1,
- "install": 1,
- "calls": 1,
- "": 10,
- "CANONICAL_BASIS_FLAGS": 1,
- " ": 9,
- "vecs": 4,
- "B": 16,
- "": 8,
- "3": 5,
- "generators": 16,
- "BasisVectors": 4,
- "DeclareAttribute": 4,
- "IsRowSpace": 2,
- "consists": 7,
- "IsRowModule": 1,
- "IsGaussianRowSpace": 1,
- "scalars": 2,
- "occur": 2,
- "vectors.": 2,
- "calculations.": 2,
- "Otherwise": 3,
- "non": 4,
- "Gaussian.": 2,
- "need": 3,
- "flag": 2,
- "down": 2,
- "methods": 4,
- "delegate": 2,
- "ones.": 2,
- "IsNonGaussianRowSpace": 1,
- "expresses": 2,
- "cannot": 2,
- "compute": 3,
- "nice": 4,
- "way.": 2,
- "Let": 4,
- "K": 4,
- "spanned": 4,
- "Then": 1,
- "/": 12,
- "cap": 1,
- "v": 5,
- "replacing": 1,
- "forming": 1,
- "concatenation.": 1,
- "So": 2,
- "associated": 3,
- "DeclareHandlingByNiceBasis": 2,
- "IsMatrixSpace": 2,
- "IsMatrixModule": 1,
- "IsGaussianMatrixSpace": 1,
- "IsNonGaussianMatrixSpace": 1,
- "irrelevant": 1,
- "concatenation": 1,
- "rows": 1,
- "necessarily": 1,
- "NormedRowVectors": 2,
- "normed": 1,
- "finite": 5,
- "those": 1,
- "first": 1,
- "component.": 1,
- "yields": 1,
- "natural": 1,
- "dimensional": 5,
- "subspaces": 17,
- "GF": 22,
- "*Z": 5,
- "Z": 6,
- "Action": 1,
- "GL": 1,
- "OnLines": 1,
- "TrivialSubspace": 2,
- "subspace": 7,
- "zero": 4,
- "triv": 2,
- "0": 2,
- "AsSet": 1,
- "TrivialSubmodule": 1,
- "": 5,
- "": 2,
- "collection": 3,
- "gens": 16,
- "elements": 7,
- "optional": 3,
- "argument": 1,
- "empty.": 1,
- "known": 5,
- "linearly": 3,
- "independent": 3,
- "particular": 1,
- "dimension": 9,
- "immediately": 2,
- "formed": 1,
- "argument.": 1,
- "2": 1,
- "Subspace": 4,
- "generated": 1,
- "SubspaceNC": 2,
- "subset": 4,
- "empty": 1,
- "trivial": 1,
- "parent": 3,
- "returned": 3,
- "does": 1,
- "except": 1,
- "omits": 1,
- "check": 5,
- "both": 2,
- "W": 32,
- "1": 3,
- "Submodule": 1,
- "SubmoduleNC": 1,
- "#O": 2,
- "AsVectorSpace": 4,
- "view": 4,
- "": 2,
- "domain.": 1,
- "form": 2,
- "Oper=": 6,
- "smaller": 1,
- "larger": 1,
- "ring.": 3,
- "Dimension": 6,
- "LeftActingDomain": 29,
- "9": 1,
- "AsLeftModule": 6,
- "AsSubspace": 5,
- "": 6,
- "U": 12,
- "collection.": 1,
- "/2": 4,
- "Parent": 4,
- "DeclareOperation": 2,
- "IsCollection": 3,
- "Intersection2Spaces": 4,
- "": 2,
- "": 2,
- "": 2,
- "takes": 1,
- "arguments": 1,
- "intersection": 5,
- "domains": 3,
- "let": 1,
- "their": 1,
- "intersection.": 1,
- "AsStruct": 2,
- "equal": 1,
- "either": 2,
- "Substruct": 1,
- "common": 1,
- "Struct": 1,
- "cases": 2,
- "basis.": 1,
- "handle": 1,
- "intersections": 1,
- "algebras": 2,
- "ideals": 2,
- "sided": 1,
- "ideals.": 1,
- "": 2,
- "": 2,
- "nonnegative": 2,
- "integer": 2,
- "length": 1,
- "An": 2,
- "alternative": 2,
- "construct": 2,
- "above": 2,
- "FullRowModule": 2,
- "FullMatrixSpace": 2,
- "": 1,
- "positive": 1,
- "integers": 1,
- "fact": 1,
- "FullMatrixModule": 3,
- "IsSubspacesVectorSpace": 9,
- "fixed": 1,
- "lies": 1,
- "category": 1,
- "Subspaces": 8,
- "Size": 5,
- "iter": 17,
- "Iterator": 5,
- "NextIterator": 5,
- "DeclareCategory": 1,
- "IsDomain": 1,
- "#M": 20,
- "IsFinite": 4,
- "Returns": 1,
- "": 1,
- "Called": 2,
- "k": 17,
- "Special": 1,
- "provided": 1,
- "domains.": 1,
- "IsInt": 3,
- "IsSubspace": 3,
- "OrthogonalSpaceInFullRowSpace": 1,
- "complement": 1,
- "full": 2,
- "#P": 1,
- "IsVectorSpaceHomomorphism": 3,
- "