├── .bowerrc
├── .gitignore
├── Gruntfile.js
├── README.md
├── doc
├── contents
│ ├── contact.html
│ ├── developer
│ │ ├── api
│ │ │ ├── directive
│ │ │ │ ├── directive1.html
│ │ │ │ ├── directive2.html
│ │ │ │ ├── directive3.html
│ │ │ │ ├── directive4.html
│ │ │ │ ├── directive5.html
│ │ │ │ └── directive6.html
│ │ │ └── service
│ │ │ │ ├── service1.html
│ │ │ │ ├── service2.html
│ │ │ │ ├── service3.html
│ │ │ │ └── service4.html
│ │ ├── example
│ │ │ ├── chart
│ │ │ │ ├── chart1.html
│ │ │ │ ├── chart2.html
│ │ │ │ └── chart3.html
│ │ │ ├── form
│ │ │ │ └── form1.html
│ │ │ ├── grid
│ │ │ │ ├── grid1.html
│ │ │ │ ├── grid2.html
│ │ │ │ └── grid3.html
│ │ │ └── tab
│ │ │ │ └── tab1.html
│ │ └── guide
│ │ │ ├── guide1.html
│ │ │ ├── guide2.html
│ │ │ ├── guide3.html
│ │ │ ├── guide4.html
│ │ │ ├── guide5.html
│ │ │ ├── guide6.html
│ │ │ ├── guide7.html
│ │ │ └── guide8.html
│ ├── download
│ │ ├── github.html
│ │ └── minified.html
│ ├── home.html
│ └── qna
│ │ ├── qna1.html
│ │ └── qna2.html
├── css
│ ├── styles-blue.css
│ └── vendor
│ │ ├── bootstrap
│ │ └── bootstrap.css
│ │ ├── fractionslider
│ │ ├── fractionslider.css
│ │ ├── images
│ │ │ ├── fs.pager.png
│ │ │ ├── fs.prevnext.png
│ │ │ └── fs.spinner.gif
│ │ └── style.css
│ │ └── glyphicons
│ │ └── glyphicons.css
├── fonts
│ └── vendor
│ │ ├── bootstrap
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.html
│ │ ├── glyphicons-halflings-regular.svg
│ │ ├── glyphicons-halflings-regular.ttf
│ │ └── glyphicons-halflings-regulard41d.eot
│ │ └── glyphicons
│ │ ├── glyphicons-regular.eot
│ │ ├── glyphicons-regular.html
│ │ ├── glyphicons-regular.svg
│ │ ├── glyphicons-regular.ttf
│ │ └── glyphicons-regulard41d.eot
├── img
│ ├── contact
│ │ └── guruguru.jpg
│ ├── developer
│ │ └── guide
│ │ │ ├── fileorganize.png
│ │ │ ├── module01.png
│ │ │ ├── mvc01.png
│ │ │ ├── mvc02.png
│ │ │ ├── mvc03.png
│ │ │ ├── overview01.jpg
│ │ │ ├── route01.png
│ │ │ ├── testing01.png
│ │ │ ├── testing02.png
│ │ │ ├── testing03.png
│ │ │ ├── testing04.png
│ │ │ ├── testing05.png
│ │ │ ├── testing06.png
│ │ │ └── testing07.png
│ ├── home_dashboard.png
│ ├── home_guide.png
│ ├── home_install.png
│ ├── qna
│ │ └── issues.png
│ ├── slides
│ │ ├── bg.png
│ │ ├── css.png
│ │ ├── html.png
│ │ ├── imac.png
│ │ ├── js.png
│ │ └── macbook-air.png
│ └── vendor
│ │ └── glyphicons
│ │ ├── glyphicons-white.png
│ │ ├── glyphicons-white.svg
│ │ ├── glyphicons.png
│ │ └── glyphicons.svg
├── index.html
├── js
│ ├── app.js
│ ├── main.js
│ └── vendor
│ │ ├── angular
│ │ ├── angular-bootstrap-prettify.js
│ │ ├── angular-bootstrap.js
│ │ ├── angular-cookies.js
│ │ ├── angular-cookies.min.js
│ │ ├── angular-loader.js
│ │ ├── angular-loader.min.js
│ │ ├── angular-resource.js
│ │ ├── angular-resource.min.js
│ │ ├── angular-sanitize.js
│ │ ├── angular-sanitize.min.js
│ │ ├── angular.js
│ │ ├── angular.min.js
│ │ └── version.txt
│ │ ├── bootstrap
│ │ └── bootstrap.min.js
│ │ ├── fractionslider
│ │ ├── jquery.fractionslider.js
│ │ └── jquery.fractionslider.min.js
│ │ ├── jquery
│ │ ├── jquery-1.9.1.min.js
│ │ └── jquery.js
│ │ └── require
│ │ ├── require.js
│ │ └── text.js
└── json
│ └── menu.json
├── ex
├── css
│ ├── app.css
│ ├── font-awesome.min.css
│ └── nv.d3.css
├── ex1.html
├── index.html
├── js
│ └── mainApp.js
├── ngd3ex1.html
└── ngd3ex2.html
├── example
├── chart
│ ├── eGovChart1.html
│ ├── eGovChart2.html
│ └── eGovChart3.html
└── input
│ ├── eGovCheckboxList1.html
│ ├── eGovCheckboxList2.html
│ ├── eGovCheckboxList3.html
│ ├── eGovCheckboxList4.html
│ ├── eGovRadioList1.html
│ ├── eGovRadioList2.html
│ ├── eGovRadioList3.html
│ ├── eGovSelectList1.html
│ └── eGovSelectList2.html
├── images
└── grid
│ ├── collapse.gif
│ ├── expand.gif
│ ├── header-columns-bg.gif
│ ├── header-columns-over-bg.gif
│ └── tick.png
├── karma-e2e.conf.js
├── karma.conf.js
├── less
├── eGovNg.less
└── grid
│ └── grid.less
├── package.json
├── src
├── chart
│ └── directives
│ │ └── chart.js
├── comm
│ └── services
│ │ └── common.js
├── grid
│ ├── directives
│ │ └── egovGrid.js
│ ├── libs
│ │ ├── jquery.event.drag.js
│ │ ├── slick.core.js
│ │ └── slick.grid.js
│ └── services
│ │ ├── egovGrid.js
│ │ ├── egovGridFormatter.js
│ │ └── egovGridHelper.js
├── input
│ └── directives
│ │ └── input.js
├── module.js
└── tap
│ └── directives
│ └── tap.js
├── test
└── spec
│ └── grid
│ └── basic.js
└── vendor
├── angular-mocks
├── .bower.json
├── README.md
├── angular-mocks.js
└── bower.json
├── angular
├── .bower.json
├── angular.js
├── angular.min.js
└── bower.json
├── angularjs-nvd3-directives.zip
├── angularjs-nvd3-directives
├── .bowerrc
├── .gitignore
├── .travis.yml
├── Gruntfile.js
├── LICENSE
├── LICENSE.md
├── README.md
├── bower.json
├── dist
│ └── angularjs-nvd3-directives.js
├── examples
│ ├── bulletChart.html
│ ├── cumulativeLineChart.html
│ ├── discreteBar.html
│ ├── discreteBar.with.automatic.resize.html
│ ├── historicalBarChart.html
│ ├── js
│ │ ├── angular.js
│ │ ├── d3.js
│ │ ├── moment.js
│ │ └── nv.d3.js
│ ├── lineChart.html
│ ├── lineChart.tickValue.html
│ ├── lineChart.ticks.html
│ ├── lineChart.with.automatic.resize.html
│ ├── lineChart.with.configuration.html
│ ├── lineChart.with.ngRepeat.html
│ ├── linePlusBarChart.html
│ ├── linePlusBarChart.with.automatic.resize.html
│ ├── lineWithFocusChart.html
│ ├── liveData.example.html
│ ├── multiBarChart.clipping.nvd3.html
│ ├── multiBarChart.clippingData.html
│ ├── multiBarChart.html
│ ├── multiBarHorizontalChart.html
│ ├── mutiBarChart.with.automatic.resize.html
│ ├── objectEquality.html
│ ├── pie.donut.chart.html
│ ├── pieChart.html
│ ├── pieChart.with.automatic.resize.html
│ ├── refresh.example.html
│ ├── scatterChart.html
│ ├── scatterChart.with.automatic.resize.html
│ ├── sparklineChart.html
│ ├── stackedAreaChart.html
│ ├── stackedAreaChart.with.automatic.resize.html
│ ├── stylesheets
│ │ └── nv.d3.css
│ └── ticks.d3.html
├── package.json
└── src
│ └── directives
│ ├── nvD3AxisConfiguration.js
│ └── nvd3Directives.js
├── bootstrap
├── .bower.json
├── CNAME
├── CONTRIBUTING.md
├── Gruntfile.js
├── LICENSE
├── README.md
├── _config.yml
├── _includes
│ ├── ads.html
│ ├── footer.html
│ ├── header.html
│ ├── nav-components.html
│ ├── nav-css.html
│ ├── nav-customize.html
│ ├── nav-getting-started.html
│ ├── nav-javascript.html
│ ├── nav-main.html
│ ├── old-bs-docs.html
│ └── social-buttons.html
├── _layouts
│ ├── default.html
│ └── home.html
├── assets
│ ├── css
│ │ ├── docs.css
│ │ └── pygments-manni.css
│ ├── ico
│ │ ├── apple-touch-icon-114-precomposed.png
│ │ ├── apple-touch-icon-144-precomposed.png
│ │ ├── apple-touch-icon-57-precomposed.png
│ │ ├── apple-touch-icon-72-precomposed.png
│ │ └── favicon.png
│ └── js
│ │ ├── application.js
│ │ ├── customizer.js
│ │ ├── filesaver.js
│ │ ├── holder.js
│ │ ├── html5shiv.js
│ │ ├── jquery.js
│ │ ├── jszip.js
│ │ ├── less.js
│ │ ├── raw-files.js
│ │ ├── respond.min.js
│ │ └── uglify.js
├── bower.json
├── browserstack.json
├── components.html
├── composer.json
├── css.html
├── customize.html
├── dist
│ ├── css
│ │ ├── bootstrap-theme.css
│ │ ├── bootstrap-theme.min.css
│ │ ├── bootstrap.css
│ │ └── bootstrap.min.css
│ ├── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.svg
│ │ ├── glyphicons-halflings-regular.ttf
│ │ └── glyphicons-halflings-regular.woff
│ └── js
│ │ ├── bootstrap.js
│ │ └── bootstrap.min.js
├── examples
│ ├── carousel
│ │ ├── carousel.css
│ │ └── index.html
│ ├── grid
│ │ ├── grid.css
│ │ └── index.html
│ ├── jumbotron-narrow
│ │ ├── index.html
│ │ └── jumbotron-narrow.css
│ ├── jumbotron
│ │ ├── index.html
│ │ └── jumbotron.css
│ ├── justified-nav
│ │ ├── index.html
│ │ └── justified-nav.css
│ ├── navbar-fixed-top
│ │ ├── index.html
│ │ └── navbar-fixed-top.css
│ ├── navbar-static-top
│ │ ├── index.html
│ │ └── navbar-static-top.css
│ ├── navbar
│ │ ├── index.html
│ │ └── navbar.css
│ ├── non-responsive
│ │ ├── index.html
│ │ └── non-responsive.css
│ ├── offcanvas
│ │ ├── index.html
│ │ ├── offcanvas.css
│ │ └── offcanvas.js
│ ├── screenshots
│ │ ├── carousel.jpg
│ │ ├── grid.jpg
│ │ ├── jumbotron-narrow.jpg
│ │ ├── jumbotron.jpg
│ │ ├── justified-nav.jpg
│ │ ├── navbar-fixed.jpg
│ │ ├── navbar-static.jpg
│ │ ├── navbar.jpg
│ │ ├── non-responsive.jpg
│ │ ├── offcanvas.jpg
│ │ ├── sign-in.jpg
│ │ ├── starter-template.jpg
│ │ ├── sticky-footer-navbar.jpg
│ │ ├── sticky-footer.jpg
│ │ └── theme.jpg
│ ├── signin
│ │ ├── index.html
│ │ └── signin.css
│ ├── starter-template
│ │ ├── index.html
│ │ └── starter-template.css
│ ├── sticky-footer-navbar
│ │ ├── index.html
│ │ └── sticky-footer-navbar.css
│ ├── sticky-footer
│ │ ├── index.html
│ │ └── sticky-footer.css
│ └── theme
│ │ ├── index.html
│ │ └── theme.css
├── fonts
│ ├── glyphicons-halflings-regular.eot
│ ├── glyphicons-halflings-regular.svg
│ ├── glyphicons-halflings-regular.ttf
│ └── glyphicons-halflings-regular.woff
├── getting-started.html
├── index.html
├── javascript.html
├── js
│ ├── affix.js
│ ├── alert.js
│ ├── button.js
│ ├── carousel.js
│ ├── collapse.js
│ ├── dropdown.js
│ ├── modal.js
│ ├── popover.js
│ ├── scrollspy.js
│ ├── tab.js
│ ├── tests
│ │ ├── index.html
│ │ ├── phantom.js
│ │ ├── server.js
│ │ ├── unit
│ │ │ ├── affix.js
│ │ │ ├── alert.js
│ │ │ ├── button.js
│ │ │ ├── carousel.js
│ │ │ ├── collapse.js
│ │ │ ├── dropdown.js
│ │ │ ├── modal.js
│ │ │ ├── phantom.js
│ │ │ ├── popover.js
│ │ │ ├── scrollspy.js
│ │ │ ├── tab.js
│ │ │ ├── tooltip.js
│ │ │ └── transition.js
│ │ └── vendor
│ │ │ ├── jquery.js
│ │ │ ├── qunit.css
│ │ │ └── qunit.js
│ ├── tooltip.js
│ └── transition.js
├── less
│ ├── alerts.less
│ ├── badges.less
│ ├── bootstrap.less
│ ├── breadcrumbs.less
│ ├── button-groups.less
│ ├── buttons.less
│ ├── carousel.less
│ ├── close.less
│ ├── code.less
│ ├── component-animations.less
│ ├── dropdowns.less
│ ├── forms.less
│ ├── glyphicons.less
│ ├── grid.less
│ ├── input-groups.less
│ ├── jumbotron.less
│ ├── labels.less
│ ├── list-group.less
│ ├── media.less
│ ├── mixins.less
│ ├── modals.less
│ ├── navbar.less
│ ├── navs.less
│ ├── normalize.less
│ ├── pager.less
│ ├── pagination.less
│ ├── panels.less
│ ├── popovers.less
│ ├── print.less
│ ├── progress-bars.less
│ ├── responsive-utilities.less
│ ├── scaffolding.less
│ ├── tables.less
│ ├── theme.less
│ ├── thumbnails.less
│ ├── tooltip.less
│ ├── type.less
│ ├── utilities.less
│ ├── variables.less
│ └── wells.less
└── package.json
├── d3
├── .bower.json
├── LICENSE
├── README.md
├── bower.json
├── d3.js
└── d3.min.js
├── jQuery
└── .bower.json
├── jquery-ui
├── .gitignore
├── AUTHORS.txt
├── MANIFEST
├── MIT-LICENSE.txt
├── README.md
├── bower.json
├── composer.json
├── package.json
├── themes
│ ├── black-tie
│ │ ├── images
│ │ │ ├── animated-overlay.gif
│ │ │ ├── ui-bg_diagonals-thick_8_333333_40x40.png
│ │ │ ├── ui-bg_flat_65_ffffff_40x100.png
│ │ │ ├── ui-bg_glass_40_111111_1x400.png
│ │ │ ├── ui-bg_glass_55_1c1c1c_1x400.png
│ │ │ ├── ui-bg_highlight-hard_100_f9f9f9_1x100.png
│ │ │ ├── ui-bg_highlight-hard_40_aaaaaa_1x100.png
│ │ │ ├── ui-bg_highlight-soft_50_aaaaaa_1x100.png
│ │ │ ├── ui-bg_inset-hard_45_cd0a0a_1x100.png
│ │ │ ├── ui-bg_inset-hard_55_ffeb80_1x100.png
│ │ │ ├── ui-icons_222222_256x240.png
│ │ │ ├── ui-icons_4ca300_256x240.png
│ │ │ ├── ui-icons_bbbbbb_256x240.png
│ │ │ ├── ui-icons_ededed_256x240.png
│ │ │ ├── ui-icons_ffcf29_256x240.png
│ │ │ └── ui-icons_ffffff_256x240.png
│ │ ├── jquery-ui.css
│ │ ├── jquery-ui.min.css
│ │ └── jquery.ui.theme.css
│ ├── blitzer
│ │ ├── images
│ │ │ ├── animated-overlay.gif
│ │ │ ├── ui-bg_diagonals-thick_75_f3d8d8_40x40.png
│ │ │ ├── ui-bg_dots-small_65_a6a6a6_2x2.png
│ │ │ ├── ui-bg_flat_0_333333_40x100.png
│ │ │ ├── ui-bg_flat_65_ffffff_40x100.png
│ │ │ ├── ui-bg_flat_75_ffffff_40x100.png
│ │ │ ├── ui-bg_glass_55_fbf8ee_1x400.png
│ │ │ ├── ui-bg_highlight-hard_100_eeeeee_1x100.png
│ │ │ ├── ui-bg_highlight-hard_100_f6f6f6_1x100.png
│ │ │ ├── ui-bg_highlight-soft_15_cc0000_1x100.png
│ │ │ ├── ui-icons_004276_256x240.png
│ │ │ ├── ui-icons_cc0000_256x240.png
│ │ │ └── ui-icons_ffffff_256x240.png
│ │ ├── jquery-ui.css
│ │ ├── jquery-ui.min.css
│ │ └── jquery.ui.theme.css
│ ├── cupertino
│ │ ├── images
│ │ │ ├── animated-overlay.gif
│ │ │ ├── ui-bg_diagonals-thick_90_eeeeee_40x40.png
│ │ │ ├── ui-bg_flat_15_cd0a0a_40x100.png
│ │ │ ├── ui-bg_glass_100_e4f1fb_1x400.png
│ │ │ ├── ui-bg_glass_50_3baae3_1x400.png
│ │ │ ├── ui-bg_glass_80_d7ebf9_1x400.png
│ │ │ ├── ui-bg_highlight-hard_100_f2f5f7_1x100.png
│ │ │ ├── ui-bg_highlight-hard_70_000000_1x100.png
│ │ │ ├── ui-bg_highlight-soft_100_deedf7_1x100.png
│ │ │ ├── ui-bg_highlight-soft_25_ffef8f_1x100.png
│ │ │ ├── ui-icons_2694e8_256x240.png
│ │ │ ├── ui-icons_2e83ff_256x240.png
│ │ │ ├── ui-icons_3d80b3_256x240.png
│ │ │ ├── ui-icons_72a7cf_256x240.png
│ │ │ └── ui-icons_ffffff_256x240.png
│ │ ├── jquery-ui.css
│ │ ├── jquery-ui.min.css
│ │ └── jquery.ui.theme.css
│ ├── dark-hive
│ │ ├── images
│ │ │ ├── animated-overlay.gif
│ │ │ ├── ui-bg_flat_30_cccccc_40x100.png
│ │ │ ├── ui-bg_flat_50_5c5c5c_40x100.png
│ │ │ ├── ui-bg_glass_40_ffc73d_1x400.png
│ │ │ ├── ui-bg_highlight-hard_20_0972a5_1x100.png
│ │ │ ├── ui-bg_highlight-soft_33_003147_1x100.png
│ │ │ ├── ui-bg_highlight-soft_35_222222_1x100.png
│ │ │ ├── ui-bg_highlight-soft_44_444444_1x100.png
│ │ │ ├── ui-bg_highlight-soft_80_eeeeee_1x100.png
│ │ │ ├── ui-bg_loop_25_000000_21x21.png
│ │ │ ├── ui-icons_222222_256x240.png
│ │ │ ├── ui-icons_4b8e0b_256x240.png
│ │ │ ├── ui-icons_a83300_256x240.png
│ │ │ ├── ui-icons_cccccc_256x240.png
│ │ │ └── ui-icons_ffffff_256x240.png
│ │ ├── jquery-ui.css
│ │ ├── jquery-ui.min.css
│ │ └── jquery.ui.theme.css
│ ├── dot-luv
│ │ ├── images
│ │ │ ├── animated-overlay.gif
│ │ │ ├── ui-bg_diagonals-thick_15_0b3e6f_40x40.png
│ │ │ ├── ui-bg_dots-medium_30_0b58a2_4x4.png
│ │ │ ├── ui-bg_dots-small_20_333333_2x2.png
│ │ │ ├── ui-bg_dots-small_30_a32d00_2x2.png
│ │ │ ├── ui-bg_dots-small_40_00498f_2x2.png
│ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png
│ │ │ ├── ui-bg_flat_40_292929_40x100.png
│ │ │ ├── ui-bg_gloss-wave_20_111111_500x100.png
│ │ │ ├── ui-icons_00498f_256x240.png
│ │ │ ├── ui-icons_98d2fb_256x240.png
│ │ │ ├── ui-icons_9ccdfc_256x240.png
│ │ │ └── ui-icons_ffffff_256x240.png
│ │ ├── jquery-ui.css
│ │ ├── jquery-ui.min.css
│ │ └── jquery.ui.theme.css
│ ├── eggplant
│ │ ├── images
│ │ │ ├── animated-overlay.gif
│ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png
│ │ │ ├── ui-bg_flat_0_eeeeee_40x100.png
│ │ │ ├── ui-bg_flat_55_994d53_40x100.png
│ │ │ ├── ui-bg_flat_55_fafafa_40x100.png
│ │ │ ├── ui-bg_gloss-wave_30_3d3644_500x100.png
│ │ │ ├── ui-bg_highlight-soft_100_dcd9de_1x100.png
│ │ │ ├── ui-bg_highlight-soft_100_eae6ea_1x100.png
│ │ │ ├── ui-bg_highlight-soft_25_30273a_1x100.png
│ │ │ ├── ui-bg_highlight-soft_45_5f5964_1x100.png
│ │ │ ├── ui-icons_454545_256x240.png
│ │ │ ├── ui-icons_734d99_256x240.png
│ │ │ ├── ui-icons_8d78a5_256x240.png
│ │ │ ├── ui-icons_a8a3ae_256x240.png
│ │ │ ├── ui-icons_ebccce_256x240.png
│ │ │ └── ui-icons_ffffff_256x240.png
│ │ ├── jquery-ui.css
│ │ ├── jquery-ui.min.css
│ │ └── jquery.ui.theme.css
│ ├── excite-bike
│ │ ├── images
│ │ │ ├── animated-overlay.gif
│ │ │ ├── ui-bg_diagonals-small_25_c5ddfc_40x40.png
│ │ │ ├── ui-bg_diagonals-thick_20_e69700_40x40.png
│ │ │ ├── ui-bg_diagonals-thick_22_1484e6_40x40.png
│ │ │ ├── ui-bg_diagonals-thick_26_2293f7_40x40.png
│ │ │ ├── ui-bg_flat_0_e69700_40x100.png
│ │ │ ├── ui-bg_flat_0_e6b900_40x100.png
│ │ │ ├── ui-bg_highlight-soft_100_f9f9f9_1x100.png
│ │ │ ├── ui-bg_inset-hard_100_eeeeee_1x100.png
│ │ │ ├── ui-icons_0a82eb_256x240.png
│ │ │ ├── ui-icons_0b54d5_256x240.png
│ │ │ ├── ui-icons_5fa5e3_256x240.png
│ │ │ ├── ui-icons_fcdd4a_256x240.png
│ │ │ └── ui-icons_ffffff_256x240.png
│ │ ├── jquery-ui.css
│ │ ├── jquery-ui.min.css
│ │ └── jquery.ui.theme.css
│ ├── flick
│ │ ├── images
│ │ │ ├── animated-overlay.gif
│ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png
│ │ │ ├── ui-bg_flat_0_eeeeee_40x100.png
│ │ │ ├── ui-bg_flat_55_ffffff_40x100.png
│ │ │ ├── ui-bg_flat_75_ffffff_40x100.png
│ │ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ │ ├── ui-bg_highlight-soft_100_f6f6f6_1x100.png
│ │ │ ├── ui-bg_highlight-soft_25_0073ea_1x100.png
│ │ │ ├── ui-bg_highlight-soft_50_dddddd_1x100.png
│ │ │ ├── ui-icons_0073ea_256x240.png
│ │ │ ├── ui-icons_454545_256x240.png
│ │ │ ├── ui-icons_666666_256x240.png
│ │ │ ├── ui-icons_ff0084_256x240.png
│ │ │ └── ui-icons_ffffff_256x240.png
│ │ ├── jquery-ui.css
│ │ ├── jquery-ui.min.css
│ │ └── jquery.ui.theme.css
│ ├── hot-sneaks
│ │ ├── images
│ │ │ ├── animated-overlay.gif
│ │ │ ├── ui-bg_diagonals-small_40_db4865_40x40.png
│ │ │ ├── ui-bg_diagonals-small_50_93c3cd_40x40.png
│ │ │ ├── ui-bg_diagonals-small_50_ff3853_40x40.png
│ │ │ ├── ui-bg_diagonals-small_75_ccd232_40x40.png
│ │ │ ├── ui-bg_dots-medium_80_ffff38_4x4.png
│ │ │ ├── ui-bg_dots-small_35_35414f_2x2.png
│ │ │ ├── ui-bg_flat_75_ba9217_40x100.png
│ │ │ ├── ui-bg_flat_75_ffffff_40x100.png
│ │ │ ├── ui-bg_white-lines_85_f7f7ba_40x100.png
│ │ │ ├── ui-icons_454545_256x240.png
│ │ │ ├── ui-icons_88a206_256x240.png
│ │ │ ├── ui-icons_c02669_256x240.png
│ │ │ ├── ui-icons_e1e463_256x240.png
│ │ │ ├── ui-icons_ffeb33_256x240.png
│ │ │ └── ui-icons_ffffff_256x240.png
│ │ ├── jquery-ui.css
│ │ ├── jquery-ui.min.css
│ │ └── jquery.ui.theme.css
│ ├── humanity
│ │ ├── images
│ │ │ ├── animated-overlay.gif
│ │ │ ├── ui-bg_flat_75_aaaaaa_40x100.png
│ │ │ ├── ui-bg_glass_100_f5f0e5_1x400.png
│ │ │ ├── ui-bg_glass_25_cb842e_1x400.png
│ │ │ ├── ui-bg_glass_70_ede4d4_1x400.png
│ │ │ ├── ui-bg_highlight-hard_100_f4f0ec_1x100.png
│ │ │ ├── ui-bg_highlight-hard_65_fee4bd_1x100.png
│ │ │ ├── ui-bg_highlight-hard_75_f5f5b5_1x100.png
│ │ │ ├── ui-bg_inset-soft_100_f4f0ec_1x100.png
│ │ │ ├── ui-icons_c47a23_256x240.png
│ │ │ ├── ui-icons_cb672b_256x240.png
│ │ │ ├── ui-icons_f08000_256x240.png
│ │ │ ├── ui-icons_f35f07_256x240.png
│ │ │ ├── ui-icons_ff7519_256x240.png
│ │ │ └── ui-icons_ffffff_256x240.png
│ │ ├── jquery-ui.css
│ │ ├── jquery-ui.min.css
│ │ └── jquery.ui.theme.css
│ ├── le-frog
│ │ ├── images
│ │ │ ├── animated-overlay.gif
│ │ │ ├── ui-bg_diagonals-small_0_aaaaaa_40x40.png
│ │ │ ├── ui-bg_diagonals-thick_15_444444_40x40.png
│ │ │ ├── ui-bg_diagonals-thick_95_ffdc2e_40x40.png
│ │ │ ├── ui-bg_glass_55_fbf5d0_1x400.png
│ │ │ ├── ui-bg_highlight-hard_30_285c00_1x100.png
│ │ │ ├── ui-bg_highlight-soft_33_3a8104_1x100.png
│ │ │ ├── ui-bg_highlight-soft_50_4eb305_1x100.png
│ │ │ ├── ui-bg_highlight-soft_60_4ca20b_1x100.png
│ │ │ ├── ui-bg_inset-soft_10_285c00_1x100.png
│ │ │ ├── ui-icons_4eb305_256x240.png
│ │ │ ├── ui-icons_72b42d_256x240.png
│ │ │ ├── ui-icons_cd0a0a_256x240.png
│ │ │ └── ui-icons_ffffff_256x240.png
│ │ ├── jquery-ui.css
│ │ ├── jquery-ui.min.css
│ │ └── jquery.ui.theme.css
│ ├── mint-choc
│ │ ├── images
│ │ │ ├── animated-overlay.gif
│ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png
│ │ │ ├── ui-bg_glass_15_5f391b_1x400.png
│ │ │ ├── ui-bg_gloss-wave_20_1c160d_500x100.png
│ │ │ ├── ui-bg_gloss-wave_25_453326_500x100.png
│ │ │ ├── ui-bg_gloss-wave_30_44372c_500x100.png
│ │ │ ├── ui-bg_highlight-soft_20_201913_1x100.png
│ │ │ ├── ui-bg_highlight-soft_20_619226_1x100.png
│ │ │ ├── ui-bg_inset-soft_10_201913_1x100.png
│ │ │ ├── ui-icons_222222_256x240.png
│ │ │ ├── ui-icons_9bcc60_256x240.png
│ │ │ ├── ui-icons_add978_256x240.png
│ │ │ ├── ui-icons_e3ddc9_256x240.png
│ │ │ ├── ui-icons_f1fd86_256x240.png
│ │ │ └── ui-icons_ffffff_256x240.png
│ │ ├── jquery-ui.css
│ │ ├── jquery-ui.min.css
│ │ └── jquery.ui.theme.css
│ ├── overcast
│ │ ├── images
│ │ │ ├── animated-overlay.gif
│ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png
│ │ │ ├── ui-bg_flat_0_eeeeee_40x100.png
│ │ │ ├── ui-bg_flat_55_c0402a_40x100.png
│ │ │ ├── ui-bg_flat_55_eeeeee_40x100.png
│ │ │ ├── ui-bg_glass_100_f8f8f8_1x400.png
│ │ │ ├── ui-bg_glass_35_dddddd_1x400.png
│ │ │ ├── ui-bg_glass_60_eeeeee_1x400.png
│ │ │ ├── ui-bg_inset-hard_75_999999_1x100.png
│ │ │ ├── ui-bg_inset-soft_50_c9c9c9_1x100.png
│ │ │ ├── ui-icons_3383bb_256x240.png
│ │ │ ├── ui-icons_454545_256x240.png
│ │ │ ├── ui-icons_70b2e1_256x240.png
│ │ │ ├── ui-icons_999999_256x240.png
│ │ │ └── ui-icons_fbc856_256x240.png
│ │ ├── jquery-ui.css
│ │ ├── jquery-ui.min.css
│ │ └── jquery.ui.theme.css
│ ├── pepper-grinder
│ │ ├── images
│ │ │ ├── animated-overlay.gif
│ │ │ ├── ui-bg_diagonal-maze_20_6e4f1c_10x10.png
│ │ │ ├── ui-bg_diagonal-maze_40_000000_10x10.png
│ │ │ ├── ui-bg_fine-grain_10_eceadf_60x60.png
│ │ │ ├── ui-bg_fine-grain_10_f8f7f6_60x60.png
│ │ │ ├── ui-bg_fine-grain_15_eceadf_60x60.png
│ │ │ ├── ui-bg_fine-grain_15_f7f3de_60x60.png
│ │ │ ├── ui-bg_fine-grain_15_ffffff_60x60.png
│ │ │ ├── ui-bg_fine-grain_65_654b24_60x60.png
│ │ │ ├── ui-bg_fine-grain_68_b83400_60x60.png
│ │ │ ├── ui-icons_222222_256x240.png
│ │ │ ├── ui-icons_3572ac_256x240.png
│ │ │ ├── ui-icons_8c291d_256x240.png
│ │ │ ├── ui-icons_b83400_256x240.png
│ │ │ ├── ui-icons_fbdb93_256x240.png
│ │ │ └── ui-icons_ffffff_256x240.png
│ │ ├── jquery-ui.css
│ │ ├── jquery-ui.min.css
│ │ └── jquery.ui.theme.css
│ ├── redmond
│ │ ├── images
│ │ │ ├── animated-overlay.gif
│ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png
│ │ │ ├── ui-bg_flat_55_fbec88_40x100.png
│ │ │ ├── ui-bg_glass_75_d0e5f5_1x400.png
│ │ │ ├── ui-bg_glass_85_dfeffc_1x400.png
│ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png
│ │ │ ├── ui-bg_gloss-wave_55_5c9ccc_500x100.png
│ │ │ ├── ui-bg_inset-hard_100_f5f8f9_1x100.png
│ │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png
│ │ │ ├── ui-icons_217bc0_256x240.png
│ │ │ ├── ui-icons_2e83ff_256x240.png
│ │ │ ├── ui-icons_469bdd_256x240.png
│ │ │ ├── ui-icons_6da8d5_256x240.png
│ │ │ ├── ui-icons_cd0a0a_256x240.png
│ │ │ ├── ui-icons_d8e7f3_256x240.png
│ │ │ └── ui-icons_f9bd01_256x240.png
│ │ ├── jquery-ui.css
│ │ ├── jquery-ui.min.css
│ │ └── jquery.ui.theme.css
│ ├── smoothness
│ │ ├── images
│ │ │ ├── animated-overlay.gif
│ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png
│ │ │ ├── ui-bg_flat_75_ffffff_40x100.png
│ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png
│ │ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ │ ├── ui-bg_glass_75_dadada_1x400.png
│ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png
│ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png
│ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│ │ │ ├── ui-icons_222222_256x240.png
│ │ │ ├── ui-icons_2e83ff_256x240.png
│ │ │ ├── ui-icons_454545_256x240.png
│ │ │ ├── ui-icons_888888_256x240.png
│ │ │ └── ui-icons_cd0a0a_256x240.png
│ │ ├── jquery-ui.css
│ │ ├── jquery-ui.min.css
│ │ └── jquery.ui.theme.css
│ ├── south-street
│ │ ├── images
│ │ │ ├── animated-overlay.gif
│ │ │ ├── ui-bg_glass_55_fcf0ba_1x400.png
│ │ │ ├── ui-bg_gloss-wave_100_ece8da_500x100.png
│ │ │ ├── ui-bg_highlight-hard_100_f5f3e5_1x100.png
│ │ │ ├── ui-bg_highlight-hard_100_fafaf4_1x100.png
│ │ │ ├── ui-bg_highlight-hard_15_459e00_1x100.png
│ │ │ ├── ui-bg_highlight-hard_95_cccccc_1x100.png
│ │ │ ├── ui-bg_highlight-soft_25_67b021_1x100.png
│ │ │ ├── ui-bg_highlight-soft_95_ffedad_1x100.png
│ │ │ ├── ui-bg_inset-soft_15_2b2922_1x100.png
│ │ │ ├── ui-icons_808080_256x240.png
│ │ │ ├── ui-icons_847e71_256x240.png
│ │ │ ├── ui-icons_8DC262_256x240.png
│ │ │ ├── ui-icons_cd0a0a_256x240.png
│ │ │ ├── ui-icons_eeeeee_256x240.png
│ │ │ └── ui-icons_ffffff_256x240.png
│ │ ├── jquery-ui.css
│ │ ├── jquery-ui.min.css
│ │ └── jquery.ui.theme.css
│ ├── start
│ │ ├── images
│ │ │ ├── animated-overlay.gif
│ │ │ ├── ui-bg_flat_55_999999_40x100.png
│ │ │ ├── ui-bg_flat_75_aaaaaa_40x100.png
│ │ │ ├── ui-bg_glass_45_0078ae_1x400.png
│ │ │ ├── ui-bg_glass_55_f8da4e_1x400.png
│ │ │ ├── ui-bg_glass_75_79c9ec_1x400.png
│ │ │ ├── ui-bg_gloss-wave_45_e14f1c_500x100.png
│ │ │ ├── ui-bg_gloss-wave_50_6eac2c_500x100.png
│ │ │ ├── ui-bg_gloss-wave_75_2191c0_500x100.png
│ │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png
│ │ │ ├── ui-icons_0078ae_256x240.png
│ │ │ ├── ui-icons_056b93_256x240.png
│ │ │ ├── ui-icons_d8e7f3_256x240.png
│ │ │ ├── ui-icons_e0fdff_256x240.png
│ │ │ ├── ui-icons_f5e175_256x240.png
│ │ │ ├── ui-icons_f7a50d_256x240.png
│ │ │ └── ui-icons_fcd113_256x240.png
│ │ ├── jquery-ui.css
│ │ ├── jquery-ui.min.css
│ │ └── jquery.ui.theme.css
│ ├── sunny
│ │ ├── images
│ │ │ ├── animated-overlay.gif
│ │ │ ├── ui-bg_diagonals-medium_20_d34d17_40x40.png
│ │ │ ├── ui-bg_flat_30_cccccc_40x100.png
│ │ │ ├── ui-bg_flat_50_5c5c5c_40x100.png
│ │ │ ├── ui-bg_gloss-wave_45_817865_500x100.png
│ │ │ ├── ui-bg_gloss-wave_60_fece2f_500x100.png
│ │ │ ├── ui-bg_gloss-wave_70_ffdd57_500x100.png
│ │ │ ├── ui-bg_gloss-wave_90_fff9e5_500x100.png
│ │ │ ├── ui-bg_highlight-soft_100_feeebd_1x100.png
│ │ │ ├── ui-bg_inset-soft_30_ffffff_1x100.png
│ │ │ ├── ui-icons_3d3d3d_256x240.png
│ │ │ ├── ui-icons_bd7b00_256x240.png
│ │ │ ├── ui-icons_d19405_256x240.png
│ │ │ ├── ui-icons_eb990f_256x240.png
│ │ │ ├── ui-icons_ed9f26_256x240.png
│ │ │ ├── ui-icons_fadc7a_256x240.png
│ │ │ └── ui-icons_ffe180_256x240.png
│ │ ├── jquery-ui.css
│ │ ├── jquery-ui.min.css
│ │ └── jquery.ui.theme.css
│ ├── swanky-purse
│ │ ├── images
│ │ │ ├── animated-overlay.gif
│ │ │ ├── ui-bg_diamond_10_4f4221_10x8.png
│ │ │ ├── ui-bg_diamond_20_372806_10x8.png
│ │ │ ├── ui-bg_diamond_25_675423_10x8.png
│ │ │ ├── ui-bg_diamond_25_d5ac5d_10x8.png
│ │ │ ├── ui-bg_diamond_8_261803_10x8.png
│ │ │ ├── ui-bg_diamond_8_443113_10x8.png
│ │ │ ├── ui-bg_flat_75_ddd4b0_40x100.png
│ │ │ ├── ui-bg_highlight-hard_65_fee4bd_1x100.png
│ │ │ ├── ui-icons_070603_256x240.png
│ │ │ ├── ui-icons_e8e2b5_256x240.png
│ │ │ ├── ui-icons_e9cd86_256x240.png
│ │ │ ├── ui-icons_efec9f_256x240.png
│ │ │ ├── ui-icons_f2ec64_256x240.png
│ │ │ ├── ui-icons_f9f2bd_256x240.png
│ │ │ └── ui-icons_ff7519_256x240.png
│ │ ├── jquery-ui.css
│ │ ├── jquery-ui.min.css
│ │ └── jquery.ui.theme.css
│ ├── trontastic
│ │ ├── images
│ │ │ ├── animated-overlay.gif
│ │ │ ├── ui-bg_diagonals-small_50_262626_40x40.png
│ │ │ ├── ui-bg_flat_0_303030_40x100.png
│ │ │ ├── ui-bg_flat_0_4c4c4c_40x100.png
│ │ │ ├── ui-bg_glass_40_0a0a0a_1x400.png
│ │ │ ├── ui-bg_glass_55_f1fbe5_1x400.png
│ │ │ ├── ui-bg_glass_60_000000_1x400.png
│ │ │ ├── ui-bg_gloss-wave_55_000000_500x100.png
│ │ │ ├── ui-bg_gloss-wave_85_9fda58_500x100.png
│ │ │ ├── ui-bg_gloss-wave_95_f6ecd5_500x100.png
│ │ │ ├── ui-icons_000000_256x240.png
│ │ │ ├── ui-icons_1f1f1f_256x240.png
│ │ │ ├── ui-icons_9fda58_256x240.png
│ │ │ ├── ui-icons_b8ec79_256x240.png
│ │ │ ├── ui-icons_cd0a0a_256x240.png
│ │ │ └── ui-icons_ffffff_256x240.png
│ │ ├── jquery-ui.css
│ │ ├── jquery-ui.min.css
│ │ └── jquery.ui.theme.css
│ ├── ui-darkness
│ │ ├── images
│ │ │ ├── animated-overlay.gif
│ │ │ ├── ui-bg_flat_30_cccccc_40x100.png
│ │ │ ├── ui-bg_flat_50_5c5c5c_40x100.png
│ │ │ ├── ui-bg_glass_20_555555_1x400.png
│ │ │ ├── ui-bg_glass_40_0078a3_1x400.png
│ │ │ ├── ui-bg_glass_40_ffc73d_1x400.png
│ │ │ ├── ui-bg_gloss-wave_25_333333_500x100.png
│ │ │ ├── ui-bg_highlight-soft_80_eeeeee_1x100.png
│ │ │ ├── ui-bg_inset-soft_25_000000_1x100.png
│ │ │ ├── ui-bg_inset-soft_30_f58400_1x100.png
│ │ │ ├── ui-icons_222222_256x240.png
│ │ │ ├── ui-icons_4b8e0b_256x240.png
│ │ │ ├── ui-icons_a83300_256x240.png
│ │ │ ├── ui-icons_cccccc_256x240.png
│ │ │ └── ui-icons_ffffff_256x240.png
│ │ ├── jquery-ui.css
│ │ ├── jquery-ui.min.css
│ │ └── jquery.ui.theme.css
│ ├── ui-lightness
│ │ ├── images
│ │ │ ├── animated-overlay.gif
│ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png
│ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png
│ │ │ ├── ui-bg_flat_10_000000_40x100.png
│ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png
│ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png
│ │ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png
│ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png
│ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png
│ │ │ ├── ui-icons_222222_256x240.png
│ │ │ ├── ui-icons_228ef1_256x240.png
│ │ │ ├── ui-icons_ef8c08_256x240.png
│ │ │ ├── ui-icons_ffd27a_256x240.png
│ │ │ └── ui-icons_ffffff_256x240.png
│ │ ├── jquery-ui.css
│ │ ├── jquery-ui.min.css
│ │ └── jquery.ui.theme.css
│ └── vader
│ │ ├── images
│ │ ├── animated-overlay.gif
│ │ ├── ui-bg_flat_0_aaaaaa_40x100.png
│ │ ├── ui-bg_glass_95_fef1ec_1x400.png
│ │ ├── ui-bg_gloss-wave_16_121212_500x100.png
│ │ ├── ui-bg_highlight-hard_15_888888_1x100.png
│ │ ├── ui-bg_highlight-hard_55_555555_1x100.png
│ │ ├── ui-bg_highlight-soft_35_adadad_1x100.png
│ │ ├── ui-bg_highlight-soft_60_dddddd_1x100.png
│ │ ├── ui-bg_inset-soft_15_121212_1x100.png
│ │ ├── ui-icons_666666_256x240.png
│ │ ├── ui-icons_aaaaaa_256x240.png
│ │ ├── ui-icons_bbbbbb_256x240.png
│ │ ├── ui-icons_c98000_256x240.png
│ │ ├── ui-icons_cccccc_256x240.png
│ │ ├── ui-icons_cd0a0a_256x240.png
│ │ └── ui-icons_f29a00_256x240.png
│ │ ├── jquery-ui.css
│ │ ├── jquery-ui.min.css
│ │ └── jquery.ui.theme.css
└── ui
│ ├── .jshintrc
│ ├── i18n
│ ├── jquery-ui-i18n.js
│ ├── jquery.ui.datepicker-af.js
│ ├── jquery.ui.datepicker-ar-DZ.js
│ ├── jquery.ui.datepicker-ar.js
│ ├── jquery.ui.datepicker-az.js
│ ├── jquery.ui.datepicker-be.js
│ ├── jquery.ui.datepicker-bg.js
│ ├── jquery.ui.datepicker-bs.js
│ ├── jquery.ui.datepicker-ca.js
│ ├── jquery.ui.datepicker-cs.js
│ ├── jquery.ui.datepicker-cy-GB.js
│ ├── jquery.ui.datepicker-da.js
│ ├── jquery.ui.datepicker-de.js
│ ├── jquery.ui.datepicker-el.js
│ ├── jquery.ui.datepicker-en-AU.js
│ ├── jquery.ui.datepicker-en-GB.js
│ ├── jquery.ui.datepicker-en-NZ.js
│ ├── jquery.ui.datepicker-eo.js
│ ├── jquery.ui.datepicker-es.js
│ ├── jquery.ui.datepicker-et.js
│ ├── jquery.ui.datepicker-eu.js
│ ├── jquery.ui.datepicker-fa.js
│ ├── jquery.ui.datepicker-fi.js
│ ├── jquery.ui.datepicker-fo.js
│ ├── jquery.ui.datepicker-fr-CA.js
│ ├── jquery.ui.datepicker-fr-CH.js
│ ├── jquery.ui.datepicker-fr.js
│ ├── jquery.ui.datepicker-gl.js
│ ├── jquery.ui.datepicker-he.js
│ ├── jquery.ui.datepicker-hi.js
│ ├── jquery.ui.datepicker-hr.js
│ ├── jquery.ui.datepicker-hu.js
│ ├── jquery.ui.datepicker-hy.js
│ ├── jquery.ui.datepicker-id.js
│ ├── jquery.ui.datepicker-is.js
│ ├── jquery.ui.datepicker-it.js
│ ├── jquery.ui.datepicker-ja.js
│ ├── jquery.ui.datepicker-ka.js
│ ├── jquery.ui.datepicker-kk.js
│ ├── jquery.ui.datepicker-km.js
│ ├── jquery.ui.datepicker-ko.js
│ ├── jquery.ui.datepicker-ky.js
│ ├── jquery.ui.datepicker-lb.js
│ ├── jquery.ui.datepicker-lt.js
│ ├── jquery.ui.datepicker-lv.js
│ ├── jquery.ui.datepicker-mk.js
│ ├── jquery.ui.datepicker-ml.js
│ ├── jquery.ui.datepicker-ms.js
│ ├── jquery.ui.datepicker-nb.js
│ ├── jquery.ui.datepicker-nl-BE.js
│ ├── jquery.ui.datepicker-nl.js
│ ├── jquery.ui.datepicker-nn.js
│ ├── jquery.ui.datepicker-no.js
│ ├── jquery.ui.datepicker-pl.js
│ ├── jquery.ui.datepicker-pt-BR.js
│ ├── jquery.ui.datepicker-pt.js
│ ├── jquery.ui.datepicker-rm.js
│ ├── jquery.ui.datepicker-ro.js
│ ├── jquery.ui.datepicker-ru.js
│ ├── jquery.ui.datepicker-sk.js
│ ├── jquery.ui.datepicker-sl.js
│ ├── jquery.ui.datepicker-sq.js
│ ├── jquery.ui.datepicker-sr-SR.js
│ ├── jquery.ui.datepicker-sr.js
│ ├── jquery.ui.datepicker-sv.js
│ ├── jquery.ui.datepicker-ta.js
│ ├── jquery.ui.datepicker-th.js
│ ├── jquery.ui.datepicker-tj.js
│ ├── jquery.ui.datepicker-tr.js
│ ├── jquery.ui.datepicker-uk.js
│ ├── jquery.ui.datepicker-vi.js
│ ├── jquery.ui.datepicker-zh-CN.js
│ ├── jquery.ui.datepicker-zh-HK.js
│ └── jquery.ui.datepicker-zh-TW.js
│ ├── jquery-ui.js
│ ├── jquery.ui.accordion.js
│ ├── jquery.ui.autocomplete.js
│ ├── jquery.ui.button.js
│ ├── jquery.ui.core.js
│ ├── jquery.ui.datepicker.js
│ ├── jquery.ui.dialog.js
│ ├── jquery.ui.draggable.js
│ ├── jquery.ui.droppable.js
│ ├── jquery.ui.effect-blind.js
│ ├── jquery.ui.effect-bounce.js
│ ├── jquery.ui.effect-clip.js
│ ├── jquery.ui.effect-drop.js
│ ├── jquery.ui.effect-explode.js
│ ├── jquery.ui.effect-fade.js
│ ├── jquery.ui.effect-fold.js
│ ├── jquery.ui.effect-highlight.js
│ ├── jquery.ui.effect-pulsate.js
│ ├── jquery.ui.effect-scale.js
│ ├── jquery.ui.effect-shake.js
│ ├── jquery.ui.effect-slide.js
│ ├── jquery.ui.effect-transfer.js
│ ├── jquery.ui.effect.js
│ ├── jquery.ui.menu.js
│ ├── jquery.ui.mouse.js
│ ├── jquery.ui.position.js
│ ├── jquery.ui.progressbar.js
│ ├── jquery.ui.resizable.js
│ ├── jquery.ui.selectable.js
│ ├── jquery.ui.slider.js
│ ├── jquery.ui.sortable.js
│ ├── jquery.ui.spinner.js
│ ├── jquery.ui.tabs.js
│ ├── jquery.ui.tooltip.js
│ ├── jquery.ui.widget.js
│ └── minified
│ ├── i18n
│ ├── jquery-ui-i18n.min.js
│ ├── jquery.ui.datepicker-af.min.js
│ ├── jquery.ui.datepicker-ar-DZ.min.js
│ ├── jquery.ui.datepicker-ar.min.js
│ ├── jquery.ui.datepicker-az.min.js
│ ├── jquery.ui.datepicker-be.min.js
│ ├── jquery.ui.datepicker-bg.min.js
│ ├── jquery.ui.datepicker-bs.min.js
│ ├── jquery.ui.datepicker-ca.min.js
│ ├── jquery.ui.datepicker-cs.min.js
│ ├── jquery.ui.datepicker-cy-GB.min.js
│ ├── jquery.ui.datepicker-da.min.js
│ ├── jquery.ui.datepicker-de.min.js
│ ├── jquery.ui.datepicker-el.min.js
│ ├── jquery.ui.datepicker-en-AU.min.js
│ ├── jquery.ui.datepicker-en-GB.min.js
│ ├── jquery.ui.datepicker-en-NZ.min.js
│ ├── jquery.ui.datepicker-eo.min.js
│ ├── jquery.ui.datepicker-es.min.js
│ ├── jquery.ui.datepicker-et.min.js
│ ├── jquery.ui.datepicker-eu.min.js
│ ├── jquery.ui.datepicker-fa.min.js
│ ├── jquery.ui.datepicker-fi.min.js
│ ├── jquery.ui.datepicker-fo.min.js
│ ├── jquery.ui.datepicker-fr-CA.min.js
│ ├── jquery.ui.datepicker-fr-CH.min.js
│ ├── jquery.ui.datepicker-fr.min.js
│ ├── jquery.ui.datepicker-gl.min.js
│ ├── jquery.ui.datepicker-he.min.js
│ ├── jquery.ui.datepicker-hi.min.js
│ ├── jquery.ui.datepicker-hr.min.js
│ ├── jquery.ui.datepicker-hu.min.js
│ ├── jquery.ui.datepicker-hy.min.js
│ ├── jquery.ui.datepicker-id.min.js
│ ├── jquery.ui.datepicker-is.min.js
│ ├── jquery.ui.datepicker-it.min.js
│ ├── jquery.ui.datepicker-ja.min.js
│ ├── jquery.ui.datepicker-ka.min.js
│ ├── jquery.ui.datepicker-kk.min.js
│ ├── jquery.ui.datepicker-km.min.js
│ ├── jquery.ui.datepicker-ko.min.js
│ ├── jquery.ui.datepicker-ky.min.js
│ ├── jquery.ui.datepicker-lb.min.js
│ ├── jquery.ui.datepicker-lt.min.js
│ ├── jquery.ui.datepicker-lv.min.js
│ ├── jquery.ui.datepicker-mk.min.js
│ ├── jquery.ui.datepicker-ml.min.js
│ ├── jquery.ui.datepicker-ms.min.js
│ ├── jquery.ui.datepicker-nb.min.js
│ ├── jquery.ui.datepicker-nl-BE.min.js
│ ├── jquery.ui.datepicker-nl.min.js
│ ├── jquery.ui.datepicker-nn.min.js
│ ├── jquery.ui.datepicker-no.min.js
│ ├── jquery.ui.datepicker-pl.min.js
│ ├── jquery.ui.datepicker-pt-BR.min.js
│ ├── jquery.ui.datepicker-pt.min.js
│ ├── jquery.ui.datepicker-rm.min.js
│ ├── jquery.ui.datepicker-ro.min.js
│ ├── jquery.ui.datepicker-ru.min.js
│ ├── jquery.ui.datepicker-sk.min.js
│ ├── jquery.ui.datepicker-sl.min.js
│ ├── jquery.ui.datepicker-sq.min.js
│ ├── jquery.ui.datepicker-sr-SR.min.js
│ ├── jquery.ui.datepicker-sr.min.js
│ ├── jquery.ui.datepicker-sv.min.js
│ ├── jquery.ui.datepicker-ta.min.js
│ ├── jquery.ui.datepicker-th.min.js
│ ├── jquery.ui.datepicker-tj.min.js
│ ├── jquery.ui.datepicker-tr.min.js
│ ├── jquery.ui.datepicker-uk.min.js
│ ├── jquery.ui.datepicker-vi.min.js
│ ├── jquery.ui.datepicker-zh-CN.min.js
│ ├── jquery.ui.datepicker-zh-HK.min.js
│ └── jquery.ui.datepicker-zh-TW.min.js
│ ├── jquery-ui.min.js
│ ├── jquery.ui.accordion.min.js
│ ├── jquery.ui.autocomplete.min.js
│ ├── jquery.ui.button.min.js
│ ├── jquery.ui.core.min.js
│ ├── jquery.ui.datepicker.min.js
│ ├── jquery.ui.dialog.min.js
│ ├── jquery.ui.draggable.min.js
│ ├── jquery.ui.droppable.min.js
│ ├── jquery.ui.effect-blind.min.js
│ ├── jquery.ui.effect-bounce.min.js
│ ├── jquery.ui.effect-clip.min.js
│ ├── jquery.ui.effect-drop.min.js
│ ├── jquery.ui.effect-explode.min.js
│ ├── jquery.ui.effect-fade.min.js
│ ├── jquery.ui.effect-fold.min.js
│ ├── jquery.ui.effect-highlight.min.js
│ ├── jquery.ui.effect-pulsate.min.js
│ ├── jquery.ui.effect-scale.min.js
│ ├── jquery.ui.effect-shake.min.js
│ ├── jquery.ui.effect-slide.min.js
│ ├── jquery.ui.effect-transfer.min.js
│ ├── jquery.ui.effect.min.js
│ ├── jquery.ui.menu.min.js
│ ├── jquery.ui.mouse.min.js
│ ├── jquery.ui.position.min.js
│ ├── jquery.ui.progressbar.min.js
│ ├── jquery.ui.resizable.min.js
│ ├── jquery.ui.selectable.min.js
│ ├── jquery.ui.slider.min.js
│ ├── jquery.ui.sortable.min.js
│ ├── jquery.ui.spinner.min.js
│ ├── jquery.ui.tabs.min.js
│ ├── jquery.ui.tooltip.min.js
│ └── jquery.ui.widget.min.js
├── jquery.easy-pie-chart
├── .bower.json
├── .gitignore
├── Gruntfile.js
├── Readme.md
├── bower.json
├── dist
│ ├── angular.easypiechart.js
│ ├── angular.easypiechart.min.js
│ ├── easypiechart.js
│ ├── easypiechart.min.js
│ ├── jquery.easypiechart.js
│ └── jquery.easypiechart.min.js
├── package.json
└── src
│ ├── angular.directive.js
│ ├── easypiechart.js
│ ├── jquery.plugin.js
│ └── renderer
│ └── canvas.js
├── jquery.sparkline
└── jquery.sparkline.js
├── jquery.threedubmedia
├── bower.json
├── event.drag
│ ├── jquery.event.drag.js
│ ├── jquery.event.drag.live.js
│ └── test
│ │ ├── binding.js
│ │ ├── handlers.js
│ │ ├── index.html
│ │ ├── interaction.js
│ │ ├── live.js
│ │ ├── method.js
│ │ ├── properties.js
│ │ ├── requirements.js
│ │ └── touch.js
├── event.drop
│ ├── jquery.event.drop.js
│ ├── jquery.event.drop.live.js
│ └── test
│ │ ├── binding.js
│ │ ├── handlers.js
│ │ ├── index.html
│ │ ├── interaction.js
│ │ ├── live.js
│ │ ├── method.js
│ │ ├── properties.js
│ │ ├── requirements.js
│ │ ├── tolerance.js
│ │ └── touch.js
├── event.keyend
│ └── jquery.event.keyend.js
├── event.linger
│ ├── jquery.event.linger.js
│ └── test
│ │ ├── binding.js
│ │ ├── handlers.js
│ │ ├── index.html
│ │ ├── interaction.js
│ │ ├── method.js
│ │ └── requirements.js
├── event.wheel
│ └── jquery.event.wheel.js
├── fire
│ ├── jquery.fire.js
│ └── test
│ │ ├── custom.js
│ │ ├── form.js
│ │ ├── index.html
│ │ ├── key.js
│ │ ├── mouse.js
│ │ ├── mutation.js
│ │ ├── object.js
│ │ ├── requirements.js
│ │ └── touch.js
└── jquery
│ ├── jquery-1.4.2.js
│ ├── jquery-1.4.4.js
│ ├── jquery-1.5b1.js
│ ├── jquery-1.7.2.js
│ ├── jquery.js
│ ├── qunit.css
│ └── qunit.js
├── jquery
├── .editorconfig
├── .gitattributes
├── .gitignore
├── .gitmodules
├── .jshintrc
├── .mailmap
├── AUTHORS.txt
├── CONTRIBUTING.md
├── Gruntfile.js
├── MIT-LICENSE.txt
├── README.md
├── bower.json
├── build
│ ├── release-notes.js
│ └── release.js
├── component.json
├── composer.json
├── jquery-migrate.js
├── jquery-migrate.min.js
├── jquery.js
├── jquery.min.js
├── package.json
├── speed
│ ├── benchmark.js
│ ├── benchmarker.css
│ ├── benchmarker.js
│ ├── closest.html
│ ├── css.html
│ ├── event.html
│ ├── filter.html
│ ├── find.html
│ ├── index.html
│ ├── jquery-basis.js
│ └── slice.vs.concat.html
├── src
│ ├── .jshintrc
│ ├── ajax.js
│ ├── ajax
│ │ ├── jsonp.js
│ │ ├── script.js
│ │ └── xhr.js
│ ├── attributes.js
│ ├── callbacks.js
│ ├── core.js
│ ├── css.js
│ ├── data.js
│ ├── deferred.js
│ ├── deprecated.js
│ ├── dimensions.js
│ ├── effects.js
│ ├── event-alias.js
│ ├── event.js
│ ├── exports.js
│ ├── intro.js
│ ├── manipulation.js
│ ├── offset.js
│ ├── outro.js
│ ├── queue.js
│ ├── selector-native.js
│ ├── serialize.js
│ ├── sizzle-jquery.js
│ ├── support.js
│ ├── traversing.js
│ └── wrap.js
└── test
│ ├── .jshintignore
│ ├── .jshintrc
│ ├── data
│ ├── 1x1.jpg
│ ├── ajax
│ │ └── unreleasedXHR.html
│ ├── atom+xml.php
│ ├── badcall.js
│ ├── badjson.js
│ ├── cleanScript.html
│ ├── core
│ │ ├── cc_on.html
│ │ ├── dont_return.php
│ │ └── dynamic_ready.html
│ ├── dashboard.xml
│ ├── dimensions
│ │ ├── documentLarge.html
│ │ └── documentSmall.html
│ ├── echoData.php
│ ├── echoQuery.php
│ ├── errorWithJSON.php
│ ├── errorWithText.php
│ ├── etag.php
│ ├── evalScript.php
│ ├── event
│ │ ├── focusElem.html
│ │ ├── longLoadScript.php
│ │ ├── onbeforeunload.html
│ │ ├── promiseReady.html
│ │ └── syncReady.html
│ ├── headers.php
│ ├── if_modified_since.php
│ ├── iframe.html
│ ├── jquery-1.9.1.ajax_xhr.min.js
│ ├── json.php
│ ├── json_obj.js
│ ├── jsonp.php
│ ├── manipulation
│ │ └── iframe-denied.html
│ ├── name.html
│ ├── name.php
│ ├── nocontent.php
│ ├── offset
│ │ ├── absolute.html
│ │ ├── body.html
│ │ ├── fixed.html
│ │ ├── relative.html
│ │ ├── scroll.html
│ │ ├── static.html
│ │ └── table.html
│ ├── params_html.php
│ ├── readywaitasset.js
│ ├── readywaitloader.js
│ ├── script.php
│ ├── selector
│ │ ├── html5_selector.html
│ │ └── sizzle_cache.html
│ ├── statusText.php
│ ├── support
│ │ ├── bodyBackground.html
│ │ ├── boxSizing.html
│ │ ├── csp.js
│ │ ├── csp.php
│ │ ├── shrinkWrapBlocks.html
│ │ └── testElementCrash.html
│ ├── test.html
│ ├── test.js
│ ├── test.php
│ ├── test2.html
│ ├── test3.html
│ ├── testinit.js
│ ├── testrunner.js
│ ├── testsuite.css
│ ├── text.php
│ ├── ua.txt
│ ├── with_fries.xml
│ └── with_fries_over_jsonp.php
│ ├── delegatetest.html
│ ├── hovertest.html
│ ├── index.html
│ ├── jquery.js
│ ├── localfile.html
│ ├── networkerror.html
│ ├── readywait.html
│ ├── unit
│ ├── ajax.js
│ ├── attributes.js
│ ├── callbacks.js
│ ├── core.js
│ ├── css.js
│ ├── data.js
│ ├── deferred.js
│ ├── deprecated.js
│ ├── dimensions.js
│ ├── effects.js
│ ├── event.js
│ ├── exports.js
│ ├── manipulation.js
│ ├── offset.js
│ ├── queue.js
│ ├── selector.js
│ ├── serialize.js
│ ├── support.js
│ ├── traversing.js
│ └── wrap.js
│ └── xhtml.php
├── nvd3
├── .bower.json
├── .gitignore
├── .jshintrc
├── GruntFile.js
├── LICENSE.md
├── Makefile
├── README.md
├── build.bat
├── deprecated
│ ├── bar.html
│ ├── bar.js
│ ├── charts
│ │ ├── cumulativeLineChart.js
│ │ ├── discreteBarChart.js
│ │ ├── lineChart.js
│ │ ├── lineChartDaily.js
│ │ └── stackedAreaChart.js
│ ├── cumulativeLine.html
│ ├── cumulativeLine.js
│ ├── discreteBarChartWithEnabledTooltip.html
│ ├── discreteBarChartWithEnabledTooltip.js
│ ├── discreteBarWithAxes.html
│ ├── discreteBarWithAxes.js
│ ├── lineChart-old.html
│ ├── lineChartDaily.html
│ ├── linePlusBar.html
│ ├── linePlusBar.js
│ ├── lineWithFocus.html
│ ├── lineWithFocus.js
│ ├── lineWithFourAxes.html
│ ├── lineWithFourAxes.js
│ ├── lineWithLegend.html
│ ├── lineWithLegend.js
│ ├── monthendAxis.html
│ ├── multiBarHorizontalWithLegend.html
│ ├── multiBarHorizontalWithLegend.js
│ ├── multiBarWithLegend.html
│ ├── multiBarWithLegend.js
│ ├── pie.js
│ ├── scatterChart.html
│ ├── scatterChart.js
│ ├── scatterFisheyeChart.js
│ ├── scatterWithLegend.html
│ ├── scatterWithLegend.js
│ ├── stackedArea.js
│ ├── stackedAreaChart.html
│ ├── stackedAreaChart_old.html
│ ├── stackedAreaWithLegend.html
│ └── stackedAreaWithLegend.js
├── examples
│ ├── bullet.html
│ ├── bulletChart.html
│ ├── crossfilter.html
│ ├── crossfilterWithDimentions.html
│ ├── crossfilterWithTables.html
│ ├── cumulativeLineChart.html
│ ├── discreteBarChart.html
│ ├── historicalBar.html
│ ├── historicalBarChart.html
│ ├── horizon.html
│ ├── images
│ │ ├── grey-minus.png
│ │ ├── grey-plus.png
│ │ └── nvd3_sampleLineChart1.png
│ ├── indentedtree.html
│ ├── index.html
│ ├── legend.html
│ ├── line.html
│ ├── lineChart.html
│ ├── lineChartSVGResize.html
│ ├── linePlusBarChart.html
│ ├── linePlusBarWithFocusChart.html
│ ├── lineWithFisheyeChart.html
│ ├── lineWithFocusChart.html
│ ├── multiBar.html
│ ├── multiBarChart.html
│ ├── multiBarHorizontalChart.html
│ ├── multiChart.html
│ ├── nations.json
│ ├── parallelCoordinates.html
│ ├── pie.html
│ ├── pieChart.html
│ ├── scatter.html
│ ├── scatterChart.html
│ ├── scatterPlusLineChart.html
│ ├── sparkline.html
│ ├── sparklinePlus.html
│ ├── stackedArea.html
│ ├── stackedAreaChart.html
│ └── stream_layers.js
├── lib
│ ├── cie.js
│ ├── colorbrewer.js
│ ├── crossfilter.js
│ ├── crossfilter.min.js
│ ├── d3.v2.js
│ ├── d3.v2.min.js
│ ├── d3.v3.js
│ ├── fisheye.js
│ ├── hive.js
│ ├── horizon.js
│ └── sankey.js
├── nv.d3.js
├── nv.d3.min.js
├── package.json
├── src
│ ├── core.js
│ ├── interactiveLayer.js
│ ├── intro.js
│ ├── models
│ │ ├── axis.js
│ │ ├── backup
│ │ │ ├── bullet.js
│ │ │ └── bulletChart.js
│ │ ├── boilerplate.js
│ │ ├── bullet.js
│ │ ├── bulletChart.js
│ │ ├── cumulativeLineChart.js
│ │ ├── discreteBar.js
│ │ ├── discreteBarChart.js
│ │ ├── distribution.js
│ │ ├── historicalBar.js
│ │ ├── historicalBarChart.js
│ │ ├── indentedTree.js
│ │ ├── legend.js
│ │ ├── line.js
│ │ ├── lineChart.js
│ │ ├── linePlusBarChart.js
│ │ ├── linePlusBarWithFocusChart.js
│ │ ├── lineWithFisheye.js
│ │ ├── lineWithFisheyeChart.js
│ │ ├── lineWithFocusChart.js
│ │ ├── multiBar.js
│ │ ├── multiBarChart.js
│ │ ├── multiBarHorizontal.js
│ │ ├── multiBarHorizontalChart.js
│ │ ├── multiBarTimeSeries.js
│ │ ├── multiBarTimeSeriesChart.js
│ │ ├── multiChart.js
│ │ ├── ohlcBar.js
│ │ ├── parallelCoordinates.js
│ │ ├── pie.js
│ │ ├── pieChart.js
│ │ ├── scatter.js
│ │ ├── scatterChart.js
│ │ ├── scatterPlusLineChart.js
│ │ ├── sparkline.js
│ │ ├── sparklinePlus.js
│ │ ├── stackedArea.js
│ │ └── stackedAreaChart.js
│ ├── nv.d3.css
│ ├── outro.js
│ ├── tooltip.js
│ └── utils.js
└── test
│ ├── ScatterChartTest.html
│ ├── interactiveBisectTest.html
│ ├── lineChartTest.html
│ ├── multiBarChartTest.html
│ ├── pieChartTest.html
│ ├── polylinearTest.html
│ ├── realTimeChartTest.html
│ ├── stackedAreaChartTest.html
│ ├── testScript.js
│ └── teststyle.css
├── requirejs
├── .bower.json
├── .gitignore
├── LICENSE
├── README.md
├── dist
│ ├── Markdown-License.text
│ ├── Markdown.pl
│ ├── README.md
│ ├── dist-build.sh
│ ├── dist-site.js
│ ├── file.js
│ ├── fonts
│ │ ├── Inconsolata.ttf
│ │ └── PT-Sans
│ │ │ ├── PT_Sans.ttf
│ │ │ ├── PT_Sans_Bold.ttf
│ │ │ ├── PT_Sans_Bold_Italic.ttf
│ │ │ ├── PT_Sans_Caption.ttf
│ │ │ ├── PT_Sans_Caption_Bold.ttf
│ │ │ ├── PT_Sans_Italic.ttf
│ │ │ ├── PT_Sans_Narrow.ttf
│ │ │ ├── PT_Sans_Narrow_Bold.ttf
│ │ │ └── Paratype PT Sans Free Font License.txt
│ ├── init.js
│ ├── post.html
│ └── pre.html
├── docs
│ ├── api.html
│ ├── commonjs.html
│ ├── contributing.html
│ ├── design
│ │ └── packages.md
│ ├── dojo.html
│ ├── download.html
│ ├── errors.html
│ ├── faq-advanced.html
│ ├── faq-optimization.html
│ ├── faq.html
│ ├── history.html
│ ├── jquery.html
│ ├── node.html
│ ├── optimization.html
│ ├── plugins.html
│ ├── requirements.html
│ ├── start.html
│ ├── why.html
│ └── whyamd.html
├── index.html
├── package.json
├── require.js
├── tasks.txt
├── testBaseUrl.js
├── tests
│ ├── NAMESPACE.html
│ ├── README.md
│ ├── afterload.html
│ ├── afterloadreadystate.js
│ ├── all-server.js
│ ├── all.js
│ ├── allj.sh
│ ├── alln.sh
│ ├── anon
│ │ ├── a.js
│ │ ├── anon-tests.js
│ │ ├── anonSimple.html
│ │ ├── blue.js
│ │ ├── c.js
│ │ ├── green.js
│ │ ├── magenta.js
│ │ ├── message.txt
│ │ ├── red.js
│ │ ├── sub
│ │ │ └── b.js
│ │ └── yellow.js
│ ├── bar
│ ├── baseUrl.html
│ ├── browsertests
│ │ ├── appendbeforeload
│ │ │ ├── one.dphpd
│ │ │ ├── test.html
│ │ │ └── two.js
│ │ ├── async
│ │ │ ├── async.php
│ │ │ ├── one.php
│ │ │ └── two.js
│ │ ├── common.js
│ │ ├── docwritenested
│ │ │ ├── index.html
│ │ │ ├── one.js
│ │ │ └── two.js
│ │ ├── functionToString.html
│ │ ├── noload
│ │ │ ├── index.html
│ │ │ └── server.js
│ │ ├── onerror
│ │ │ ├── index.html
│ │ │ ├── ok.js
│ │ │ ├── parseError.js
│ │ │ └── scriptError.js
│ │ ├── scriptload
│ │ │ ├── eight.js
│ │ │ ├── five.js
│ │ │ ├── four.js
│ │ │ ├── index.html
│ │ │ ├── nine.js
│ │ │ ├── one.js
│ │ │ ├── seven.js
│ │ │ ├── six.js
│ │ │ ├── three.js
│ │ │ └── two.js
│ │ ├── scriptloadinteractive
│ │ │ ├── eight.js
│ │ │ ├── five.js
│ │ │ ├── four.js
│ │ │ ├── four.php
│ │ │ ├── index-php.html
│ │ │ ├── index.html
│ │ │ ├── nine.js
│ │ │ ├── one.js
│ │ │ ├── seven.js
│ │ │ ├── six.js
│ │ │ ├── six.php
│ │ │ ├── three.js
│ │ │ └── two.js
│ │ ├── scriptloadinteractiveattach
│ │ │ ├── eight.js
│ │ │ ├── five.js
│ │ │ ├── four.js
│ │ │ ├── four.php
│ │ │ ├── index-php.html
│ │ │ ├── index.html
│ │ │ ├── nine.js
│ │ │ ├── one.js
│ │ │ ├── seven.js
│ │ │ ├── six.js
│ │ │ ├── six.php
│ │ │ ├── three.js
│ │ │ └── two.js
│ │ └── vardefine
│ │ │ ├── define.js
│ │ │ ├── four.js
│ │ │ ├── index.html
│ │ │ ├── one.js
│ │ │ ├── three.js
│ │ │ └── two.js
│ ├── circular-tests.js
│ ├── circular.html
│ ├── circular
│ │ ├── 414
│ │ │ ├── 414-tests.js
│ │ │ ├── 414.html
│ │ │ ├── A.js
│ │ │ ├── B.js
│ │ │ ├── C.js
│ │ │ └── MyClass.js
│ │ ├── a.js
│ │ ├── b.js
│ │ ├── c.js
│ │ ├── circularPlugin-tests.js
│ │ ├── circularPlugin.html
│ │ ├── complexPlugin
│ │ │ ├── complexPlugin-tests.js
│ │ │ ├── complexPlugin.html
│ │ │ ├── helper.js
│ │ │ ├── main.js
│ │ │ ├── slowText.js
│ │ │ ├── toolbar.html
│ │ │ ├── toolbar.js
│ │ │ ├── viewport.html
│ │ │ └── viewport.js
│ │ ├── plugin.js
│ │ └── transpiler
│ │ │ ├── a.refine
│ │ │ ├── b.refine
│ │ │ ├── c.refine
│ │ │ ├── d.refine
│ │ │ ├── e.refine
│ │ │ ├── transpiler-tests.js
│ │ │ └── transpiler.html
│ ├── cjsSpace
│ │ ├── a.js
│ │ ├── b.js
│ │ ├── c.js
│ │ ├── cjsDotRequire-tests.js
│ │ ├── cjsDotRequire.html
│ │ ├── cjsSpace-tests.js
│ │ └── cjsSpace.html
│ ├── commonjs
│ │ └── tests
│ │ │ └── modules
│ │ │ └── 1.0
│ │ │ ├── absolute
│ │ │ ├── b.js
│ │ │ ├── program.html
│ │ │ ├── program.js
│ │ │ ├── submodule
│ │ │ │ └── a.js
│ │ │ └── test.js
│ │ │ ├── all.html
│ │ │ ├── cyclic
│ │ │ ├── a.js
│ │ │ ├── b.js
│ │ │ ├── program.html
│ │ │ ├── program.js
│ │ │ └── test.js
│ │ │ ├── determinism
│ │ │ ├── program.html
│ │ │ ├── program.js
│ │ │ ├── submodule
│ │ │ │ ├── a.js
│ │ │ │ └── b.js
│ │ │ └── test.js
│ │ │ ├── exactExports
│ │ │ ├── a.js
│ │ │ ├── program.html
│ │ │ ├── program.js
│ │ │ └── test.js
│ │ │ ├── hasOwnProperty
│ │ │ ├── method
│ │ │ ├── a.js
│ │ │ ├── program.html
│ │ │ ├── program.js
│ │ │ └── test.js
│ │ │ ├── missing
│ │ │ ├── program.html
│ │ │ ├── program.js
│ │ │ └── test.js
│ │ │ ├── monkeys
│ │ │ ├── a.js
│ │ │ ├── program.html
│ │ │ ├── program.js
│ │ │ └── test.js
│ │ │ ├── nested
│ │ │ ├── a
│ │ │ │ └── b
│ │ │ │ │ └── c
│ │ │ │ │ └── d.js
│ │ │ ├── program.html
│ │ │ ├── program.js
│ │ │ └── test.js
│ │ │ ├── relative
│ │ │ ├── program.html
│ │ │ ├── program.js
│ │ │ ├── submodule
│ │ │ │ ├── a.js
│ │ │ │ └── b.js
│ │ │ └── test.js
│ │ │ ├── system.js
│ │ │ ├── test.js
│ │ │ └── transitive
│ │ │ ├── a.js
│ │ │ ├── b.js
│ │ │ ├── c.js
│ │ │ ├── program.html
│ │ │ ├── program.js
│ │ │ └── test.js
│ ├── config.html
│ ├── configRequirejs.html
│ ├── dataMain
│ │ ├── baseUrl
│ │ │ ├── a.js
│ │ │ ├── dataMainBaseUrl.html
│ │ │ └── src
│ │ │ │ └── main.js
│ │ ├── dataMain.html
│ │ ├── dataMain.js
│ │ └── dataMainIndex
│ │ │ ├── dataMainIndex.html
│ │ │ └── index.js
│ ├── defineDouble
│ │ └── defineDouble.html
│ ├── definedSpecified
│ │ ├── a.js
│ │ ├── b.js
│ │ ├── definedSpecified-tests.js
│ │ └── definedSpecified.html
│ ├── delayedDefine
│ │ ├── delayedDefine-tests.js
│ │ └── delayedDefine.html
│ ├── depEmpty.html
│ ├── depoverlap.html
│ ├── depoverlap.js
│ ├── dimple.js
│ ├── doh
│ │ ├── LICENSE
│ │ ├── README
│ │ ├── _browserRunner.js
│ │ ├── _nodeRunner.js
│ │ ├── _rhinoRunner.js
│ │ ├── _sounds
│ │ │ ├── LICENSE
│ │ │ ├── doh.wav
│ │ │ ├── dohaaa.wav
│ │ │ └── woohoo.wav
│ │ ├── runner.html
│ │ ├── runner.js
│ │ ├── runner.sh
│ │ └── small_logo.png
│ ├── domReady
│ │ ├── domReady-tests.js
│ │ ├── domReady.html
│ │ ├── domReadyExtraConfig-tests.js
│ │ ├── domReadyExtraConfig.html
│ │ ├── one.js
│ │ └── two.js
│ ├── dos.js
│ ├── error
│ │ ├── a.js
│ │ ├── b.js
│ │ ├── c.js
│ │ ├── d.js
│ │ ├── defineError.js
│ │ ├── defineErrorLocal.html
│ │ ├── doubleRequire
│ │ │ ├── b.js
│ │ │ ├── c.js
│ │ │ └── doubleRequire.html
│ │ ├── errorContinue.html
│ │ ├── errorContinueLocal.html
│ │ ├── globalOnError.html
│ │ ├── plug.js
│ │ ├── pluginErrorContinue.html
│ │ ├── pluginErrorContinueLocal.html
│ │ └── requireErrback.html
│ ├── exports
│ │ ├── am.js
│ │ ├── assign.js
│ │ ├── assign2.js
│ │ ├── bm.js
│ │ ├── cm.js
│ │ ├── exports-tests.js
│ │ ├── exports.html
│ │ ├── funcSet.js
│ │ ├── implicitModule.js
│ │ ├── moduleAndExports-tests.js
│ │ ├── moduleAndExports.html
│ │ ├── simpleReturn.js
│ │ ├── usethis.js
│ │ └── vanilla.js
│ ├── foo
│ ├── func.js
│ ├── funcFour.js
│ ├── funcOne.js
│ ├── funcThree.js
│ ├── funcTwo.js
│ ├── hasOwnProperty
│ ├── i18n
│ │ ├── common.html
│ │ ├── commonA.js
│ │ ├── commonB.js
│ │ ├── i18n.html
│ │ ├── nls
│ │ │ ├── colors.js
│ │ │ ├── en-us-surfer
│ │ │ │ └── colors.js
│ │ │ └── fr
│ │ │ │ └── colors.js
│ │ └── testModule.js
│ ├── index.html
│ ├── isBrowser
│ │ ├── a.js
│ │ ├── isBrowser-tests.js
│ │ └── isBrowser.html
│ ├── issue379
│ │ ├── issue379.html
│ │ └── issue379.js
│ ├── jquery
│ │ ├── jquery.html
│ │ ├── jqueryDynamic.html
│ │ ├── jqueryDynamic2.html
│ │ └── scripts
│ │ │ ├── app.js
│ │ │ ├── dynamicApp.js
│ │ │ ├── jquery-1.7.1.js
│ │ │ ├── jquery-GPL-LICENSE.txt
│ │ │ ├── jquery-MIT-LICENSE.txt
│ │ │ ├── jquery.alpha.js
│ │ │ ├── jquery.beta.js
│ │ │ ├── jquery.epsilon.js
│ │ │ └── jquery.gamma.js
│ ├── jsonp
│ │ ├── jsonp.html
│ │ ├── lamp.js
│ │ └── twitter.html
│ ├── layers
│ │ ├── build.sh
│ │ ├── epsilon.js
│ │ ├── helloWorld.txt
│ │ ├── layer1.js
│ │ └── layers.html
│ ├── map.js
│ ├── mapConfig
│ │ ├── a1.js
│ │ ├── a1
│ │ │ └── sub
│ │ │ │ └── one.js
│ │ ├── adapter
│ │ │ └── d.js
│ │ ├── another
│ │ │ ├── c.js
│ │ │ ├── c
│ │ │ │ ├── dim.js
│ │ │ │ └── sub.js
│ │ │ └── minor.js
│ │ ├── b.js
│ │ ├── built
│ │ │ ├── mapConfig-tests.js
│ │ │ ├── mapConfigBuilt.html
│ │ │ ├── mapConfigPlugin-tests.js
│ │ │ ├── mapConfigPluginBuilt.html
│ │ │ ├── mapConfigStar-tests.js
│ │ │ ├── mapConfigStarAdapter-tests.js
│ │ │ ├── mapConfigStarAdapterBuilt.html
│ │ │ └── mapConfigStarBuilt.html
│ │ ├── c.js
│ │ ├── c
│ │ │ └── sub.js
│ │ ├── c1.js
│ │ ├── c1
│ │ │ └── sub.js
│ │ ├── c2.js
│ │ ├── c2
│ │ │ └── sub.js
│ │ ├── d.js
│ │ ├── e.js
│ │ ├── mapConfig-tests.js
│ │ ├── mapConfig.html
│ │ ├── mapConfigDelayed-tests.js
│ │ ├── mapConfigDelayed.html
│ │ ├── mapConfigMulti-tests.js
│ │ ├── mapConfigMulti.html
│ │ ├── mapConfigPlugin-tests.js
│ │ ├── mapConfigPlugin.html
│ │ ├── mapConfigRelative-tests.js
│ │ ├── mapConfigRelative.html
│ │ ├── mapConfigSpecificity-tests.js
│ │ ├── mapConfigSpecificity.html
│ │ ├── mapConfigStar-tests.js
│ │ ├── mapConfigStar.html
│ │ ├── mapConfigStarAdapter-tests.js
│ │ ├── mapConfigStarAdapter.html
│ │ ├── plug.js
│ │ └── plug
│ │ │ ├── c1.js
│ │ │ ├── c2.js
│ │ │ └── main.js
│ ├── moduleConfig
│ │ ├── a.js
│ │ ├── b
│ │ │ └── c.js
│ │ ├── moduleConfig-tests.js
│ │ ├── moduleConfig.html
│ │ └── plain.js
│ ├── multiversion.html
│ ├── nestedDefine
│ │ ├── four.js
│ │ ├── nestedDefine.html
│ │ ├── nestedDefine2.html
│ │ ├── nestedDefine2.js
│ │ ├── one.js
│ │ └── two.js
│ ├── nestedRelativeRequire
│ │ ├── main.js
│ │ ├── nestedRelativeRequire.html
│ │ └── sub
│ │ │ ├── a.js
│ │ │ └── b.js
│ ├── nestedRequire
│ │ ├── a.js
│ │ ├── base.js
│ │ ├── nestedRequire-tests.js
│ │ └── nestedRequire.html
│ ├── nestedRequireConfig
│ │ ├── nestedRequireConfig.html
│ │ └── nestedRequireConfig.js
│ ├── onResourceLoad
│ │ ├── a.js
│ │ ├── b.js
│ │ ├── nestedRequire-tests.js
│ │ └── nestedRequire.html
│ ├── one.js
│ ├── packages
│ │ ├── bar
│ │ │ └── 0.4
│ │ │ │ └── scripts
│ │ │ │ └── main.js
│ │ ├── baz
│ │ │ └── lib
│ │ │ │ ├── helper.js
│ │ │ │ └── index.js
│ │ ├── config
│ │ │ ├── config.html
│ │ │ └── pixie
│ │ │ │ └── index.js
│ │ ├── dojox
│ │ │ ├── door.js
│ │ │ └── window
│ │ │ │ ├── pane.js
│ │ │ │ └── window.js
│ │ ├── foo
│ │ │ └── lib
│ │ │ │ ├── main.js
│ │ │ │ └── second.js
│ │ ├── funky
│ │ │ ├── index.js
│ │ │ └── lib
│ │ │ │ └── monkey.js
│ │ ├── optimizing
│ │ │ ├── build.js
│ │ │ ├── main.js
│ │ │ ├── optimizing-built.html
│ │ │ ├── optimizing.html
│ │ │ └── packages
│ │ │ │ ├── engine
│ │ │ │ ├── main.js
│ │ │ │ ├── pistons.js
│ │ │ │ └── sparkplugs.js
│ │ │ │ ├── fuel
│ │ │ │ └── main.js
│ │ │ │ └── tires
│ │ │ │ └── main.js
│ │ ├── packages-tests.js
│ │ ├── packages.html
│ │ ├── pkgs
│ │ │ ├── alpha
│ │ │ │ ├── main.js
│ │ │ │ └── replace.js
│ │ │ ├── beta
│ │ │ │ └── 0.2
│ │ │ │ │ └── scripts
│ │ │ │ │ ├── beta.js
│ │ │ │ │ └── util.js
│ │ │ └── dojox
│ │ │ │ ├── chair
│ │ │ │ ├── legs.js
│ │ │ │ └── main.js
│ │ │ │ └── table
│ │ │ │ ├── legs.js
│ │ │ │ └── table.js
│ │ └── replace.js
│ ├── pathArray
│ │ ├── pathArray.html
│ │ ├── pathArrayFail.html
│ │ └── real.js
│ ├── paths
│ │ ├── first.js
│ │ │ ├── first.js
│ │ │ └── second.js
│ │ ├── impl
│ │ │ ├── array.js
│ │ │ └── util.js
│ │ ├── paths.html
│ │ ├── relativeModuleId-tests.js
│ │ ├── relativeModuleId.html
│ │ ├── relativeNormalize
│ │ │ ├── bar
│ │ │ │ └── baz.js
│ │ │ ├── foo2.js
│ │ │ ├── relativeNormalize-tests.js
│ │ │ └── relativeNormalize.html
│ │ └── util.js
│ ├── plugins
│ │ ├── a.js
│ │ ├── b.js
│ │ ├── c.js
│ │ ├── delegated
│ │ │ ├── a.refine
│ │ │ ├── delegated-tests.js
│ │ │ ├── delegated.html
│ │ │ └── delegated.js
│ │ ├── double.html
│ │ ├── double.js
│ │ ├── earth.js
│ │ ├── fromText
│ │ │ ├── a.refine
│ │ │ ├── b.refine
│ │ │ ├── fromText-tests.js
│ │ │ ├── fromText.html
│ │ │ ├── fromTextConfig-tests.js
│ │ │ ├── fromTextConfig.html
│ │ │ └── refine.js
│ │ ├── fromTextEvalError
│ │ │ ├── a.refine
│ │ │ ├── b.refine
│ │ │ ├── fromTextEvalError-tests.js
│ │ │ └── fromTextEvalError.html
│ │ ├── fromTextNoDefine
│ │ │ ├── a.refine
│ │ │ ├── fromTextNoDefine-tests.js
│ │ │ ├── fromTextNoDefine.html
│ │ │ └── refine.js
│ │ ├── index.js
│ │ ├── indexBuilder.js
│ │ ├── nameOnly-tests.js
│ │ ├── nameOnly.html
│ │ ├── nameOnly.js
│ │ ├── onerror
│ │ │ ├── onerror-tests.js
│ │ │ ├── onerror.html
│ │ │ └── thrower.js
│ │ ├── pluginLast
│ │ │ ├── app.js
│ │ │ ├── bigCollection.html
│ │ │ ├── bigCollection.js
│ │ │ ├── collection.js
│ │ │ ├── collectionHelper.js
│ │ │ ├── common.js
│ │ │ ├── component.html
│ │ │ ├── component.js
│ │ │ ├── main.js
│ │ │ ├── pluginLast.html
│ │ │ ├── specificCollection.html
│ │ │ └── specificCollection.js
│ │ ├── pluginMap
│ │ │ ├── dynamic
│ │ │ │ ├── application.js
│ │ │ │ ├── employee.js
│ │ │ │ ├── main.js
│ │ │ │ ├── person.js
│ │ │ │ ├── plugin.js
│ │ │ │ └── pluginMapDynamic.html
│ │ │ ├── pluginMap-tests.js
│ │ │ └── pluginMap.html
│ │ ├── pluginMapSameName
│ │ │ ├── plugin
│ │ │ │ └── plugin.js
│ │ │ ├── pluginMapSameName-tests.js
│ │ │ └── pluginMapSameName.html
│ │ ├── pluginShim
│ │ │ ├── a.refine
│ │ │ ├── legacy.js
│ │ │ ├── pluginShim-tests.js
│ │ │ └── pluginShim.html
│ │ ├── prime
│ │ │ ├── a.js
│ │ │ ├── b.js
│ │ │ ├── c.js
│ │ │ └── earth.js
│ │ ├── sync-tests.js
│ │ ├── sync.html
│ │ └── textDepend
│ │ │ ├── test.txt
│ │ │ ├── textDepend-tests.js
│ │ │ ├── textDepend.html
│ │ │ └── textDepend.js
│ ├── queryPath.html
│ ├── relative
│ │ ├── foo
│ │ │ ├── bar.js
│ │ │ ├── bar
│ │ │ │ ├── message.txt
│ │ │ │ ├── one.js
│ │ │ │ └── two.js
│ │ │ └── three.js
│ │ ├── greek
│ │ │ ├── alpha.js
│ │ │ └── main.js
│ │ ├── outsideBaseUrl
│ │ │ ├── 2.js
│ │ │ ├── a
│ │ │ │ └── outsideBaseUrl.html
│ │ │ └── b
│ │ │ │ ├── 1.js
│ │ │ │ └── 3.js
│ │ ├── relative-tests.js
│ │ ├── relative.html
│ │ ├── relativeBaseUrl-tests.js
│ │ ├── relativeBaseUrl.html
│ │ └── top.js
│ ├── remoteUrls
│ │ ├── jqwrap.js
│ │ ├── remoteUrls-tests.js
│ │ └── remoteUrls.html
│ ├── requireAsync
│ │ ├── requireAsync-tests.js
│ │ └── requireAsync.html
│ ├── requirePluginLoad
│ │ ├── requirePluginLoad-tests.js
│ │ └── requirePluginLoad.html
│ ├── shim
│ │ ├── a.js
│ │ ├── b.js
│ │ ├── basic-tests.js
│ │ ├── basic.html
│ │ ├── built
│ │ │ ├── basic-built.html
│ │ │ └── basic-tests.js
│ │ ├── c.js
│ │ ├── d.js
│ │ ├── e.js
│ │ └── f.js
│ ├── simple-badbase.html
│ ├── simple-nohead.html
│ ├── simple-tests.js
│ ├── simple.html
│ ├── simple.js
│ ├── specialDeps
│ │ ├── foo.js
│ │ ├── specialDeps-tests.js
│ │ └── specialDeps.html
│ ├── text
│ │ ├── local.js
│ │ ├── plain.txt
│ │ ├── resources
│ │ │ ├── local.html
│ │ │ └── sample.html
│ │ ├── separate.js
│ │ ├── subwidget.html
│ │ ├── subwidget.js
│ │ ├── subwidget2.html
│ │ ├── text.html
│ │ ├── textBuilt.html
│ │ ├── textBuilt.js
│ │ ├── textOnError.html
│ │ ├── textOnXhr.html
│ │ ├── textOnly.html
│ │ ├── widget.html
│ │ └── widget.js
│ ├── toUrl
│ │ ├── .hidden.html
│ │ ├── auxil.html
│ │ ├── main.html
│ │ ├── main.js
│ │ ├── sub
│ │ │ ├── nested
│ │ │ │ └── thing.js
│ │ │ ├── noext
│ │ │ ├── util.html
│ │ │ └── util.js
│ │ ├── toUrl-tests.js
│ │ └── toUrl.html
│ ├── trailingComma
│ │ ├── a.js
│ │ ├── trailingComma.html
│ │ └── trailingComma.js
│ ├── tres.js
│ ├── two.js
│ ├── undef
│ │ ├── globalFoo.js
│ │ ├── real.js
│ │ ├── undef.html
│ │ ├── undefEnforceShim.html
│ │ ├── undefLocal.html
│ │ └── undefNoRequire.html
│ ├── uniques
│ │ ├── one.js
│ │ ├── three.js
│ │ ├── two.js
│ │ └── uniques.html
│ ├── universal
│ │ ├── eye.js
│ │ ├── newt.js
│ │ ├── spell.js
│ │ ├── tail.js
│ │ ├── universal-built.html
│ │ ├── universal-tests-built-expected.js
│ │ ├── universal-tests-built.js
│ │ ├── universal-tests.js
│ │ └── universal.html
│ ├── uno.js
│ ├── urlArgsToUrl.html
│ ├── urlfetch
│ │ ├── one.js
│ │ ├── three.js
│ │ ├── two.js
│ │ └── urlfetch.html
│ ├── version1
│ │ ├── alpha.js
│ │ ├── beta.js
│ │ ├── gamma.js
│ │ └── omega.js
│ ├── version2
│ │ ├── alpha.js
│ │ ├── beta.js
│ │ ├── epsilon.js
│ │ └── omega.js
│ ├── workers.html
│ └── workers.js
└── updatesubs.sh
├── sizzle
├── .bower.json
├── dist
│ ├── sizzle.js
│ ├── sizzle.min.js
│ └── sizzle.min.map
└── test
│ ├── data
│ └── testinit.js
│ ├── index.html
│ ├── jquery.js
│ └── unit
│ ├── extending.js
│ ├── selector.js
│ └── utilities.js
└── slickGrid
├── MIT-LICENSE.txt
├── README.md
├── controls
├── slick.columnpicker.css
├── slick.columnpicker.js
├── slick.pager.css
└── slick.pager.js
├── css
└── smoothness
│ ├── images
│ ├── ui-bg_flat_0_aaaaaa_40x100.png
│ ├── ui-bg_flat_75_ffffff_40x100.png
│ ├── ui-bg_glass_55_fbf9ee_1x400.png
│ ├── ui-bg_glass_65_ffffff_1x400.png
│ ├── ui-bg_glass_75_dadada_1x400.png
│ ├── ui-bg_glass_75_e6e6e6_1x400.png
│ ├── ui-bg_glass_95_fef1ec_1x400.png
│ ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│ ├── ui-icons_222222_256x240.png
│ ├── ui-icons_2e83ff_256x240.png
│ ├── ui-icons_454545_256x240.png
│ ├── ui-icons_888888_256x240.png
│ └── ui-icons_cd0a0a_256x240.png
│ └── jquery-ui-1.8.16.custom.css
├── examples
├── example-autotooltips.html
├── example-checkbox-row-select.html
├── example-colspan.html
├── example-composite-editor-item-details.html
├── example-custom-column-value-extractor.html
├── example-explicit-initialization.html
├── example-grouping.html
├── example-header-row.html
├── example-multi-column-sort.html
├── example-optimizing-dataview.html
├── example-plugin-headerbuttons.html
├── example-plugin-headermenu.html
├── example-spreadsheet.html
├── example-totals-via-data-provider.html
├── example1-simple.html
├── example10-async-post-render.html
├── example11-autoheight.html
├── example12-fillbrowser.html
├── example13-getItem-sorting.html
├── example14-highlighting.html
├── example2-formatters.html
├── example3-editing.html
├── example3a-compound-editors.html
├── example3b-editing-with-undo.html
├── example4-model.html
├── example5-collapsing.html
├── example6-ajax-loading.html
├── example7-events.html
├── example8-alternative-display.html
├── example9-row-reordering.html
├── examples.css
├── index.html
└── slick.compositeeditor.js
├── images
├── actions.gif
├── ajax-loader-small.gif
├── arrow_redo.png
├── arrow_right_peppermint.png
├── arrow_right_spearmint.png
├── arrow_undo.png
├── bullet_blue.png
├── bullet_star.png
├── bullet_toggle_minus.png
├── bullet_toggle_plus.png
├── calendar.gif
├── collapse.gif
├── comment_yellow.gif
├── down.gif
├── drag-handle.png
├── editor-helper-bg.gif
├── expand.gif
├── header-bg.gif
├── header-columns-bg.gif
├── header-columns-over-bg.gif
├── help.png
├── info.gif
├── listview.gif
├── pencil.gif
├── row-over-bg.gif
├── sort-asc.gif
├── sort-asc.png
├── sort-desc.gif
├── sort-desc.png
├── stripes.png
├── tag_red.png
├── tick.png
├── user_identity.gif
└── user_identity_plus.gif
├── lib
├── firebugx.js
├── jquery-1.7.min.js
├── jquery-ui-1.8.16.custom.min.js
├── jquery.event.drag-2.2.js
├── jquery.event.drop-2.2.js
├── jquery.jsonp-2.4.min.js
├── jquery.simulate.js
├── jquery.sparkline.min.js
├── qunit.css
└── qunit.js
├── plugins
├── slick.autotooltips.js
├── slick.cellcopymanager.js
├── slick.cellrangedecorator.js
├── slick.cellrangeselector.js
├── slick.cellselectionmodel.js
├── slick.checkboxselectcolumn.js
├── slick.headerbuttons.css
├── slick.headerbuttons.js
├── slick.headermenu.css
├── slick.headermenu.js
├── slick.rowmovemanager.js
└── slick.rowselectionmodel.js
├── slick-default-theme.css
├── slick.core.js
├── slick.dataview.js
├── slick.editors.js
├── slick.formatters.js
├── slick.grid.css
├── slick.grid.js
├── slick.groupitemmetadataprovider.js
├── slick.remotemodel.js
└── tests
├── dataview
├── dataview.js
└── index.html
├── grid
├── grid.js
└── index.html
├── index.html
├── model benchmarks.html
├── plugins
├── autotooltips.html
└── autotooltips.js
└── scrolling benchmarks.html
/.bowerrc:
--------------------------------------------------------------------------------
1 | {
2 | "directory": "vendor"
3 | }
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | build/*
2 | node_modules/*
3 | .DS_Store
--------------------------------------------------------------------------------
/doc/css/vendor/fractionslider/images/fs.pager.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/doc/css/vendor/fractionslider/images/fs.pager.png
--------------------------------------------------------------------------------
/doc/css/vendor/fractionslider/images/fs.prevnext.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/doc/css/vendor/fractionslider/images/fs.prevnext.png
--------------------------------------------------------------------------------
/doc/css/vendor/fractionslider/images/fs.spinner.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/doc/css/vendor/fractionslider/images/fs.spinner.gif
--------------------------------------------------------------------------------
/doc/fonts/vendor/bootstrap/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/doc/fonts/vendor/bootstrap/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/doc/fonts/vendor/bootstrap/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/doc/fonts/vendor/bootstrap/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/doc/fonts/vendor/bootstrap/glyphicons-halflings-regulard41d.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/doc/fonts/vendor/bootstrap/glyphicons-halflings-regulard41d.eot
--------------------------------------------------------------------------------
/doc/fonts/vendor/glyphicons/glyphicons-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/doc/fonts/vendor/glyphicons/glyphicons-regular.eot
--------------------------------------------------------------------------------
/doc/fonts/vendor/glyphicons/glyphicons-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/doc/fonts/vendor/glyphicons/glyphicons-regular.ttf
--------------------------------------------------------------------------------
/doc/fonts/vendor/glyphicons/glyphicons-regulard41d.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/doc/fonts/vendor/glyphicons/glyphicons-regulard41d.eot
--------------------------------------------------------------------------------
/doc/img/contact/guruguru.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/doc/img/contact/guruguru.jpg
--------------------------------------------------------------------------------
/doc/img/developer/guide/fileorganize.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/doc/img/developer/guide/fileorganize.png
--------------------------------------------------------------------------------
/doc/img/developer/guide/module01.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/doc/img/developer/guide/module01.png
--------------------------------------------------------------------------------
/doc/img/developer/guide/mvc01.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/doc/img/developer/guide/mvc01.png
--------------------------------------------------------------------------------
/doc/img/developer/guide/mvc02.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/doc/img/developer/guide/mvc02.png
--------------------------------------------------------------------------------
/doc/img/developer/guide/mvc03.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/doc/img/developer/guide/mvc03.png
--------------------------------------------------------------------------------
/doc/img/developer/guide/overview01.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/doc/img/developer/guide/overview01.jpg
--------------------------------------------------------------------------------
/doc/img/developer/guide/route01.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/doc/img/developer/guide/route01.png
--------------------------------------------------------------------------------
/doc/img/developer/guide/testing01.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/doc/img/developer/guide/testing01.png
--------------------------------------------------------------------------------
/doc/img/developer/guide/testing02.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/doc/img/developer/guide/testing02.png
--------------------------------------------------------------------------------
/doc/img/developer/guide/testing03.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/doc/img/developer/guide/testing03.png
--------------------------------------------------------------------------------
/doc/img/developer/guide/testing04.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/doc/img/developer/guide/testing04.png
--------------------------------------------------------------------------------
/doc/img/developer/guide/testing05.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/doc/img/developer/guide/testing05.png
--------------------------------------------------------------------------------
/doc/img/developer/guide/testing06.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/doc/img/developer/guide/testing06.png
--------------------------------------------------------------------------------
/doc/img/developer/guide/testing07.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/doc/img/developer/guide/testing07.png
--------------------------------------------------------------------------------
/doc/img/home_dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/doc/img/home_dashboard.png
--------------------------------------------------------------------------------
/doc/img/home_guide.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/doc/img/home_guide.png
--------------------------------------------------------------------------------
/doc/img/home_install.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/doc/img/home_install.png
--------------------------------------------------------------------------------
/doc/img/qna/issues.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/doc/img/qna/issues.png
--------------------------------------------------------------------------------
/doc/img/slides/bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/doc/img/slides/bg.png
--------------------------------------------------------------------------------
/doc/img/slides/css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/doc/img/slides/css.png
--------------------------------------------------------------------------------
/doc/img/slides/html.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/doc/img/slides/html.png
--------------------------------------------------------------------------------
/doc/img/slides/imac.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/doc/img/slides/imac.png
--------------------------------------------------------------------------------
/doc/img/slides/js.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/doc/img/slides/js.png
--------------------------------------------------------------------------------
/doc/img/slides/macbook-air.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/doc/img/slides/macbook-air.png
--------------------------------------------------------------------------------
/doc/img/vendor/glyphicons/glyphicons-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/doc/img/vendor/glyphicons/glyphicons-white.png
--------------------------------------------------------------------------------
/doc/img/vendor/glyphicons/glyphicons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/doc/img/vendor/glyphicons/glyphicons.png
--------------------------------------------------------------------------------
/doc/js/vendor/angular/version.txt:
--------------------------------------------------------------------------------
1 | 1.1.1-af7e0bd0
2 |
--------------------------------------------------------------------------------
/ex/js/mainApp.js:
--------------------------------------------------------------------------------
1 | function AppController($scope){
2 | $scope.a = "1";
3 | $scope.b= "2";
4 | }
--------------------------------------------------------------------------------
/images/grid/collapse.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/images/grid/collapse.gif
--------------------------------------------------------------------------------
/images/grid/expand.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/images/grid/expand.gif
--------------------------------------------------------------------------------
/images/grid/header-columns-bg.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/images/grid/header-columns-bg.gif
--------------------------------------------------------------------------------
/images/grid/header-columns-over-bg.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/images/grid/header-columns-over-bg.gif
--------------------------------------------------------------------------------
/images/grid/tick.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/images/grid/tick.png
--------------------------------------------------------------------------------
/less/eGovNg.less:
--------------------------------------------------------------------------------
1 | @import "grid/grid.less";
--------------------------------------------------------------------------------
/src/grid/libs/jquery.event.drag.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/src/grid/libs/jquery.event.drag.js
--------------------------------------------------------------------------------
/vendor/angular-mocks/README.md:
--------------------------------------------------------------------------------
1 | bower-angular-mocks
2 | ===================
3 |
4 | angular-mocks.js bower repo
--------------------------------------------------------------------------------
/vendor/angularjs-nvd3-directives.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/angularjs-nvd3-directives.zip
--------------------------------------------------------------------------------
/vendor/angularjs-nvd3-directives/.bowerrc:
--------------------------------------------------------------------------------
1 | {
2 | "directory":"build/components"
3 | }
4 |
--------------------------------------------------------------------------------
/vendor/angularjs-nvd3-directives/.gitignore:
--------------------------------------------------------------------------------
1 |
2 | .idea/
3 | node_modules/
4 | bower_components/
5 | build/
6 | build/components/
--------------------------------------------------------------------------------
/vendor/angularjs-nvd3-directives/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.10.x"
4 |
5 | script: "grunt"
--------------------------------------------------------------------------------
/vendor/bootstrap/CNAME:
--------------------------------------------------------------------------------
1 | getbootstrap.com
2 |
--------------------------------------------------------------------------------
/vendor/bootstrap/assets/ico/apple-touch-icon-114-precomposed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/bootstrap/assets/ico/apple-touch-icon-114-precomposed.png
--------------------------------------------------------------------------------
/vendor/bootstrap/assets/ico/apple-touch-icon-144-precomposed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/bootstrap/assets/ico/apple-touch-icon-144-precomposed.png
--------------------------------------------------------------------------------
/vendor/bootstrap/assets/ico/apple-touch-icon-57-precomposed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/bootstrap/assets/ico/apple-touch-icon-57-precomposed.png
--------------------------------------------------------------------------------
/vendor/bootstrap/assets/ico/apple-touch-icon-72-precomposed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/bootstrap/assets/ico/apple-touch-icon-72-precomposed.png
--------------------------------------------------------------------------------
/vendor/bootstrap/assets/ico/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/bootstrap/assets/ico/favicon.png
--------------------------------------------------------------------------------
/vendor/bootstrap/assets/js/raw-files.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/bootstrap/assets/js/raw-files.js
--------------------------------------------------------------------------------
/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/vendor/bootstrap/examples/jumbotron/jumbotron.css:
--------------------------------------------------------------------------------
1 | /* Move down content because we have a fixed navbar that is 50px tall */
2 | body {
3 | padding-top: 50px;
4 | padding-bottom: 20px;
5 | }
6 |
--------------------------------------------------------------------------------
/vendor/bootstrap/examples/navbar-fixed-top/navbar-fixed-top.css:
--------------------------------------------------------------------------------
1 | body {
2 | min-height: 2000px;
3 | padding-top: 70px;
4 | }
5 |
--------------------------------------------------------------------------------
/vendor/bootstrap/examples/navbar-static-top/navbar-static-top.css:
--------------------------------------------------------------------------------
1 | body {
2 | min-height: 2000px;
3 | }
4 |
5 | .navbar-static-top {
6 | margin-bottom: 19px;
7 | }
--------------------------------------------------------------------------------
/vendor/bootstrap/examples/navbar/navbar.css:
--------------------------------------------------------------------------------
1 | body {
2 | padding: 30px;
3 | }
4 |
5 | .navbar {
6 | margin-bottom: 30px;
7 | }
--------------------------------------------------------------------------------
/vendor/bootstrap/examples/offcanvas/offcanvas.js:
--------------------------------------------------------------------------------
1 | $(document).ready(function() {
2 | $('[data-toggle=offcanvas]').click(function() {
3 | $('.row-offcanvas').toggleClass('active');
4 | });
5 | });
--------------------------------------------------------------------------------
/vendor/bootstrap/examples/screenshots/carousel.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/bootstrap/examples/screenshots/carousel.jpg
--------------------------------------------------------------------------------
/vendor/bootstrap/examples/screenshots/grid.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/bootstrap/examples/screenshots/grid.jpg
--------------------------------------------------------------------------------
/vendor/bootstrap/examples/screenshots/jumbotron-narrow.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/bootstrap/examples/screenshots/jumbotron-narrow.jpg
--------------------------------------------------------------------------------
/vendor/bootstrap/examples/screenshots/jumbotron.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/bootstrap/examples/screenshots/jumbotron.jpg
--------------------------------------------------------------------------------
/vendor/bootstrap/examples/screenshots/justified-nav.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/bootstrap/examples/screenshots/justified-nav.jpg
--------------------------------------------------------------------------------
/vendor/bootstrap/examples/screenshots/navbar-fixed.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/bootstrap/examples/screenshots/navbar-fixed.jpg
--------------------------------------------------------------------------------
/vendor/bootstrap/examples/screenshots/navbar-static.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/bootstrap/examples/screenshots/navbar-static.jpg
--------------------------------------------------------------------------------
/vendor/bootstrap/examples/screenshots/navbar.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/bootstrap/examples/screenshots/navbar.jpg
--------------------------------------------------------------------------------
/vendor/bootstrap/examples/screenshots/non-responsive.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/bootstrap/examples/screenshots/non-responsive.jpg
--------------------------------------------------------------------------------
/vendor/bootstrap/examples/screenshots/offcanvas.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/bootstrap/examples/screenshots/offcanvas.jpg
--------------------------------------------------------------------------------
/vendor/bootstrap/examples/screenshots/sign-in.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/bootstrap/examples/screenshots/sign-in.jpg
--------------------------------------------------------------------------------
/vendor/bootstrap/examples/screenshots/starter-template.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/bootstrap/examples/screenshots/starter-template.jpg
--------------------------------------------------------------------------------
/vendor/bootstrap/examples/screenshots/sticky-footer-navbar.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/bootstrap/examples/screenshots/sticky-footer-navbar.jpg
--------------------------------------------------------------------------------
/vendor/bootstrap/examples/screenshots/sticky-footer.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/bootstrap/examples/screenshots/sticky-footer.jpg
--------------------------------------------------------------------------------
/vendor/bootstrap/examples/screenshots/theme.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/bootstrap/examples/screenshots/theme.jpg
--------------------------------------------------------------------------------
/vendor/bootstrap/examples/starter-template/starter-template.css:
--------------------------------------------------------------------------------
1 | body {
2 | padding-top: 50px;
3 | }
4 | .starter-template {
5 | padding: 40px 15px;
6 | text-align: center;
7 | }
8 |
--------------------------------------------------------------------------------
/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/vendor/jquery-ui/.gitignore:
--------------------------------------------------------------------------------
1 | components
2 | composer.lock
3 | vendor
4 |
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/black-tie/images/animated-overlay.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/black-tie/images/animated-overlay.gif
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/black-tie/images/ui-bg_flat_65_ffffff_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/black-tie/images/ui-bg_flat_65_ffffff_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/black-tie/images/ui-bg_glass_40_111111_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/black-tie/images/ui-bg_glass_40_111111_1x400.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/black-tie/images/ui-bg_glass_55_1c1c1c_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/black-tie/images/ui-bg_glass_55_1c1c1c_1x400.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/black-tie/images/ui-bg_inset-hard_45_cd0a0a_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/black-tie/images/ui-bg_inset-hard_45_cd0a0a_1x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/black-tie/images/ui-bg_inset-hard_55_ffeb80_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/black-tie/images/ui-bg_inset-hard_55_ffeb80_1x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/black-tie/images/ui-icons_222222_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/black-tie/images/ui-icons_222222_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/black-tie/images/ui-icons_4ca300_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/black-tie/images/ui-icons_4ca300_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/black-tie/images/ui-icons_bbbbbb_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/black-tie/images/ui-icons_bbbbbb_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/black-tie/images/ui-icons_ededed_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/black-tie/images/ui-icons_ededed_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/black-tie/images/ui-icons_ffcf29_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/black-tie/images/ui-icons_ffcf29_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/black-tie/images/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/black-tie/images/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/blitzer/images/animated-overlay.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/blitzer/images/animated-overlay.gif
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/blitzer/images/ui-bg_dots-small_65_a6a6a6_2x2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/blitzer/images/ui-bg_dots-small_65_a6a6a6_2x2.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/blitzer/images/ui-bg_flat_0_333333_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/blitzer/images/ui-bg_flat_0_333333_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/blitzer/images/ui-bg_flat_65_ffffff_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/blitzer/images/ui-bg_flat_65_ffffff_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/blitzer/images/ui-bg_flat_75_ffffff_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/blitzer/images/ui-bg_flat_75_ffffff_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/blitzer/images/ui-bg_glass_55_fbf8ee_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/blitzer/images/ui-bg_glass_55_fbf8ee_1x400.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/blitzer/images/ui-icons_004276_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/blitzer/images/ui-icons_004276_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/blitzer/images/ui-icons_cc0000_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/blitzer/images/ui-icons_cc0000_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/blitzer/images/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/blitzer/images/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/cupertino/images/animated-overlay.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/cupertino/images/animated-overlay.gif
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/cupertino/images/ui-bg_flat_15_cd0a0a_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/cupertino/images/ui-bg_flat_15_cd0a0a_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/cupertino/images/ui-bg_glass_100_e4f1fb_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/cupertino/images/ui-bg_glass_100_e4f1fb_1x400.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/cupertino/images/ui-bg_glass_50_3baae3_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/cupertino/images/ui-bg_glass_50_3baae3_1x400.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/cupertino/images/ui-bg_glass_80_d7ebf9_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/cupertino/images/ui-bg_glass_80_d7ebf9_1x400.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/cupertino/images/ui-icons_2694e8_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/cupertino/images/ui-icons_2694e8_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/cupertino/images/ui-icons_2e83ff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/cupertino/images/ui-icons_2e83ff_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/cupertino/images/ui-icons_3d80b3_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/cupertino/images/ui-icons_3d80b3_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/cupertino/images/ui-icons_72a7cf_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/cupertino/images/ui-icons_72a7cf_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/cupertino/images/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/cupertino/images/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/dark-hive/images/animated-overlay.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/dark-hive/images/animated-overlay.gif
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/dark-hive/images/ui-bg_flat_30_cccccc_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/dark-hive/images/ui-bg_flat_30_cccccc_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/dark-hive/images/ui-bg_flat_50_5c5c5c_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/dark-hive/images/ui-bg_flat_50_5c5c5c_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/dark-hive/images/ui-bg_loop_25_000000_21x21.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/dark-hive/images/ui-bg_loop_25_000000_21x21.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/dark-hive/images/ui-icons_222222_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/dark-hive/images/ui-icons_222222_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/dark-hive/images/ui-icons_4b8e0b_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/dark-hive/images/ui-icons_4b8e0b_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/dark-hive/images/ui-icons_a83300_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/dark-hive/images/ui-icons_a83300_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/dark-hive/images/ui-icons_cccccc_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/dark-hive/images/ui-icons_cccccc_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/dark-hive/images/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/dark-hive/images/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/dot-luv/images/animated-overlay.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/dot-luv/images/animated-overlay.gif
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/dot-luv/images/ui-bg_dots-medium_30_0b58a2_4x4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/dot-luv/images/ui-bg_dots-medium_30_0b58a2_4x4.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/dot-luv/images/ui-bg_dots-small_20_333333_2x2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/dot-luv/images/ui-bg_dots-small_20_333333_2x2.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/dot-luv/images/ui-bg_dots-small_30_a32d00_2x2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/dot-luv/images/ui-bg_dots-small_30_a32d00_2x2.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/dot-luv/images/ui-bg_dots-small_40_00498f_2x2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/dot-luv/images/ui-bg_dots-small_40_00498f_2x2.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/dot-luv/images/ui-bg_flat_0_aaaaaa_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/dot-luv/images/ui-bg_flat_0_aaaaaa_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/dot-luv/images/ui-bg_flat_40_292929_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/dot-luv/images/ui-bg_flat_40_292929_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/dot-luv/images/ui-bg_gloss-wave_20_111111_500x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/dot-luv/images/ui-bg_gloss-wave_20_111111_500x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/dot-luv/images/ui-icons_00498f_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/dot-luv/images/ui-icons_00498f_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/dot-luv/images/ui-icons_98d2fb_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/dot-luv/images/ui-icons_98d2fb_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/dot-luv/images/ui-icons_9ccdfc_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/dot-luv/images/ui-icons_9ccdfc_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/dot-luv/images/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/dot-luv/images/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/eggplant/images/animated-overlay.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/eggplant/images/animated-overlay.gif
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/eggplant/images/ui-bg_flat_0_aaaaaa_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/eggplant/images/ui-bg_flat_0_aaaaaa_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/eggplant/images/ui-bg_flat_0_eeeeee_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/eggplant/images/ui-bg_flat_0_eeeeee_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/eggplant/images/ui-bg_flat_55_994d53_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/eggplant/images/ui-bg_flat_55_994d53_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/eggplant/images/ui-bg_flat_55_fafafa_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/eggplant/images/ui-bg_flat_55_fafafa_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/eggplant/images/ui-bg_gloss-wave_30_3d3644_500x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/eggplant/images/ui-bg_gloss-wave_30_3d3644_500x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/eggplant/images/ui-icons_454545_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/eggplant/images/ui-icons_454545_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/eggplant/images/ui-icons_734d99_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/eggplant/images/ui-icons_734d99_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/eggplant/images/ui-icons_8d78a5_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/eggplant/images/ui-icons_8d78a5_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/eggplant/images/ui-icons_a8a3ae_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/eggplant/images/ui-icons_a8a3ae_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/eggplant/images/ui-icons_ebccce_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/eggplant/images/ui-icons_ebccce_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/eggplant/images/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/eggplant/images/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/excite-bike/images/animated-overlay.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/excite-bike/images/animated-overlay.gif
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/excite-bike/images/ui-bg_flat_0_e69700_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/excite-bike/images/ui-bg_flat_0_e69700_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/excite-bike/images/ui-bg_flat_0_e6b900_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/excite-bike/images/ui-bg_flat_0_e6b900_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/excite-bike/images/ui-icons_0a82eb_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/excite-bike/images/ui-icons_0a82eb_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/excite-bike/images/ui-icons_0b54d5_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/excite-bike/images/ui-icons_0b54d5_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/excite-bike/images/ui-icons_5fa5e3_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/excite-bike/images/ui-icons_5fa5e3_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/excite-bike/images/ui-icons_fcdd4a_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/excite-bike/images/ui-icons_fcdd4a_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/excite-bike/images/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/excite-bike/images/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/flick/images/animated-overlay.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/flick/images/animated-overlay.gif
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/flick/images/ui-bg_flat_0_aaaaaa_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/flick/images/ui-bg_flat_0_aaaaaa_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/flick/images/ui-bg_flat_0_eeeeee_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/flick/images/ui-bg_flat_0_eeeeee_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/flick/images/ui-bg_flat_55_ffffff_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/flick/images/ui-bg_flat_55_ffffff_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/flick/images/ui-bg_flat_75_ffffff_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/flick/images/ui-bg_flat_75_ffffff_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/flick/images/ui-bg_glass_65_ffffff_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/flick/images/ui-bg_glass_65_ffffff_1x400.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/flick/images/ui-bg_highlight-soft_100_f6f6f6_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/flick/images/ui-bg_highlight-soft_100_f6f6f6_1x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/flick/images/ui-bg_highlight-soft_25_0073ea_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/flick/images/ui-bg_highlight-soft_25_0073ea_1x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/flick/images/ui-bg_highlight-soft_50_dddddd_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/flick/images/ui-bg_highlight-soft_50_dddddd_1x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/flick/images/ui-icons_0073ea_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/flick/images/ui-icons_0073ea_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/flick/images/ui-icons_454545_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/flick/images/ui-icons_454545_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/flick/images/ui-icons_666666_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/flick/images/ui-icons_666666_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/flick/images/ui-icons_ff0084_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/flick/images/ui-icons_ff0084_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/flick/images/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/flick/images/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/hot-sneaks/images/animated-overlay.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/hot-sneaks/images/animated-overlay.gif
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/hot-sneaks/images/ui-bg_dots-medium_80_ffff38_4x4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/hot-sneaks/images/ui-bg_dots-medium_80_ffff38_4x4.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/hot-sneaks/images/ui-bg_dots-small_35_35414f_2x2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/hot-sneaks/images/ui-bg_dots-small_35_35414f_2x2.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/hot-sneaks/images/ui-bg_flat_75_ba9217_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/hot-sneaks/images/ui-bg_flat_75_ba9217_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/hot-sneaks/images/ui-bg_flat_75_ffffff_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/hot-sneaks/images/ui-bg_flat_75_ffffff_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/hot-sneaks/images/ui-icons_454545_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/hot-sneaks/images/ui-icons_454545_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/hot-sneaks/images/ui-icons_88a206_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/hot-sneaks/images/ui-icons_88a206_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/hot-sneaks/images/ui-icons_c02669_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/hot-sneaks/images/ui-icons_c02669_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/hot-sneaks/images/ui-icons_e1e463_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/hot-sneaks/images/ui-icons_e1e463_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/hot-sneaks/images/ui-icons_ffeb33_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/hot-sneaks/images/ui-icons_ffeb33_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/hot-sneaks/images/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/hot-sneaks/images/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/humanity/images/animated-overlay.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/humanity/images/animated-overlay.gif
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/humanity/images/ui-bg_flat_75_aaaaaa_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/humanity/images/ui-bg_flat_75_aaaaaa_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/humanity/images/ui-bg_glass_100_f5f0e5_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/humanity/images/ui-bg_glass_100_f5f0e5_1x400.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/humanity/images/ui-bg_glass_25_cb842e_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/humanity/images/ui-bg_glass_25_cb842e_1x400.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/humanity/images/ui-bg_glass_70_ede4d4_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/humanity/images/ui-bg_glass_70_ede4d4_1x400.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/humanity/images/ui-bg_inset-soft_100_f4f0ec_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/humanity/images/ui-bg_inset-soft_100_f4f0ec_1x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/humanity/images/ui-icons_c47a23_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/humanity/images/ui-icons_c47a23_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/humanity/images/ui-icons_cb672b_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/humanity/images/ui-icons_cb672b_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/humanity/images/ui-icons_f08000_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/humanity/images/ui-icons_f08000_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/humanity/images/ui-icons_f35f07_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/humanity/images/ui-icons_f35f07_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/humanity/images/ui-icons_ff7519_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/humanity/images/ui-icons_ff7519_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/humanity/images/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/humanity/images/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/le-frog/images/animated-overlay.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/le-frog/images/animated-overlay.gif
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/le-frog/images/ui-bg_glass_55_fbf5d0_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/le-frog/images/ui-bg_glass_55_fbf5d0_1x400.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/le-frog/images/ui-bg_inset-soft_10_285c00_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/le-frog/images/ui-bg_inset-soft_10_285c00_1x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/le-frog/images/ui-icons_4eb305_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/le-frog/images/ui-icons_4eb305_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/le-frog/images/ui-icons_72b42d_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/le-frog/images/ui-icons_72b42d_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/le-frog/images/ui-icons_cd0a0a_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/le-frog/images/ui-icons_cd0a0a_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/le-frog/images/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/le-frog/images/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/mint-choc/images/animated-overlay.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/mint-choc/images/animated-overlay.gif
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/mint-choc/images/ui-bg_flat_0_aaaaaa_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/mint-choc/images/ui-bg_flat_0_aaaaaa_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/mint-choc/images/ui-bg_glass_15_5f391b_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/mint-choc/images/ui-bg_glass_15_5f391b_1x400.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/mint-choc/images/ui-bg_inset-soft_10_201913_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/mint-choc/images/ui-bg_inset-soft_10_201913_1x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/mint-choc/images/ui-icons_222222_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/mint-choc/images/ui-icons_222222_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/mint-choc/images/ui-icons_9bcc60_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/mint-choc/images/ui-icons_9bcc60_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/mint-choc/images/ui-icons_add978_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/mint-choc/images/ui-icons_add978_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/mint-choc/images/ui-icons_e3ddc9_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/mint-choc/images/ui-icons_e3ddc9_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/mint-choc/images/ui-icons_f1fd86_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/mint-choc/images/ui-icons_f1fd86_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/mint-choc/images/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/mint-choc/images/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/overcast/images/animated-overlay.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/overcast/images/animated-overlay.gif
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/overcast/images/ui-bg_flat_0_aaaaaa_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/overcast/images/ui-bg_flat_0_aaaaaa_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/overcast/images/ui-bg_flat_0_eeeeee_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/overcast/images/ui-bg_flat_0_eeeeee_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/overcast/images/ui-bg_flat_55_c0402a_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/overcast/images/ui-bg_flat_55_c0402a_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/overcast/images/ui-bg_flat_55_eeeeee_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/overcast/images/ui-bg_flat_55_eeeeee_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/overcast/images/ui-bg_glass_100_f8f8f8_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/overcast/images/ui-bg_glass_100_f8f8f8_1x400.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/overcast/images/ui-bg_glass_35_dddddd_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/overcast/images/ui-bg_glass_35_dddddd_1x400.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/overcast/images/ui-bg_glass_60_eeeeee_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/overcast/images/ui-bg_glass_60_eeeeee_1x400.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/overcast/images/ui-bg_inset-hard_75_999999_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/overcast/images/ui-bg_inset-hard_75_999999_1x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/overcast/images/ui-bg_inset-soft_50_c9c9c9_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/overcast/images/ui-bg_inset-soft_50_c9c9c9_1x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/overcast/images/ui-icons_3383bb_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/overcast/images/ui-icons_3383bb_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/overcast/images/ui-icons_454545_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/overcast/images/ui-icons_454545_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/overcast/images/ui-icons_70b2e1_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/overcast/images/ui-icons_70b2e1_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/overcast/images/ui-icons_999999_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/overcast/images/ui-icons_999999_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/overcast/images/ui-icons_fbc856_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/overcast/images/ui-icons_fbc856_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/pepper-grinder/images/animated-overlay.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/pepper-grinder/images/animated-overlay.gif
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/pepper-grinder/images/ui-icons_222222_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/pepper-grinder/images/ui-icons_222222_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/pepper-grinder/images/ui-icons_3572ac_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/pepper-grinder/images/ui-icons_3572ac_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/pepper-grinder/images/ui-icons_8c291d_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/pepper-grinder/images/ui-icons_8c291d_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/pepper-grinder/images/ui-icons_b83400_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/pepper-grinder/images/ui-icons_b83400_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/pepper-grinder/images/ui-icons_fbdb93_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/pepper-grinder/images/ui-icons_fbdb93_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/pepper-grinder/images/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/pepper-grinder/images/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/redmond/images/animated-overlay.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/redmond/images/animated-overlay.gif
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/redmond/images/ui-bg_flat_55_fbec88_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/redmond/images/ui-bg_flat_55_fbec88_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/redmond/images/ui-bg_glass_85_dfeffc_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/redmond/images/ui-bg_glass_85_dfeffc_1x400.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/redmond/images/ui-bg_glass_95_fef1ec_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/redmond/images/ui-bg_glass_95_fef1ec_1x400.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/redmond/images/ui-icons_217bc0_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/redmond/images/ui-icons_217bc0_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/redmond/images/ui-icons_2e83ff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/redmond/images/ui-icons_2e83ff_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/redmond/images/ui-icons_469bdd_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/redmond/images/ui-icons_469bdd_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/redmond/images/ui-icons_6da8d5_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/redmond/images/ui-icons_6da8d5_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/redmond/images/ui-icons_cd0a0a_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/redmond/images/ui-icons_cd0a0a_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/redmond/images/ui-icons_d8e7f3_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/redmond/images/ui-icons_d8e7f3_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/redmond/images/ui-icons_f9bd01_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/redmond/images/ui-icons_f9bd01_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/smoothness/images/animated-overlay.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/smoothness/images/animated-overlay.gif
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/smoothness/images/ui-bg_flat_75_ffffff_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/smoothness/images/ui-bg_flat_75_ffffff_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/smoothness/images/ui-icons_222222_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/smoothness/images/ui-icons_222222_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/smoothness/images/ui-icons_2e83ff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/smoothness/images/ui-icons_2e83ff_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/smoothness/images/ui-icons_454545_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/smoothness/images/ui-icons_454545_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/smoothness/images/ui-icons_888888_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/smoothness/images/ui-icons_888888_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/smoothness/images/ui-icons_cd0a0a_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/smoothness/images/ui-icons_cd0a0a_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/south-street/images/animated-overlay.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/south-street/images/animated-overlay.gif
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/south-street/images/ui-bg_glass_55_fcf0ba_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/south-street/images/ui-bg_glass_55_fcf0ba_1x400.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/south-street/images/ui-icons_808080_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/south-street/images/ui-icons_808080_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/south-street/images/ui-icons_847e71_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/south-street/images/ui-icons_847e71_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/south-street/images/ui-icons_8DC262_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/south-street/images/ui-icons_8DC262_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/south-street/images/ui-icons_cd0a0a_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/south-street/images/ui-icons_cd0a0a_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/south-street/images/ui-icons_eeeeee_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/south-street/images/ui-icons_eeeeee_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/south-street/images/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/south-street/images/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/start/images/animated-overlay.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/start/images/animated-overlay.gif
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/start/images/ui-bg_flat_55_999999_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/start/images/ui-bg_flat_55_999999_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/start/images/ui-bg_flat_75_aaaaaa_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/start/images/ui-bg_flat_75_aaaaaa_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/start/images/ui-bg_glass_45_0078ae_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/start/images/ui-bg_glass_45_0078ae_1x400.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/start/images/ui-bg_glass_55_f8da4e_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/start/images/ui-bg_glass_55_f8da4e_1x400.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/start/images/ui-bg_glass_75_79c9ec_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/start/images/ui-bg_glass_75_79c9ec_1x400.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/start/images/ui-bg_gloss-wave_45_e14f1c_500x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/start/images/ui-bg_gloss-wave_45_e14f1c_500x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/start/images/ui-bg_gloss-wave_50_6eac2c_500x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/start/images/ui-bg_gloss-wave_50_6eac2c_500x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/start/images/ui-bg_gloss-wave_75_2191c0_500x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/start/images/ui-bg_gloss-wave_75_2191c0_500x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/start/images/ui-bg_inset-hard_100_fcfdfd_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/start/images/ui-bg_inset-hard_100_fcfdfd_1x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/start/images/ui-icons_0078ae_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/start/images/ui-icons_0078ae_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/start/images/ui-icons_056b93_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/start/images/ui-icons_056b93_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/start/images/ui-icons_d8e7f3_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/start/images/ui-icons_d8e7f3_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/start/images/ui-icons_e0fdff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/start/images/ui-icons_e0fdff_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/start/images/ui-icons_f5e175_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/start/images/ui-icons_f5e175_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/start/images/ui-icons_f7a50d_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/start/images/ui-icons_f7a50d_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/start/images/ui-icons_fcd113_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/start/images/ui-icons_fcd113_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/sunny/images/animated-overlay.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/sunny/images/animated-overlay.gif
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/sunny/images/ui-bg_flat_30_cccccc_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/sunny/images/ui-bg_flat_30_cccccc_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/sunny/images/ui-bg_flat_50_5c5c5c_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/sunny/images/ui-bg_flat_50_5c5c5c_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_45_817865_500x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_45_817865_500x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_60_fece2f_500x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_60_fece2f_500x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_70_ffdd57_500x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_70_ffdd57_500x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_90_fff9e5_500x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_90_fff9e5_500x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/sunny/images/ui-bg_inset-soft_30_ffffff_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/sunny/images/ui-bg_inset-soft_30_ffffff_1x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/sunny/images/ui-icons_3d3d3d_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/sunny/images/ui-icons_3d3d3d_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/sunny/images/ui-icons_bd7b00_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/sunny/images/ui-icons_bd7b00_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/sunny/images/ui-icons_d19405_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/sunny/images/ui-icons_d19405_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/sunny/images/ui-icons_eb990f_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/sunny/images/ui-icons_eb990f_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/sunny/images/ui-icons_ed9f26_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/sunny/images/ui-icons_ed9f26_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/sunny/images/ui-icons_fadc7a_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/sunny/images/ui-icons_fadc7a_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/sunny/images/ui-icons_ffe180_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/sunny/images/ui-icons_ffe180_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/swanky-purse/images/animated-overlay.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/swanky-purse/images/animated-overlay.gif
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_8_261803_10x8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_8_261803_10x8.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_8_443113_10x8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_8_443113_10x8.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/swanky-purse/images/ui-bg_flat_75_ddd4b0_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/swanky-purse/images/ui-bg_flat_75_ddd4b0_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/swanky-purse/images/ui-icons_070603_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/swanky-purse/images/ui-icons_070603_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/swanky-purse/images/ui-icons_e8e2b5_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/swanky-purse/images/ui-icons_e8e2b5_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/swanky-purse/images/ui-icons_e9cd86_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/swanky-purse/images/ui-icons_e9cd86_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/swanky-purse/images/ui-icons_efec9f_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/swanky-purse/images/ui-icons_efec9f_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/swanky-purse/images/ui-icons_f2ec64_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/swanky-purse/images/ui-icons_f2ec64_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/swanky-purse/images/ui-icons_f9f2bd_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/swanky-purse/images/ui-icons_f9f2bd_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/swanky-purse/images/ui-icons_ff7519_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/swanky-purse/images/ui-icons_ff7519_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/trontastic/images/animated-overlay.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/trontastic/images/animated-overlay.gif
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/trontastic/images/ui-bg_flat_0_303030_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/trontastic/images/ui-bg_flat_0_303030_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/trontastic/images/ui-bg_flat_0_4c4c4c_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/trontastic/images/ui-bg_flat_0_4c4c4c_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/trontastic/images/ui-bg_glass_40_0a0a0a_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/trontastic/images/ui-bg_glass_40_0a0a0a_1x400.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/trontastic/images/ui-bg_glass_55_f1fbe5_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/trontastic/images/ui-bg_glass_55_f1fbe5_1x400.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/trontastic/images/ui-bg_glass_60_000000_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/trontastic/images/ui-bg_glass_60_000000_1x400.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/trontastic/images/ui-icons_000000_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/trontastic/images/ui-icons_000000_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/trontastic/images/ui-icons_1f1f1f_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/trontastic/images/ui-icons_1f1f1f_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/trontastic/images/ui-icons_9fda58_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/trontastic/images/ui-icons_9fda58_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/trontastic/images/ui-icons_b8ec79_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/trontastic/images/ui-icons_b8ec79_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/trontastic/images/ui-icons_cd0a0a_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/trontastic/images/ui-icons_cd0a0a_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/trontastic/images/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/trontastic/images/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/ui-darkness/images/animated-overlay.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/ui-darkness/images/animated-overlay.gif
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/ui-darkness/images/ui-bg_flat_30_cccccc_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/ui-darkness/images/ui-bg_flat_30_cccccc_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/ui-darkness/images/ui-bg_flat_50_5c5c5c_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/ui-darkness/images/ui-bg_flat_50_5c5c5c_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/ui-darkness/images/ui-bg_glass_20_555555_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/ui-darkness/images/ui-bg_glass_20_555555_1x400.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/ui-darkness/images/ui-bg_glass_40_0078a3_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/ui-darkness/images/ui-bg_glass_40_0078a3_1x400.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/ui-darkness/images/ui-bg_glass_40_ffc73d_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/ui-darkness/images/ui-bg_glass_40_ffc73d_1x400.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/ui-darkness/images/ui-icons_222222_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/ui-darkness/images/ui-icons_222222_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/ui-darkness/images/ui-icons_4b8e0b_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/ui-darkness/images/ui-icons_4b8e0b_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/ui-darkness/images/ui-icons_a83300_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/ui-darkness/images/ui-icons_a83300_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/ui-darkness/images/ui-icons_cccccc_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/ui-darkness/images/ui-icons_cccccc_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/ui-darkness/images/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/ui-darkness/images/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/ui-lightness/images/animated-overlay.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/ui-lightness/images/animated-overlay.gif
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/ui-lightness/images/ui-bg_flat_10_000000_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/ui-lightness/images/ui-bg_flat_10_000000_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/ui-lightness/images/ui-icons_222222_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/ui-lightness/images/ui-icons_222222_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/ui-lightness/images/ui-icons_228ef1_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/ui-lightness/images/ui-icons_228ef1_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/ui-lightness/images/ui-icons_ef8c08_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/ui-lightness/images/ui-icons_ef8c08_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/ui-lightness/images/ui-icons_ffd27a_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/ui-lightness/images/ui-icons_ffd27a_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/ui-lightness/images/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/ui-lightness/images/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/vader/images/animated-overlay.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/vader/images/animated-overlay.gif
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/vader/images/ui-bg_flat_0_aaaaaa_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/vader/images/ui-bg_flat_0_aaaaaa_40x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/vader/images/ui-bg_glass_95_fef1ec_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/vader/images/ui-bg_glass_95_fef1ec_1x400.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/vader/images/ui-bg_gloss-wave_16_121212_500x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/vader/images/ui-bg_gloss-wave_16_121212_500x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/vader/images/ui-bg_inset-soft_15_121212_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/vader/images/ui-bg_inset-soft_15_121212_1x100.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/vader/images/ui-icons_666666_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/vader/images/ui-icons_666666_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/vader/images/ui-icons_aaaaaa_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/vader/images/ui-icons_aaaaaa_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/vader/images/ui-icons_bbbbbb_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/vader/images/ui-icons_bbbbbb_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/vader/images/ui-icons_c98000_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/vader/images/ui-icons_c98000_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/vader/images/ui-icons_cccccc_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/vader/images/ui-icons_cccccc_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/vader/images/ui-icons_cd0a0a_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/vader/images/ui-icons_cd0a0a_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery-ui/themes/vader/images/ui-icons_f29a00_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery-ui/themes/vader/images/ui-icons_f29a00_256x240.png
--------------------------------------------------------------------------------
/vendor/jquery.easy-pie-chart/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
--------------------------------------------------------------------------------
/vendor/jquery.threedubmedia/event.drag/jquery.event.drag.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery.threedubmedia/event.drag/jquery.event.drag.js
--------------------------------------------------------------------------------
/vendor/jquery.threedubmedia/event.linger/jquery.event.linger.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery.threedubmedia/event.linger/jquery.event.linger.js
--------------------------------------------------------------------------------
/vendor/jquery.threedubmedia/jquery/qunit.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery.threedubmedia/jquery/qunit.js
--------------------------------------------------------------------------------
/vendor/jquery/.gitattributes:
--------------------------------------------------------------------------------
1 | * eol=lf
2 | *.jar binary
3 |
--------------------------------------------------------------------------------
/vendor/jquery/.gitmodules:
--------------------------------------------------------------------------------
1 | [submodule "src/sizzle"]
2 | path = src/sizzle
3 | url = git://github.com/jquery/sizzle.git
4 | [submodule "test/qunit"]
5 | path = test/qunit
6 | url = git://github.com/jquery/qunit.git
7 |
--------------------------------------------------------------------------------
/vendor/jquery/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "jQuery",
3 | "version": "2.0.3",
4 | "repository": {
5 | "type": "git",
6 | "url": "git://github.com/jquery/jquery.git"
7 | }
8 | }
--------------------------------------------------------------------------------
/vendor/jquery/src/outro.js:
--------------------------------------------------------------------------------
1 |
2 | })( window );
3 |
--------------------------------------------------------------------------------
/vendor/jquery/test/.jshintignore:
--------------------------------------------------------------------------------
1 | qunit/
2 | data/badjson.js
3 | data/jquery-1.9.1.ajax_xhr.min.js
4 |
--------------------------------------------------------------------------------
/vendor/jquery/test/data/1x1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eGovAngularJS/eGovNg/6d1686ff8f1eee22ca71e01f475167dff23c9d4c/vendor/jquery/test/data/1x1.jpg
--------------------------------------------------------------------------------
/vendor/jquery/test/data/atom+xml.php:
--------------------------------------------------------------------------------
1 |
2 |
I am in a widget