├── .gitignore
├── CONTRIBUTING.md
├── Gruntfile.js
├── LICENSE.md
├── README.md
├── amcharts_3.4.7.free
├── amcharts.js
├── amstock.js
├── exporting
│ ├── amexport.js
│ ├── canvg.js
│ ├── filesaver.js
│ ├── jspdf.js
│ ├── jspdf.plugin.addimage.js
│ └── rgbcolor.js
├── images
│ ├── dragIcon.gif
│ ├── dragIconH.gif
│ ├── eraserIcon.gif
│ ├── eraserIconH.gif
│ ├── export.png
│ ├── lens.png
│ ├── pencilIcon.gif
│ ├── pencilIconH.gif
│ ├── xIcon.gif
│ └── xIconH.gif
├── patterns
│ ├── black
│ │ ├── pattern1.png
│ │ ├── pattern10.png
│ │ ├── pattern11.png
│ │ ├── pattern12.png
│ │ ├── pattern13.png
│ │ ├── pattern14.png
│ │ ├── pattern15.png
│ │ ├── pattern16.png
│ │ ├── pattern17.png
│ │ ├── pattern18.png
│ │ ├── pattern19.png
│ │ ├── pattern2.png
│ │ ├── pattern20.png
│ │ ├── pattern21.png
│ │ ├── pattern3.png
│ │ ├── pattern4.png
│ │ ├── pattern5.png
│ │ ├── pattern6.png
│ │ ├── pattern7.png
│ │ ├── pattern8.png
│ │ └── pattern9.png
│ ├── chalk
│ │ ├── pattern1.jpg
│ │ ├── pattern1r.jpg
│ │ ├── pattern2.jpg
│ │ ├── pattern3.jpg
│ │ ├── pattern4.jpg
│ │ ├── pattern5.jpg
│ │ └── pattern6.jpg
│ └── white
│ │ ├── pattern1.png
│ │ ├── pattern10.png
│ │ ├── pattern11.png
│ │ ├── pattern12.png
│ │ ├── pattern13.png
│ │ ├── pattern14.png
│ │ ├── pattern15.png
│ │ ├── pattern16.png
│ │ ├── pattern17.png
│ │ ├── pattern18.png
│ │ ├── pattern19.png
│ │ ├── pattern2.png
│ │ ├── pattern20.png
│ │ ├── pattern21.png
│ │ ├── pattern3.png
│ │ ├── pattern4.png
│ │ ├── pattern5.png
│ │ ├── pattern6.png
│ │ ├── pattern7.png
│ │ ├── pattern8.png
│ │ └── pattern9.png
├── serial.js
├── style.css
└── themes
│ ├── black.js
│ ├── chalk.js
│ ├── dark.js
│ ├── light.js
│ └── patterns.js
├── demo.html
├── images
├── amchart_screenshot.png
└── logo
│ ├── logo_263x38_PPa11y.png
│ └── logo_347x50_PPa11y.png
├── media
└── SR_amChartsAccessibility.mov
├── node_modules
├── grunt-contrib-uglify
│ ├── LICENSE-MIT
│ ├── README.md
│ ├── node_modules
│ │ ├── .bin
│ │ │ └── uglifyjs
│ │ ├── chalk
│ │ │ ├── index.js
│ │ │ ├── node_modules
│ │ │ │ ├── .bin
│ │ │ │ │ └── strip-ansi
│ │ │ │ ├── ansi-styles
│ │ │ │ │ ├── ansi-styles.js
│ │ │ │ │ ├── package.json
│ │ │ │ │ └── readme.md
│ │ │ │ ├── has-color
│ │ │ │ │ ├── has-color.js
│ │ │ │ │ ├── package.json
│ │ │ │ │ └── readme.md
│ │ │ │ └── strip-ansi
│ │ │ │ │ ├── cli.js
│ │ │ │ │ ├── index.js
│ │ │ │ │ ├── package.json
│ │ │ │ │ └── readme.md
│ │ │ ├── package.json
│ │ │ └── readme.md
│ │ ├── grunt-lib-contrib
│ │ │ ├── .gitattributes
│ │ │ ├── .jshintrc
│ │ │ ├── .npmignore
│ │ │ ├── .travis.yml
│ │ │ ├── AUTHORS
│ │ │ ├── CHANGELOG
│ │ │ ├── Gruntfile.js
│ │ │ ├── LICENSE-MIT
│ │ │ ├── README.md
│ │ │ ├── lib
│ │ │ │ └── contrib.js
│ │ │ ├── node_modules
│ │ │ │ └── zlib-browserify
│ │ │ │ │ ├── .npmignore
│ │ │ │ │ ├── index.js
│ │ │ │ │ ├── package.json
│ │ │ │ │ ├── readme.md
│ │ │ │ │ ├── test
│ │ │ │ │ └── zlib.test.js
│ │ │ │ │ └── zlib.js
│ │ │ ├── package.json
│ │ │ └── test
│ │ │ │ └── lib_test.js
│ │ └── uglify-js
│ │ │ ├── .npmignore
│ │ │ ├── .travis.yml
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── bin
│ │ │ └── uglifyjs
│ │ │ ├── lib
│ │ │ ├── ast.js
│ │ │ ├── compress.js
│ │ │ ├── mozilla-ast.js
│ │ │ ├── output.js
│ │ │ ├── parse.js
│ │ │ ├── scope.js
│ │ │ ├── sourcemap.js
│ │ │ ├── transform.js
│ │ │ └── utils.js
│ │ │ ├── node_modules
│ │ │ ├── async
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── component.json
│ │ │ │ ├── lib
│ │ │ │ │ └── async.js
│ │ │ │ └── package.json
│ │ │ ├── optimist
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE
│ │ │ │ ├── example
│ │ │ │ │ ├── bool.js
│ │ │ │ │ ├── boolean_double.js
│ │ │ │ │ ├── boolean_single.js
│ │ │ │ │ ├── default_hash.js
│ │ │ │ │ ├── default_singles.js
│ │ │ │ │ ├── divide.js
│ │ │ │ │ ├── line_count.js
│ │ │ │ │ ├── line_count_options.js
│ │ │ │ │ ├── line_count_wrap.js
│ │ │ │ │ ├── nonopt.js
│ │ │ │ │ ├── reflect.js
│ │ │ │ │ ├── short.js
│ │ │ │ │ ├── string.js
│ │ │ │ │ ├── usage-options.js
│ │ │ │ │ └── xup.js
│ │ │ │ ├── index.js
│ │ │ │ ├── node_modules
│ │ │ │ │ └── wordwrap
│ │ │ │ │ │ ├── .npmignore
│ │ │ │ │ │ ├── README.markdown
│ │ │ │ │ │ ├── example
│ │ │ │ │ │ ├── center.js
│ │ │ │ │ │ └── meat.js
│ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ └── test
│ │ │ │ │ │ ├── break.js
│ │ │ │ │ │ ├── idleness.txt
│ │ │ │ │ │ └── wrap.js
│ │ │ │ ├── package.json
│ │ │ │ ├── readme.markdown
│ │ │ │ └── test
│ │ │ │ │ ├── _.js
│ │ │ │ │ ├── _
│ │ │ │ │ ├── argv.js
│ │ │ │ │ └── bin.js
│ │ │ │ │ ├── parse.js
│ │ │ │ │ └── usage.js
│ │ │ ├── source-map
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── CHANGELOG.md
│ │ │ │ ├── LICENSE
│ │ │ │ ├── Makefile.dryice.js
│ │ │ │ ├── README.md
│ │ │ │ ├── build
│ │ │ │ │ ├── assert-shim.js
│ │ │ │ │ ├── mini-require.js
│ │ │ │ │ ├── prefix-source-map.jsm
│ │ │ │ │ ├── prefix-utils.jsm
│ │ │ │ │ ├── suffix-browser.js
│ │ │ │ │ ├── suffix-source-map.jsm
│ │ │ │ │ ├── suffix-utils.jsm
│ │ │ │ │ ├── test-prefix.js
│ │ │ │ │ └── test-suffix.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── source-map.js
│ │ │ │ │ └── source-map
│ │ │ │ │ │ ├── array-set.js
│ │ │ │ │ │ ├── base64-vlq.js
│ │ │ │ │ │ ├── base64.js
│ │ │ │ │ │ ├── binary-search.js
│ │ │ │ │ │ ├── source-map-consumer.js
│ │ │ │ │ │ ├── source-map-generator.js
│ │ │ │ │ │ ├── source-node.js
│ │ │ │ │ │ └── util.js
│ │ │ │ ├── node_modules
│ │ │ │ │ └── amdefine
│ │ │ │ │ │ ├── LICENSE
│ │ │ │ │ │ ├── README.md
│ │ │ │ │ │ ├── amdefine.js
│ │ │ │ │ │ ├── intercept.js
│ │ │ │ │ │ └── package.json
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ │ ├── run-tests.js
│ │ │ │ │ └── source-map
│ │ │ │ │ ├── test-api.js
│ │ │ │ │ ├── test-array-set.js
│ │ │ │ │ ├── test-base64-vlq.js
│ │ │ │ │ ├── test-base64.js
│ │ │ │ │ ├── test-binary-search.js
│ │ │ │ │ ├── test-dog-fooding.js
│ │ │ │ │ ├── test-source-map-consumer.js
│ │ │ │ │ ├── test-source-map-generator.js
│ │ │ │ │ ├── test-source-node.js
│ │ │ │ │ ├── test-util.js
│ │ │ │ │ └── util.js
│ │ │ └── uglify-to-browserify
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ └── index.js
│ │ │ ├── package.json
│ │ │ ├── test
│ │ │ ├── compress
│ │ │ │ ├── arrays.js
│ │ │ │ ├── blocks.js
│ │ │ │ ├── concat-strings.js
│ │ │ │ ├── conditionals.js
│ │ │ │ ├── dead-code.js
│ │ │ │ ├── debugger.js
│ │ │ │ ├── drop-unused.js
│ │ │ │ ├── issue-105.js
│ │ │ │ ├── issue-12.js
│ │ │ │ ├── issue-126.js
│ │ │ │ ├── issue-143.js
│ │ │ │ ├── issue-22.js
│ │ │ │ ├── issue-267.js
│ │ │ │ ├── issue-269.js
│ │ │ │ ├── issue-44.js
│ │ │ │ ├── issue-59.js
│ │ │ │ ├── labels.js
│ │ │ │ ├── loops.js
│ │ │ │ ├── negate-iife.js
│ │ │ │ ├── properties.js
│ │ │ │ ├── sequences.js
│ │ │ │ ├── switch.js
│ │ │ │ └── typeof.js
│ │ │ └── run-tests.js
│ │ │ └── tools
│ │ │ └── node.js
│ ├── package.json
│ └── tasks
│ │ ├── lib
│ │ └── uglify.js
│ │ └── uglify.js
└── grunt
│ ├── .npmignore
│ ├── LICENSE-MIT
│ ├── README.md
│ ├── internal-tasks
│ ├── bump.js
│ └── subgrunt.js
│ ├── lib
│ ├── grunt.js
│ ├── grunt
│ │ ├── cli.js
│ │ ├── config.js
│ │ ├── event.js
│ │ ├── fail.js
│ │ ├── file.js
│ │ ├── help.js
│ │ ├── log.js
│ │ ├── option.js
│ │ ├── task.js
│ │ └── template.js
│ └── util
│ │ └── task.js
│ ├── node_modules
│ ├── .bin
│ │ ├── cake
│ │ ├── coffee
│ │ ├── js-yaml
│ │ ├── lodash
│ │ ├── nopt
│ │ ├── rimraf
│ │ └── which
│ ├── async
│ │ ├── .gitmodules
│ │ ├── .npmignore
│ │ ├── LICENSE
│ │ ├── Makefile
│ │ ├── README.md
│ │ ├── index.js
│ │ ├── lib
│ │ │ └── async.js
│ │ └── package.json
│ ├── coffee-script
│ │ ├── .npmignore
│ │ ├── CNAME
│ │ ├── LICENSE
│ │ ├── README
│ │ ├── Rakefile
│ │ ├── bin
│ │ │ ├── cake
│ │ │ └── coffee
│ │ ├── extras
│ │ │ └── jsl.conf
│ │ ├── lib
│ │ │ └── coffee-script
│ │ │ │ ├── browser.js
│ │ │ │ ├── cake.js
│ │ │ │ ├── coffee-script.js
│ │ │ │ ├── command.js
│ │ │ │ ├── grammar.js
│ │ │ │ ├── helpers.js
│ │ │ │ ├── index.js
│ │ │ │ ├── lexer.js
│ │ │ │ ├── nodes.js
│ │ │ │ ├── optparse.js
│ │ │ │ ├── parser.js
│ │ │ │ ├── repl.js
│ │ │ │ ├── rewriter.js
│ │ │ │ └── scope.js
│ │ └── package.json
│ ├── colors
│ │ ├── MIT-LICENSE.txt
│ │ ├── ReadMe.md
│ │ ├── colors.js
│ │ ├── example.html
│ │ ├── example.js
│ │ ├── package.json
│ │ ├── test.js
│ │ └── themes
│ │ │ ├── winston-dark.js
│ │ │ └── winston-light.js
│ ├── dateformat
│ │ ├── Readme.md
│ │ ├── lib
│ │ │ └── dateformat.js
│ │ ├── package.json
│ │ └── test
│ │ │ ├── test_weekofyear.js
│ │ │ └── test_weekofyear.sh
│ ├── eventemitter2
│ │ ├── README.md
│ │ ├── index.js
│ │ ├── lib
│ │ │ └── eventemitter2.js
│ │ └── package.json
│ ├── exit
│ │ ├── .jshintrc
│ │ ├── .npmignore
│ │ ├── .travis.yml
│ │ ├── Gruntfile.js
│ │ ├── LICENSE-MIT
│ │ ├── README.md
│ │ ├── lib
│ │ │ └── exit.js
│ │ ├── package.json
│ │ └── test
│ │ │ ├── exit_test.js
│ │ │ └── fixtures
│ │ │ ├── 10-stderr.txt
│ │ │ ├── 10-stdout-stderr.txt
│ │ │ ├── 10-stdout.txt
│ │ │ ├── 100-stderr.txt
│ │ │ ├── 100-stdout-stderr.txt
│ │ │ ├── 100-stdout.txt
│ │ │ ├── 1000-stderr.txt
│ │ │ ├── 1000-stdout-stderr.txt
│ │ │ ├── 1000-stdout.txt
│ │ │ ├── create-files.sh
│ │ │ ├── log-broken.js
│ │ │ └── log.js
│ ├── findup-sync
│ │ ├── .jshintrc
│ │ ├── .npmignore
│ │ ├── .travis.yml
│ │ ├── Gruntfile.js
│ │ ├── LICENSE-MIT
│ │ ├── README.md
│ │ ├── lib
│ │ │ └── findup-sync.js
│ │ ├── node_modules
│ │ │ ├── glob
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── examples
│ │ │ │ │ ├── g.js
│ │ │ │ │ └── usr-local.js
│ │ │ │ ├── glob.js
│ │ │ │ ├── node_modules
│ │ │ │ │ └── inherits
│ │ │ │ │ │ ├── LICENSE
│ │ │ │ │ │ ├── README.md
│ │ │ │ │ │ ├── inherits.js
│ │ │ │ │ │ ├── inherits_browser.js
│ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ └── test.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ │ ├── 00-setup.js
│ │ │ │ │ ├── bash-comparison.js
│ │ │ │ │ ├── bash-results.json
│ │ │ │ │ ├── cwd-test.js
│ │ │ │ │ ├── globstar-match.js
│ │ │ │ │ ├── mark.js
│ │ │ │ │ ├── new-glob-optional-options.js
│ │ │ │ │ ├── nocase-nomagic.js
│ │ │ │ │ ├── pause-resume.js
│ │ │ │ │ ├── readme-issue.js
│ │ │ │ │ ├── root-nomount.js
│ │ │ │ │ ├── root.js
│ │ │ │ │ ├── stat.js
│ │ │ │ │ └── zz-cleanup.js
│ │ │ └── lodash
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── dist
│ │ │ │ ├── lodash.compat.js
│ │ │ │ ├── lodash.compat.min.js
│ │ │ │ ├── lodash.js
│ │ │ │ ├── lodash.min.js
│ │ │ │ ├── lodash.underscore.js
│ │ │ │ └── lodash.underscore.min.js
│ │ │ │ ├── lodash.js
│ │ │ │ └── package.json
│ │ ├── package.json
│ │ └── test
│ │ │ ├── findup-sync_test.js
│ │ │ └── fixtures
│ │ │ ├── a.txt
│ │ │ ├── a
│ │ │ ├── b
│ │ │ │ └── bar.txt
│ │ │ └── foo.txt
│ │ │ └── aaa.txt
│ ├── getobject
│ │ ├── .jshintrc
│ │ ├── .npmignore
│ │ ├── .travis.yml
│ │ ├── Gruntfile.js
│ │ ├── LICENSE-MIT
│ │ ├── README.md
│ │ ├── lib
│ │ │ └── getobject.js
│ │ ├── package.json
│ │ └── test
│ │ │ └── namespace_test.js
│ ├── glob
│ │ ├── .npmignore
│ │ ├── .travis.yml
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── examples
│ │ │ ├── g.js
│ │ │ └── usr-local.js
│ │ ├── glob.js
│ │ ├── node_modules
│ │ │ ├── graceful-fs
│ │ │ │ ├── .npmignore
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── graceful-fs.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ │ ├── open.js
│ │ │ │ │ └── ulimit.js
│ │ │ └── inherits
│ │ │ │ ├── README.md
│ │ │ │ ├── inherits.js
│ │ │ │ └── package.json
│ │ ├── package.json
│ │ └── test
│ │ │ ├── 00-setup.js
│ │ │ ├── bash-comparison.js
│ │ │ ├── bash-results.json
│ │ │ ├── cwd-test.js
│ │ │ ├── mark.js
│ │ │ ├── nocase-nomagic.js
│ │ │ ├── pause-resume.js
│ │ │ ├── root-nomount.js
│ │ │ ├── root.js
│ │ │ └── zz-cleanup.js
│ ├── grunt-legacy-util
│ │ ├── .npmignore
│ │ ├── Gruntfile.js
│ │ ├── LICENSE-MIT
│ │ ├── README.md
│ │ ├── index.js
│ │ ├── package.json
│ │ └── test
│ │ │ ├── fixtures
│ │ │ ├── Gruntfile-execArgv-child.js
│ │ │ ├── Gruntfile-execArgv.js
│ │ │ ├── Gruntfile-print-text.js
│ │ │ ├── exec.cmd
│ │ │ ├── exec.sh
│ │ │ ├── spawn-multibyte.js
│ │ │ └── spawn.js
│ │ │ └── index.js
│ ├── hooker
│ │ ├── LICENSE-MIT
│ │ ├── README.md
│ │ ├── child.js
│ │ ├── dist
│ │ │ ├── ba-hooker.js
│ │ │ └── ba-hooker.min.js
│ │ ├── grunt.js
│ │ ├── lib
│ │ │ └── hooker.js
│ │ ├── package.json
│ │ ├── parent.js
│ │ └── test
│ │ │ └── hooker_test.js
│ ├── iconv-lite
│ │ ├── .npmignore
│ │ ├── .travis.yml
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── encodings
│ │ │ ├── big5.js
│ │ │ ├── gbk.js
│ │ │ ├── singlebyte.js
│ │ │ └── table
│ │ │ │ ├── big5.js
│ │ │ │ └── gbk.js
│ │ ├── generation
│ │ │ ├── generate-big5-table.js
│ │ │ └── generate-singlebyte.js
│ │ ├── index.js
│ │ ├── package.json
│ │ └── test
│ │ │ ├── big5-test.js
│ │ │ ├── big5File.txt
│ │ │ ├── cyrillic-test.js
│ │ │ ├── gbk-test.js
│ │ │ ├── gbkFile.txt
│ │ │ ├── greek-test.js
│ │ │ ├── main-test.js
│ │ │ ├── performance.js
│ │ │ └── turkish-test.js
│ ├── js-yaml
│ │ ├── HISTORY.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bin
│ │ │ └── js-yaml.js
│ │ ├── examples
│ │ │ ├── custom_types.js
│ │ │ ├── custom_types.yaml
│ │ │ ├── dumper.js
│ │ │ ├── dumper.json
│ │ │ ├── sample_document.js
│ │ │ └── sample_document.yaml
│ │ ├── index.js
│ │ ├── lib
│ │ │ ├── js-yaml.js
│ │ │ └── js-yaml
│ │ │ │ ├── common.js
│ │ │ │ ├── dumper.js
│ │ │ │ ├── exception.js
│ │ │ │ ├── loader.js
│ │ │ │ ├── mark.js
│ │ │ │ ├── require.js
│ │ │ │ ├── schema.js
│ │ │ │ ├── schema
│ │ │ │ ├── default.js
│ │ │ │ ├── minimal.js
│ │ │ │ └── safe.js
│ │ │ │ ├── type.js
│ │ │ │ └── type
│ │ │ │ ├── binary.js
│ │ │ │ ├── bool.js
│ │ │ │ ├── float.js
│ │ │ │ ├── int.js
│ │ │ │ ├── js
│ │ │ │ ├── function.js
│ │ │ │ ├── regexp.js
│ │ │ │ └── undefined.js
│ │ │ │ ├── map.js
│ │ │ │ ├── merge.js
│ │ │ │ ├── null.js
│ │ │ │ ├── omap.js
│ │ │ │ ├── pairs.js
│ │ │ │ ├── seq.js
│ │ │ │ ├── set.js
│ │ │ │ ├── str.js
│ │ │ │ └── timestamp.js
│ │ ├── node_modules
│ │ │ ├── .bin
│ │ │ │ ├── esparse
│ │ │ │ └── esvalidate
│ │ │ ├── argparse
│ │ │ │ ├── HISTORY.md
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── examples
│ │ │ │ │ ├── arguments.js
│ │ │ │ │ ├── choice.js
│ │ │ │ │ ├── constants.js
│ │ │ │ │ ├── help.js
│ │ │ │ │ ├── nargs.js
│ │ │ │ │ ├── parents.js
│ │ │ │ │ ├── prefix_chars.js
│ │ │ │ │ ├── sub_commands.js
│ │ │ │ │ ├── sum.js
│ │ │ │ │ └── testformatters.js
│ │ │ │ ├── index.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── action.js
│ │ │ │ │ ├── action
│ │ │ │ │ │ ├── append.js
│ │ │ │ │ │ ├── append
│ │ │ │ │ │ │ └── constant.js
│ │ │ │ │ │ ├── count.js
│ │ │ │ │ │ ├── help.js
│ │ │ │ │ │ ├── store.js
│ │ │ │ │ │ ├── store
│ │ │ │ │ │ │ ├── constant.js
│ │ │ │ │ │ │ ├── false.js
│ │ │ │ │ │ │ └── true.js
│ │ │ │ │ │ ├── subparsers.js
│ │ │ │ │ │ └── version.js
│ │ │ │ │ ├── action_container.js
│ │ │ │ │ ├── argparse.js
│ │ │ │ │ ├── argument
│ │ │ │ │ │ ├── error.js
│ │ │ │ │ │ ├── exclusive.js
│ │ │ │ │ │ └── group.js
│ │ │ │ │ ├── argument_parser.js
│ │ │ │ │ ├── const.js
│ │ │ │ │ ├── help
│ │ │ │ │ │ ├── added_formatters.js
│ │ │ │ │ │ └── formatter.js
│ │ │ │ │ └── namespace.js
│ │ │ │ ├── node_modules
│ │ │ │ │ ├── underscore.string
│ │ │ │ │ │ ├── .travis.yml
│ │ │ │ │ │ ├── Gemfile
│ │ │ │ │ │ ├── Gemfile.lock
│ │ │ │ │ │ ├── README.markdown
│ │ │ │ │ │ ├── Rakefile
│ │ │ │ │ │ ├── component.json
│ │ │ │ │ │ ├── dist
│ │ │ │ │ │ │ └── underscore.string.min.js
│ │ │ │ │ │ ├── lib
│ │ │ │ │ │ │ └── underscore.string.js
│ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ └── test
│ │ │ │ │ │ │ ├── run-qunit.js
│ │ │ │ │ │ │ ├── speed.js
│ │ │ │ │ │ │ ├── strings.js
│ │ │ │ │ │ │ ├── strings_standalone.js
│ │ │ │ │ │ │ ├── test.html
│ │ │ │ │ │ │ ├── test_standalone.html
│ │ │ │ │ │ │ ├── test_underscore
│ │ │ │ │ │ │ ├── arrays.js
│ │ │ │ │ │ │ ├── chaining.js
│ │ │ │ │ │ │ ├── collections.js
│ │ │ │ │ │ │ ├── functions.js
│ │ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ │ ├── objects.js
│ │ │ │ │ │ │ ├── speed.js
│ │ │ │ │ │ │ ├── utility.js
│ │ │ │ │ │ │ └── vendor
│ │ │ │ │ │ │ │ ├── jquery.js
│ │ │ │ │ │ │ │ ├── jslitmus.js
│ │ │ │ │ │ │ │ ├── qunit.css
│ │ │ │ │ │ │ │ └── qunit.js
│ │ │ │ │ │ │ └── underscore.js
│ │ │ │ │ └── underscore
│ │ │ │ │ │ ├── .npmignore
│ │ │ │ │ │ ├── .travis.yml
│ │ │ │ │ │ ├── CNAME
│ │ │ │ │ │ ├── CONTRIBUTING.md
│ │ │ │ │ │ ├── LICENSE
│ │ │ │ │ │ ├── README.md
│ │ │ │ │ │ ├── favicon.ico
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ ├── underscore-min.js
│ │ │ │ │ │ └── underscore.js
│ │ │ │ └── package.json
│ │ │ └── esprima
│ │ │ │ ├── README.md
│ │ │ │ ├── bin
│ │ │ │ ├── esparse.js
│ │ │ │ └── esvalidate.js
│ │ │ │ ├── esprima.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ ├── compat.js
│ │ │ │ ├── reflect.js
│ │ │ │ ├── run.js
│ │ │ │ ├── runner.js
│ │ │ │ └── test.js
│ │ └── package.json
│ ├── lodash
│ │ ├── LICENSE.txt
│ │ ├── README.md
│ │ ├── build.js
│ │ ├── build
│ │ │ ├── minify.js
│ │ │ ├── post-compile.js
│ │ │ └── pre-compile.js
│ │ ├── index.js
│ │ ├── lodash.js
│ │ ├── lodash.min.js
│ │ ├── lodash.underscore.js
│ │ ├── lodash.underscore.min.js
│ │ ├── package.json
│ │ └── vendor
│ │ │ └── tar
│ │ │ ├── LICENCE
│ │ │ ├── README.md
│ │ │ ├── lib
│ │ │ ├── buffer-entry.js
│ │ │ ├── entry-writer.js
│ │ │ ├── entry.js
│ │ │ ├── extended-header-writer.js
│ │ │ ├── extended-header.js
│ │ │ ├── extract.js
│ │ │ ├── global-header-writer.js
│ │ │ ├── header.js
│ │ │ ├── pack.js
│ │ │ └── parse.js
│ │ │ ├── tar.js
│ │ │ └── vendor
│ │ │ ├── block-stream
│ │ │ ├── LICENCE
│ │ │ ├── README.md
│ │ │ └── block-stream.js
│ │ │ ├── fstream
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── fstream.js
│ │ │ └── lib
│ │ │ │ ├── abstract.js
│ │ │ │ ├── collect.js
│ │ │ │ ├── dir-reader.js
│ │ │ │ ├── dir-writer.js
│ │ │ │ ├── file-reader.js
│ │ │ │ ├── file-writer.js
│ │ │ │ ├── get-type.js
│ │ │ │ ├── link-reader.js
│ │ │ │ ├── link-writer.js
│ │ │ │ ├── proxy-reader.js
│ │ │ │ ├── proxy-writer.js
│ │ │ │ ├── reader.js
│ │ │ │ ├── socket-reader.js
│ │ │ │ └── writer.js
│ │ │ ├── graceful-fs
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ └── graceful-fs.js
│ │ │ ├── inherits
│ │ │ ├── README.md
│ │ │ └── inherits.js
│ │ │ ├── mkdirp
│ │ │ ├── LICENSE
│ │ │ ├── index.js
│ │ │ └── readme.markdown
│ │ │ └── rimraf
│ │ │ ├── AUTHORS
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ └── rimraf.js
│ ├── minimatch
│ │ ├── .npmignore
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── minimatch.js
│ │ ├── node_modules
│ │ │ ├── lru-cache
│ │ │ │ ├── .npmignore
│ │ │ │ ├── CONTRIBUTORS
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── lib
│ │ │ │ │ └── lru-cache.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ │ ├── basic.js
│ │ │ │ │ ├── foreach.js
│ │ │ │ │ └── memory-leak.js
│ │ │ └── sigmund
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── bench.js
│ │ │ │ ├── package.json
│ │ │ │ ├── sigmund.js
│ │ │ │ └── test
│ │ │ │ └── basic.js
│ │ ├── package.json
│ │ └── test
│ │ │ ├── basic.js
│ │ │ ├── brace-expand.js
│ │ │ ├── caching.js
│ │ │ ├── defaults.js
│ │ │ └── extglob-ending-with-state-char.js
│ ├── nopt
│ │ ├── .npmignore
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bin
│ │ │ └── nopt.js
│ │ ├── examples
│ │ │ └── my-program.js
│ │ ├── lib
│ │ │ └── nopt.js
│ │ ├── node_modules
│ │ │ └── abbrev
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── lib
│ │ │ │ └── abbrev.js
│ │ │ │ └── package.json
│ │ └── package.json
│ ├── rimraf
│ │ ├── AUTHORS
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bin.js
│ │ ├── package.json
│ │ ├── rimraf.js
│ │ └── test
│ │ │ ├── run.sh
│ │ │ ├── setup.sh
│ │ │ ├── test-async.js
│ │ │ └── test-sync.js
│ ├── underscore.string
│ │ ├── .travis.yml
│ │ ├── Gemfile
│ │ ├── Gemfile.lock
│ │ ├── README.markdown
│ │ ├── Rakefile
│ │ ├── dist
│ │ │ └── underscore.string.min.js
│ │ ├── lib
│ │ │ └── underscore.string.js
│ │ ├── package.json
│ │ └── test
│ │ │ ├── run-qunit.js
│ │ │ ├── speed.js
│ │ │ ├── strings.js
│ │ │ ├── strings_standalone.js
│ │ │ ├── test.html
│ │ │ ├── test_standalone.html
│ │ │ ├── test_underscore
│ │ │ ├── arrays.js
│ │ │ ├── chaining.js
│ │ │ ├── collections.js
│ │ │ ├── functions.js
│ │ │ ├── objects.js
│ │ │ ├── speed.js
│ │ │ ├── temp.js
│ │ │ ├── temp_tests.html
│ │ │ ├── test.html
│ │ │ ├── utility.js
│ │ │ └── vendor
│ │ │ │ ├── jquery.js
│ │ │ │ ├── jslitmus.js
│ │ │ │ ├── qunit.css
│ │ │ │ └── qunit.js
│ │ │ └── underscore.js
│ └── which
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── bin
│ │ └── which
│ │ ├── package.json
│ │ └── which.js
│ └── package.json
├── package.json
└── plugins
├── amstock-accessibility.js
└── amstock-accessibility.min.js
/.gitignore:
--------------------------------------------------------------------------------
1 | lib-cov
2 | *.seed
3 | *.log
4 | *.csv
5 | *.dat
6 | *.out
7 | *.pid
8 | *.gz
9 |
10 | pids
11 | logs
12 | results
13 |
14 | npm-debug.log
15 |
--------------------------------------------------------------------------------
/Gruntfile.js:
--------------------------------------------------------------------------------
1 | module.exports = function(grunt) {
2 | grunt.initConfig({
3 | pkg: grunt.file.readJSON('package.json'),
4 | banner: '/*! <%= pkg.title || pkg.name %> - v<%= pkg.version %> - ' +
5 | '<%= grunt.template.today("yyyy-mm-dd") %>\n' +
6 | '<%= pkg.homepage ? "* " + pkg.homepage + "\\n" : "" %>' +
7 | '* Copyright (c) <%= grunt.template.today("yyyy") %> <%= pkg.author %>;' +
8 | ' Licensed <%= pkg.license %> */\n' ,
9 |
10 | uglify: {
11 | options: {
12 | banner: '<%= banner %>',
13 | mangle: false
14 | },
15 | dist: {
16 | files: {
17 | 'plugins/amstock-accessibility.min.js': 'plugins/amstock-accessibility.js'
18 | }
19 | }
20 | }
21 | });
22 | grunt.loadNpmTasks('grunt-contrib-uglify');
23 | grunt.registerTask('default', 'uglify');
24 |
25 | };
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/images/dragIcon.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/images/dragIcon.gif
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/images/dragIconH.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/images/dragIconH.gif
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/images/eraserIcon.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/images/eraserIcon.gif
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/images/eraserIconH.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/images/eraserIconH.gif
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/images/export.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/images/export.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/images/lens.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/images/lens.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/images/pencilIcon.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/images/pencilIcon.gif
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/images/pencilIconH.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/images/pencilIconH.gif
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/images/xIcon.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/images/xIcon.gif
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/images/xIconH.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/images/xIconH.gif
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/black/pattern1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/black/pattern1.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/black/pattern10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/black/pattern10.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/black/pattern11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/black/pattern11.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/black/pattern12.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/black/pattern12.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/black/pattern13.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/black/pattern13.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/black/pattern14.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/black/pattern14.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/black/pattern15.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/black/pattern15.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/black/pattern16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/black/pattern16.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/black/pattern17.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/black/pattern17.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/black/pattern18.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/black/pattern18.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/black/pattern19.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/black/pattern19.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/black/pattern2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/black/pattern2.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/black/pattern20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/black/pattern20.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/black/pattern21.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/black/pattern21.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/black/pattern3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/black/pattern3.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/black/pattern4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/black/pattern4.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/black/pattern5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/black/pattern5.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/black/pattern6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/black/pattern6.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/black/pattern7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/black/pattern7.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/black/pattern8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/black/pattern8.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/black/pattern9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/black/pattern9.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/chalk/pattern1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/chalk/pattern1.jpg
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/chalk/pattern1r.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/chalk/pattern1r.jpg
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/chalk/pattern2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/chalk/pattern2.jpg
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/chalk/pattern3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/chalk/pattern3.jpg
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/chalk/pattern4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/chalk/pattern4.jpg
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/chalk/pattern5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/chalk/pattern5.jpg
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/chalk/pattern6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/chalk/pattern6.jpg
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/white/pattern1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/white/pattern1.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/white/pattern10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/white/pattern10.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/white/pattern11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/white/pattern11.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/white/pattern12.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/white/pattern12.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/white/pattern13.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/white/pattern13.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/white/pattern14.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/white/pattern14.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/white/pattern15.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/white/pattern15.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/white/pattern16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/white/pattern16.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/white/pattern17.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/white/pattern17.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/white/pattern18.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/white/pattern18.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/white/pattern19.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/white/pattern19.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/white/pattern2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/white/pattern2.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/white/pattern20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/white/pattern20.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/white/pattern21.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/white/pattern21.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/white/pattern3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/white/pattern3.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/white/pattern4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/white/pattern4.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/white/pattern5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/white/pattern5.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/white/pattern6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/white/pattern6.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/white/pattern7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/white/pattern7.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/white/pattern8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/white/pattern8.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/patterns/white/pattern9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/amcharts_3.4.7.free/patterns/white/pattern9.png
--------------------------------------------------------------------------------
/amcharts_3.4.7.free/style.css:
--------------------------------------------------------------------------------
1 | .amChartsDataSetSelector
2 | {
3 | font-size:12px;
4 | font-family:verdana,helvetica,arial,sans-serif;
5 | }
6 |
7 | .amChartsPeriodSelector
8 | {
9 | font-size:12px;
10 | font-family:verdana,helvetica,arial,sans-serif;
11 | }
12 |
13 | .amChartsButtonSelected
14 | {
15 | background-color:#CC0000;
16 | border-style:solid;
17 | border-color:#CC0000;
18 | border-width:1px;
19 | color:#FFFFFF;
20 | -moz-border-radius: 5px;
21 | border-radius: 5px;
22 | margin: 1px;
23 | outline: none;
24 | box-sizing: border-box;
25 | }
26 |
27 | .amChartsButton
28 | {
29 | color: #000000;
30 | background: transparent;
31 | opacity: 0.7;
32 | border: 1px solid rgba(0, 0, 0, .3);
33 | -moz-border-radius: 5px;
34 | border-radius: 5px;
35 | margin: 1px;
36 | outline: none;
37 | box-sizing: border-box;
38 | }
39 |
40 | .amChartsCompareList
41 | {
42 | border-style:solid;
43 | border-color:#CCCCCC;
44 | border-width:1px;
45 | }
46 |
47 | .amChartsCompareList div
48 | {
49 | -webkit-box-sizing: initial;
50 | box-sizing: initial;
51 | }
52 |
53 | .amChartsInputField
54 | {
55 |
56 | }
57 |
58 | .amChartsLegend
59 | {
60 |
61 | }
62 |
63 | .amChartsPanel
64 | {
65 |
66 | }
--------------------------------------------------------------------------------
/images/amchart_screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/images/amchart_screenshot.png
--------------------------------------------------------------------------------
/images/logo/logo_263x38_PPa11y.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/images/logo/logo_263x38_PPa11y.png
--------------------------------------------------------------------------------
/images/logo/logo_347x50_PPa11y.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/images/logo/logo_347x50_PPa11y.png
--------------------------------------------------------------------------------
/media/SR_amChartsAccessibility.mov:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/paypal/amcharts-accessibility-plugin/cd26e1b9444c6c77a4aa98bd650227a73244e16d/media/SR_amChartsAccessibility.mov
--------------------------------------------------------------------------------
/node_modules/grunt-contrib-uglify/LICENSE-MIT:
--------------------------------------------------------------------------------
1 | Copyright (c) 2013 "Cowboy" Ben Alman, contributors
2 |
3 | Permission is hereby granted, free of charge, to any person
4 | obtaining a copy of this software and associated documentation
5 | files (the "Software"), to deal in the Software without
6 | restriction, including without limitation the rights to use,
7 | copy, modify, merge, publish, distribute, sublicense, and/or sell
8 | copies of the Software, and to permit persons to whom the
9 | Software is furnished to do so, subject to the following
10 | conditions:
11 |
12 | The above copyright notice and this permission notice shall be
13 | included in all copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
17 | OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19 | HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 | OTHER DEALINGS IN THE SOFTWARE.
23 |
--------------------------------------------------------------------------------
/node_modules/grunt-contrib-uglify/node_modules/.bin/uglifyjs:
--------------------------------------------------------------------------------
1 | ../uglify-js/bin/uglifyjs
--------------------------------------------------------------------------------
/node_modules/grunt-contrib-uglify/node_modules/chalk/node_modules/.bin/strip-ansi:
--------------------------------------------------------------------------------
1 | ../strip-ansi/cli.js
--------------------------------------------------------------------------------
/node_modules/grunt-contrib-uglify/node_modules/chalk/node_modules/ansi-styles/ansi-styles.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | var styles = module.exports;
3 |
4 | var codes = {
5 | reset: [0, 0],
6 |
7 | bold: [1, 22],
8 | italic: [3, 23],
9 | underline: [4, 24],
10 | inverse: [7, 27],
11 | strikethrough: [9, 29],
12 |
13 | black: [30, 39],
14 | red: [31, 39],
15 | green: [32, 39],
16 | yellow: [33, 39],
17 | blue: [34, 39],
18 | magenta: [35, 39],
19 | cyan: [36, 39],
20 | white: [37, 39],
21 | gray: [90, 39],
22 |
23 | bgBlack: [40, 49],
24 | bgRed: [41, 49],
25 | bgGreen: [42, 49],
26 | bgYellow: [43, 49],
27 | bgBlue: [44, 49],
28 | bgMagenta: [45, 49],
29 | bgCyan: [46, 49],
30 | bgWhite: [47, 49]
31 | };
32 |
33 | Object.keys(codes).forEach(function (key) {
34 | var val = codes[key];
35 | var style = styles[key] = {};
36 | style.open = '\x1b[' + val[0] + 'm';
37 | style.close = '\x1b[' + val[1] + 'm';
38 | });
39 |
--------------------------------------------------------------------------------
/node_modules/grunt-contrib-uglify/node_modules/chalk/node_modules/has-color/has-color.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | module.exports = (function () {
3 | if (process.argv.indexOf('--no-color') !== -1) {
4 | return false;
5 | }
6 |
7 | if (process.argv.indexOf('--color') !== -1) {
8 | return true;
9 | }
10 |
11 | if (!process.stdout.isTTY) {
12 | return false;
13 | }
14 |
15 | if (process.platform === 'win32') {
16 | return true;
17 | }
18 |
19 | if ('COLORTERM' in process.env) {
20 | return true;
21 | }
22 |
23 | return /^screen|^xterm|color|ansi|cygwin|linux/i.test(process.env.TERM);
24 | })();
25 |
--------------------------------------------------------------------------------
/node_modules/grunt-contrib-uglify/node_modules/chalk/node_modules/has-color/readme.md:
--------------------------------------------------------------------------------
1 | # has-color [](http://travis-ci.org/sindresorhus/has-color)
2 |
3 | > Detect whether a terminal supports color.
4 |
5 | Used in the terminal color module [chalk](https://github.com/sindresorhus/chalk).
6 |
7 |
8 | ## Install
9 |
10 | Install with [npm](https://npmjs.org/package/has-color): `npm install --save has-color`
11 |
12 |
13 | ## Example
14 |
15 | ```js
16 | var hasColor = require('has-color');
17 |
18 | if (hasColor) {
19 | console.log('Terminal supports color.');
20 | }
21 | ```
22 |
23 | It obeys the CLI flags `--color` and `--no-color`.
24 |
25 |
26 | ## License
27 |
28 | MIT © [Sindre Sorhus](http://sindresorhus.com)
29 |
--------------------------------------------------------------------------------
/node_modules/grunt-contrib-uglify/node_modules/chalk/node_modules/strip-ansi/cli.js:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env node
2 | 'use strict';
3 | var fs = require('fs');
4 | var strip = require('./index');
5 | var input = process.argv[2];
6 |
7 | if (process.argv.indexOf('-h') !== -1 || process.argv.indexOf('--help') !== -1) {
8 | console.log('strip-ansi >